File: //var/backups/mysql/dragonhs
/*M!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.5.29-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: dragonhs
-- ------------------------------------------------------
-- Server version 10.5.29-MariaDB-0+deb11u1
/*!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 `wp_actionscheduler_actions`
--
DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=79 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_actions`
--
LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_claims`
--
DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=307695 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_claims`
--
LOCK TABLES `wp_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_claims` VALUES (79948,'2022-08-05 13:41:01');
/*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_groups`
--
DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_groups`
--
LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'woocommerce-db-updates');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_logs`
--
DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_logs`
--
LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) 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 `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext 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=1756 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2020-10-16 12:49:59','2020-10-16 12:49:59','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0),(2,1,'erotik','rchrisfee1@earthlink.net','https://filmkovasi.org/','209.127.164.113','2021-02-16 11:11:16','2021-02-16 11:11:16','Your style is really unique compared to other people I have read stuff from. Thanks for posting when you have the opportunity, Guess I will just bookmark this site. Jada Laird Fablan',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(3,1,'erotik','shopgirlmls@gmail.com','https://filmkovasi.org/','45.142.28.79','2021-02-16 12:29:21','2021-02-16 12:29:21','You are my function models. Many thanks for that post Arabella Garey Sanchez',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(4,1,'erotik','pixiedusty1967@yahoo.com','https://filmkovasi.org/','45.137.40.28','2021-02-16 13:50:21','2021-02-16 13:50:21','Why people still use to read news papers when in this technological globe everything is accessible on web? Anselma Armstrong Stafford',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(5,1,'720p','pattychavezbass@yahoo.com','https://filmkovasi.org/','45.87.248.39','2021-02-16 15:36:27','2021-02-16 15:36:27','I used to love to read before having kids but lost my way with it for a while. I never seem to get around to taking care of myself. These tips are great for me as well. Grandmoms sometimes do almost as much as moms with less agility and energy. Davita Nils Bottali',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(6,1,'bursa escort','steveh142@yandex.com','https://filmmakinesi.pw/','185.250.39.154','2021-03-01 22:39:01','2021-03-01 22:39:01','No matter if some one searches for his necessary thing, therefore he/she needs to be available that in detail, so that thing is maintained over here. Ginnie Nate Alsworth',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(7,1,'erotik','nanitad@yandex.com','https://filmkovasi.org/','45.154.244.70','2021-03-02 04:36:23','2021-03-02 04:36:23','Excellent post. I will be dealing with a few of these issues as well.. Prudy Sanson Desirae',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(8,1,'erotik','spidermntheonly_1@yahoo.com','https://filmkovasi.org/','23.250.101.235','2021-03-02 07:25:34','2021-03-02 07:25:34','Ahaa, its pleasant conversation concerning this piece of writing at this place at this weblog, I have read all that, so at this time me also commenting here. Carol Herbert Honora',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(9,1,'teen orgies','rmontana3@yandex.com','https://filmmakinesi.pw/','45.128.246.30','2021-03-05 05:23:34','2021-03-05 05:23:34','I was wondering if you ever considered changing the structure of your site? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot of text for only having one or 2 pictures. Maybe you could space it out better?| Joly Slade Ives',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(10,1,'horny coeds','scullmac@yandex.com','https://filmmakinesi.pw/','45.135.36.119','2021-03-05 08:15:07','2021-03-05 08:15:07','I cannot thank you enough for the post. Thanks Again. Really Cool. Inessa Dougie Narcis',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(11,163,'Crypto','69281@gmail.com','https://bit.ly/3iCfby0','176.223.138.125','2022-03-30 23:10:30','2022-03-30 23:10:30','$300-$500 Daily With Crypto - https://bit.ly/37Py4LO',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(12,1,'film izle','alvaropatricio.lopez@gmail.com','https://filmizlew.org/','51.159.37.34','2022-04-06 16:10:32','2022-04-06 16:10:32','Wow, this post is good, my younger sister is analyzing these kinds of things, thus I am going to convey her. Marlin Luu',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(13,1,'film izle','claumasuero@hotmail.com','https://filmizlew.org/','51.159.37.145','2022-04-12 10:14:53','2022-04-12 10:14:53','Excellent article! We will be linking to this particularly great post on our site. Keep up the good writing. Sebastian Birnbaum',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(14,1,'film izle','lolucho@gmail.com','https://filmizlew.org/','51.159.37.33','2022-04-12 12:34:15','2022-04-12 12:34:15','I was able to find good advice from your blog articles. Benjamin Azzarito',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(15,1,'film izle','kevina-2@hotmail.com','https://filmizlew.org/','51.159.36.102','2022-04-12 16:14:35','2022-04-12 16:14:35','Well I sincerely enjoyed studying it. This post offered by you is very effective for accurate planning. Clinton Margolies',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(16,1,'film izle','gcuraqueo@gmail.com','https://filmizlew.org/','51.159.36.139','2022-04-12 18:28:55','2022-04-12 18:28:55','We stumbled over here different page and thought I might check things out. Cruz Fairfax',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(17,1,'film izle','carolinaruizs@hotmail.com','https://filmizlew.org/','51.159.37.236','2022-04-14 19:56:20','2022-04-14 19:56:20','I think the admin of this site is in fact working hard for his web page, for the reason that here every stuff is quality based data. Boris Guinasso',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(18,1,'film izle','janilokom@hotmail.com','https://filmizlew.org/','51.15.26.124','2022-04-14 22:09:54','2022-04-14 22:09:54','Pretty! This has been an extremely wonderful article. Thanks for providing this information. Wilfred Justian',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(19,1,'bets10 giris','calcainoc@gmail.com','https://filmizlew.org/','51.159.37.26','2022-04-25 11:10:50','2022-04-25 11:10:50','Way cool! Some very valid points! I appreciate you writing this post and the rest of the website is very good. Zane Pounders',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(20,1,'porno','vecuvi@hotmail.com','https://filmizlew.org/','51.159.37.51','2022-04-25 13:20:18','2022-04-25 13:20:18','Simply wanna state that this is extremely helpful, Thanks for taking your time to write this. Moses Mothershed',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(21,1,'online bahis casino','wacolawiner@hotmail.es','https://www.720p-fullizleme.com/','51.159.37.33','2022-04-27 06:07:35','2022-04-27 06:07:35','Right here is the perfect webpage for anyone who wants to understand this topic. Kent Liebler',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(22,1,'bahis oyna','ale119valenzuela@gmail.com','https://www.720p-fullizleme.com/','51.159.37.117','2022-04-27 10:17:03','2022-04-27 10:17:03','Thank you for your article post. Thanks Again. Awesome. Felix Bissol',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(23,1,'turkce dublaj','paulainfante@hotmail.com','https://www.hazirfilm.com/','51.159.37.33','2022-05-26 20:52:42','2022-05-26 20:52:42','I admire your piece of work, thanks for all the interesting content . Cyril Skeets',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(24,1,'bahis oyna','rodrigocv@gmail.com','https://www.fullhdfilmizlesene.pw/yil/2021-film-izle','51.159.37.145','2022-05-27 21:18:20','2022-05-27 21:18:20','Keep your posture low and make sure your shoulders are aligned over your feet. Cyril Klimaszewski',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(25,1,'sikis izle','juanbarra@yahoo.es','https://www.fullhdfilmizlesene.pw/yil/2021-film-izle','51.159.37.202','2022-05-28 01:36:00','2022-05-28 01:36:00','What a joy to find someone else who thinks this way. Cole Northcott',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(26,1,'online bahis casino','piliaravi3@hotmail.com','https://www.hazirfilm.com/','51.159.36.101','2022-05-30 09:24:33','2022-05-30 09:24:33','I really like and appreciate your post. Much thanks again. Really Cool. Jc Diomede',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(27,1,'turkce dublaj film izle','mixu_angelito@hotmail.com','https://www.fullhdfilmizlesene.pw/filmizle/turkce-dublaj-hd-film-izle','51.159.36.122','2022-06-09 00:42:48','2022-06-09 00:42:48','I think this site holds some very excellent information for everyone : D. Marc Rauscher',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(28,1,'türkçe dublaj film izle','lucastapia.lt34@gmail.com','https://www.fullhdfilmizlesene.pw/filmizle/turkce-dublaj-hd-film-izle','51.159.36.139','2022-06-09 04:44:20','2022-06-09 04:44:20','Six weeks is usually the recovery completion time. Lesley Breth',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(29,1,'bets10 giris','pfuenzalidasilva@gmail.com','https://filmizle2022.com/','51.159.36.122','2022-06-22 21:54:43','2022-06-22 21:54:43','I blog often and I genuinely appreciate your information. Your article has really peaked my interest. Anibal Bakker',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(30,1,'bahis oyna','irisaliaga@123mail.cl','https://filmizle2022.com/','51.159.37.202','2022-06-23 03:35:22','2022-06-23 03:35:22','I was suggested this blog by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my trouble. Lino Solimeno',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(31,1,'bahis oyna','gilberthrojas@hotmail.com','https://jetfilmizle.eu/','51.159.37.21','2022-07-11 01:22:59','2022-07-11 01:22:59','Very good article. I am experiencing a few of these issues as well.. Nickolas Golliday',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(32,1,'bahis oyna','karinajara82@gmail.com','https://jetfilmizle.eu/','51.159.37.31','2022-07-11 07:04:28','2022-07-11 07:04:28','Use and manage your capital in accordance with the ability to play that you have. Kenny Lauenroth',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(33,1,'porno','chica_la_pulenta@hotmail.com','https://fullfilmcidayim.com/','51.159.37.33','2022-07-16 17:47:18','2022-07-16 17:47:18','This is a great addition to the photos you posted before. Frankie Babikian',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(34,1,'porno','eliasduranlira@gmail.com','https://fullfilmcidayim.com/','51.159.37.33','2022-07-16 23:23:01','2022-07-16 23:23:01','Healthcare careers are thriving and nursing is a single of the fastest developing occupations projected in next 5 years. Elroy Jungbluth',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(35,1,'sikis','alondra_k19@hotmail.com','https://fullfilmcidayim.com/','51.159.36.128','2022-07-18 03:19:20','2022-07-18 03:19:20','You made some decent points there. I did a search on the subject and found most people will go along with with your site. Spencer Latzke',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(36,1,'porno','marchelo.jimenez@gmail.com','https://fullfilmcidayim.com/','51.159.37.178','2022-07-18 09:00:52','2022-07-18 09:00:52','Thank you for the auspicious writeup. It in fact was a amusemjent account it. Victor Gathing',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(37,1,'porno izle','carloslguns@hotmail.com','https://fullfilmcidayim.com/','51.159.37.236','2022-07-18 16:11:01','2022-07-18 16:11:01','If you would like to obtain a good deal from this paragraph then you have to apply such techniques to your won web site. Johnny Cusack',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(38,1,'bahis oyna','cotedonosoilic@hotmail.com','https://fullfilmcidayim.com/','51.159.36.101','2022-07-19 05:56:52','2022-07-19 05:56:52','Hello. This post was extremely motivating, particularly since I was investigating for thoughts on this matter last couple of days. Ignacio Quamme',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(39,1,'rokettube','marisolschuler@hotmail.com','https://fullfilmcidayim.com/','51.159.37.178','2022-07-20 03:08:17','2022-07-20 03:08:17','Very interesting topic , thankyou for putting up. Albert Vaupel',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(40,1,'lezbiyen','mpazaraya@gmail.com','https://fullfilmcidayim.com/','51.159.36.102','2022-07-20 06:50:32','2022-07-20 06:50:32','If you want to obtain a great deal from this paragraph then you have to apply such techniques to your won weblog. Ernesto Mindell',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(41,1,'porno','danitri24@hotmail.com','https://seehdfilm.com/','51.159.37.31','2022-08-07 09:52:58','2022-08-07 09:52:58','Heya i amm for the first time here. I came across this board and I find It really useful & it helped me out much. Collin Poter',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(42,1,'sex','marcelob28@latinmail.com','https://seehdfilm.com/','51.159.36.102','2022-08-07 11:56:36','2022-08-07 11:56:36','I was studying some of your content on this site and I believe this internet site is very informative! Retain putting up. Elmo Casas',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(43,1,'porno','sakuravareas@hotmail.com','https://seehdfilm.com/','51.159.37.26','2022-08-07 17:03:29','2022-08-07 17:03:29','I have been examinating out a few of your stories and i must say pretty nice stuff. I will definitely bookmark your site. King Plungy',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(44,1,'sex','valita_24@hotmail.com','https://hdfilmizletv.com/','51.159.36.139','2022-08-08 04:30:02','2022-08-08 04:30:02','If some one needs to be updated with most up-to-date technologies therefore he must be visit this web page and be up to date everyday. Ted Schenk',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(45,1,'porno','cristobalnegrier@hotmail.com','https://hdfilmizletv.com/','51.159.37.21','2022-08-08 08:14:22','2022-08-08 08:14:22','You made a few good points there. I did a search on the issue and found the majority of folks will go along with with your blog. Sol Lax',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(46,1,'porno','loliitaa_@hotmail.com','https://720pizle3.org/','51.159.37.51','2022-08-10 15:57:58','2022-08-10 15:57:58','I real happy to find this web site on bing, just what I was looking for : D besides saved to favorites. Maximo Postlewaite',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(47,1,'casino','fabita_queen@hotmail.com','https://720pizle3.org/','51.159.36.139','2022-08-10 19:43:47','2022-08-10 19:43:47','Hi there, I wish for to subscribe for this webpage to obtain newest updates, thus where can i do it please help. Monte Scheunemann',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(48,1,'eskort bayan','henssf_a@hotmail.com','https://720pizle3.org/','51.159.36.102','2022-08-11 00:20:18','2022-08-11 00:20:18','This post will help the internet users for building up new webpage or even a blog from start to end. Eddy Clougherty',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(49,1,'porno','bensilvauro@gmail.com','https://www.sinemafilmizle.pw/','51.159.37.33','2022-08-13 01:22:21','2022-08-13 01:22:21','Thank you very much for the great thing you are doing. God bless you. Julian Lasane',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(50,1,'porno','bgamboni@gmail.com','https://www.sinemafilmizle.pw/','51.159.37.26','2022-08-13 09:48:27','2022-08-13 09:48:27','The collard greens with ox tails and some brown sugar looks like some down home cooking. Bernardo Berlinger',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(51,1,'watch series','natyrodriguez21@gmail.com','https://www.sinemafilmizle.pw/','51.159.37.178','2022-08-13 13:42:29','2022-08-13 13:42:29','I conceive you have remarked some very interesting points, thanks for the post. Gaylord Weinheimer',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(52,163,'נערות ליווי romantik 69','93nul9ccin@gmail.com','https://romantik69.co.il/','95.164.234.59','2022-08-14 17:09:47','2022-08-14 17:09:47','Good day! I simply want to offer you a big thumbs up for the excellent info youve got right here on this post. Ill be coming back to your site for more soon.',0,'0','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36','comment',0,0),(53,162,'נערות ליווי romantik 69','y1lycu2@gmail.com','https://romantik69.co.il/','154.85.100.92','2022-08-14 17:09:55','2022-08-14 17:09:55','Good day! I simply want to offer you a big thumbs up for the excellent info youve got right here on this post. Ill be coming back to your site for more soon.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0','comment',0,0),(54,161,'נערות ליווי romantik 69','c6wcstf1h@gmail.com','https://romantik69.co.il/','154.85.100.92','2022-08-14 17:10:12','2022-08-14 17:10:12','Good day! I simply want to offer you a big thumbs up for the excellent info youve got right here on this post. Ill be coming back to your site for more soon.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0','comment',0,0),(55,160,'נערות ליווי romantik 69','3ct5dk3x5f@gmail.com','https://romantik69.co.il/','154.85.100.92','2022-08-14 17:10:31','2022-08-14 17:10:31','Good day! I simply want to offer you a big thumbs up for the excellent info youve got right here on this post. Ill be coming back to your site for more soon.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0','comment',0,0),(56,159,'נערות ליווי romantik 69','8mgz735eh@gmail.com','https://romantik69.co.il/','154.85.100.92','2022-08-14 17:10:51','2022-08-14 17:10:51','Good day! I simply want to offer you a big thumbs up for the excellent info youve got right here on this post. Ill be coming back to your site for more soon.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0','comment',0,0),(57,158,'נערות ליווי romantik 69','c9acb6c4n@gmail.com','https://romantik69.co.il/','154.85.124.111','2022-08-14 17:11:06','2022-08-14 17:11:06','Good day! I simply want to offer you a big thumbs up for the excellent info youve got right here on this post. Ill be coming back to your site for more soon.',0,'0','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.82 Safari/537.36 OPR/35.0.2066.37 (Edition Yx)','comment',0,0),(58,157,'נערות ליווי romantik 69','8smlo53no@gmail.com','https://romantik69.co.il/','45.72.55.191','2022-08-14 17:11:15','2022-08-14 17:11:15','Good day! I simply want to offer you a big thumbs up for the excellent info youve got right here on this post. Ill be coming back to your site for more soon.',0,'0','Opera/9.80 (Windows NT 5.1; Edition Yx) Presto/2.12.388 Version/12.17','comment',0,0),(59,156,'נערות ליווי romantik 69','xxy6lcqq@gmail.com','https://romantik69.co.il/','45.137.84.182','2022-08-14 17:11:26','2022-08-14 17:11:26','Good day! I simply want to offer you a big thumbs up for the excellent info youve got right here on this post. Ill be coming back to your site for more soon.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36 OPR/34.0.2036.41','comment',0,0),(60,1,'נערות ליווי romantik 69','208s18g9r@gmail.com','https://romantik69.co.il/','170.244.93.162','2022-08-14 17:11:31','2022-08-14 17:11:31','Good day! I simply want to offer you a big thumbs up for the excellent info youve got right here on this post. Ill be coming back to your site for more soon.',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36 OPR/34.0.2036.31','comment',0,0),(61,1,'Mark','toolbanara1985@gmail.com','https://tnr69-00.top/','188.134.68.55','2022-09-13 12:18:26','2022-09-13 12:18:26','Thanks for your blog, nice to read. Do not stop.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','comment',0,0),(62,163,'דירות דיסקרטיות בחיפה israelnightclub.co.il','pcu4i61ru@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','45.72.65.112','2022-09-16 17:21:17','2022-09-16 17:21:17','I was extremely pleased to discover this page. I wanted to thank you for ones time due to this fantastic read!! I definitely liked every part of it and i also have you saved as a favorite to see new stuff on your blog.',0,'0','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; Touch; MAARJS)','comment',0,0),(63,162,'דירות דיסקרטיות בחיפה israelnightclub.co.il','57o0d0iqtn@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','23.254.113.146','2022-09-16 17:21:31','2022-09-16 17:21:31','I was extremely pleased to discover this page. I wanted to thank you for ones time due to this fantastic read!! I definitely liked every part of it and i also have you saved as a favorite to see new stuff on your blog.',0,'0','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36','comment',0,0),(64,161,'דירות דיסקרטיות בחיפה israelnightclub.co.il','6m84ecr0v@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','176.116.231.161','2022-09-16 17:21:40','2022-09-16 17:21:40','I was extremely pleased to discover this page. I wanted to thank you for ones time due to this fantastic read!! I definitely liked every part of it and i also have you saved as a favorite to see new stuff on your blog.',0,'0','Mozilla/5.0 (Windows NT 5.1; rv:44.0) Gecko/20100101 Firefox/44.0','comment',0,0),(65,160,'דירות דיסקרטיות בחיפה israelnightclub.co.il','m3msif@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','84.21.190.128','2022-09-16 17:21:46','2022-09-16 17:21:46','I was extremely pleased to discover this page. I wanted to thank you for ones time due to this fantastic read!! I definitely liked every part of it and i also have you saved as a favorite to see new stuff on your blog.',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1104.222 YaBrowser/1.5.1104.222 Safari/537.4','comment',0,0),(66,159,'דירות דיסקרטיות בחיפה israelnightclub.co.il','tsf32um47i@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','179.61.248.201','2022-09-16 17:21:51','2022-09-16 17:21:51','I was extremely pleased to discover this page. I wanted to thank you for ones time due to this fantastic read!! I definitely liked every part of it and i also have you saved as a favorite to see new stuff on your blog.',0,'0','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36','comment',0,0),(67,158,'דירות דיסקרטיות בחיפה israelnightclub.co.il','tis6dlwp2d@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','45.154.84.67','2022-09-16 17:21:55','2022-09-16 17:21:55','I was extremely pleased to discover this page. I wanted to thank you for ones time due to this fantastic read!! I definitely liked every part of it and i also have you saved as a favorite to see new stuff on your blog.',0,'0','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0','comment',0,0),(68,157,'דירות דיסקרטיות בחיפה israelnightclub.co.il','f9v5yg@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','45.57.242.121','2022-09-16 17:22:01','2022-09-16 17:22:01','I was extremely pleased to discover this page. I wanted to thank you for ones time due to this fantastic read!! I definitely liked every part of it and i also have you saved as a favorite to see new stuff on your blog.',0,'0','Opera/9.80 (Windows NT 6.1; WOW64; Edition Yx) Presto/2.12.388 Version/12.16','comment',0,0),(69,156,'דירות דיסקרטיות בחיפה israelnightclub.co.il','fmcake5l3q@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','193.8.138.48','2022-09-16 17:22:10','2022-09-16 17:22:10','I was extremely pleased to discover this page. I wanted to thank you for ones time due to this fantastic read!! I definitely liked every part of it and i also have you saved as a favorite to see new stuff on your blog.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36','comment',0,0),(70,1,'דירות דיסקרטיות בחיפה israelnightclub.co.il','dnrzwan@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','185.102.51.4','2022-09-16 17:22:15','2022-09-16 17:22:15','I was extremely pleased to discover this page. I wanted to thank you for ones time due to this fantastic read!! I definitely liked every part of it and i also have you saved as a favorite to see new stuff on your blog.',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36','comment',0,0),(71,163,'דירות דיסקרטיות בחיפה-israelnightclub.com','355pvee6@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','84.21.190.57','2022-09-20 23:16:27','2022-09-20 23:16:27','Next time I read a blog, I hope that it does not fail me just as much as this particular one. I mean, I know it was my choice to read, however I truly thought you would probably have something interesting to say. All I hear is a bunch of crying about something that you could fix if you were not too busy searching for attention.',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/20100101 Firefox/17.0','comment',0,0),(72,163,'https://romantik69.co.il/','4bj3hk@gmail.com','https://romantik69.co.il/','188.74.169.33','2022-10-02 21:06:06','2022-10-02 21:06:06','אני מאוד ממליץ על אתר הזה כנסו עכשיו ותהנו ממגוון רחב של בחורות ברמה מאוד גבוהה. רק באתר ישראל נייט לאדי <a href=\"https://romantik69.co.il/\" rel=\"nofollow ugc\">נערות ליווי</a>',0,'0','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0','comment',0,0),(73,162,'https://romantik69.co.il/','f0qqbr4ojg@gmail.com','https://romantik69.co.il/','209.127.138.214','2022-10-02 21:06:14','2022-10-02 21:06:14','אני מאוד ממליץ על אתר הזה כנסו עכשיו ותהנו ממגוון רחב של בחורות ברמה מאוד גבוהה. רק באתר ישראל נייט לאדי <a href=\"https://romantik69.co.il/\" rel=\"nofollow ugc\">נערות ליווי</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0','comment',0,0),(74,161,'https://romantik69.co.il/','f4lkbqs@gmail.com','https://romantik69.co.il/','45.89.100.10','2022-10-02 21:06:22','2022-10-02 21:06:22','אני מאוד ממליץ על אתר הזה כנסו עכשיו ותהנו ממגוון רחב של בחורות ברמה מאוד גבוהה. רק באתר ישראל נייט לאדי <a href=\"https://romantik69.co.il/\" rel=\"nofollow ugc\">נערות ליווי</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.107 Amigo/45.0.2454.107 MRCHROME SOC Safari/537.36','comment',0,0),(75,160,'https://romantik69.co.il/','nmspcn6p@gmail.com','https://romantik69.co.il/','45.158.185.195','2022-10-02 21:06:34','2022-10-02 21:06:34','אני מאוד ממליץ על אתר הזה כנסו עכשיו ותהנו ממגוון רחב של בחורות ברמה מאוד גבוהה. רק באתר ישראל נייט לאדי <a href=\"https://romantik69.co.il/\" rel=\"nofollow ugc\">נערות ליווי</a>',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56','comment',0,0),(76,159,'https://romantik69.co.il/','dv16jqjwx@gmail.com','https://romantik69.co.il/','138.122.194.204','2022-10-02 21:06:52','2022-10-02 21:06:52','אני מאוד ממליץ על אתר הזה כנסו עכשיו ותהנו ממגוון רחב של בחורות ברמה מאוד גבוהה. רק באתר ישראל נייט לאדי <a href=\"https://romantik69.co.il/\" rel=\"nofollow ugc\">נערות ליווי</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:42.0) Gecko/20100101 Firefox/42.0','comment',0,0),(77,158,'https://romantik69.co.il/','f97om6kl@gmail.com','https://romantik69.co.il/','138.128.59.238','2022-10-02 21:07:05','2022-10-02 21:07:05','אני מאוד ממליץ על אתר הזה כנסו עכשיו ותהנו ממגוון רחב של בחורות ברמה מאוד גבוהה. רק באתר ישראל נייט לאדי <a href=\"https://romantik69.co.il/\" rel=\"nofollow ugc\">נערות ליווי</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 YaBrowser/15.6.2311.5651 Safari/537.36','comment',0,0),(78,157,'https://romantik69.co.il/','jo39x8jo@gmail.com','https://romantik69.co.il/','37.35.40.123','2022-10-02 21:07:16','2022-10-02 21:07:16','אני מאוד ממליץ על אתר הזה כנסו עכשיו ותהנו ממגוון רחב של בחורות ברמה מאוד גבוהה. רק באתר ישראל נייט לאדי <a href=\"https://romantik69.co.il/\" rel=\"nofollow ugc\">נערות ליווי</a>',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.215 Safari/535.1','comment',0,0),(79,156,'https://romantik69.co.il/','bcijpl@gmail.com','https://romantik69.co.il/','192.198.126.151','2022-10-02 21:07:23','2022-10-02 21:07:23','אני מאוד ממליץ על אתר הזה כנסו עכשיו ותהנו ממגוון רחב של בחורות ברמה מאוד גבוהה. רק באתר ישראל נייט לאדי <a href=\"https://romantik69.co.il/\" rel=\"nofollow ugc\">נערות ליווי</a>',0,'0','Mozilla/5.0 (Windows NT 6.3; rv:38.0) Gecko/20100101 Firefox/38.0','comment',0,0),(80,1,'https://romantik69.co.il/','46pmcm@gmail.com','https://romantik69.co.il/','192.198.126.151','2022-10-02 21:07:39','2022-10-02 21:07:39','אני מאוד ממליץ על אתר הזה כנסו עכשיו ותהנו ממגוון רחב של בחורות ברמה מאוד גבוהה. רק באתר ישראל נייט לאדי <a href=\"https://romantik69.co.il/\" rel=\"nofollow ugc\">נערות ליווי</a>',0,'0','Mozilla/5.0 (Windows NT 6.3; rv:38.0) Gecko/20100101 Firefox/38.0','comment',0,0),(81,163,'Content Generator','p9tuf5@gmail.com','https://stanford.io/3FXszd0','23.236.162.113','2022-11-10 17:17:58','2022-11-10 17:17:58','Artificial intelligence creates content for the site, no worse than a copywriter, you can also use it to write articles. 100% uniqueness :). Click Here:👉 https://stanford.io/3FXszd0',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 OPR/29.0.1795.47 (Edition Yx)','comment',0,0),(82,163,'zelma','24943@gmail.com','https://bit.ly/3UIKI2R','45.158.49.8','2022-11-23 04:22:20','2022-11-23 04:22:20','Waiting patiently for you to come home and fuck me! https://bit.ly/3UIKI2R',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(83,163,'zelma','92350@gmail.com','https://bit.ly/3UIKI2R','45.158.49.8','2022-11-23 04:22:35','2022-11-23 04:22:35','Waiting patiently for you to come home and fuck me! https://bit.ly/3UIKI2R',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(84,1,'venom izle','cllancafil82@gmail.com','https://www.fullhdfilmizlesene.pw/film/venom-izle-f/','51.159.37.51','2022-12-13 21:18:30','2022-12-13 21:18:30','I like this site because so much utile stuff on here :D. Hans Tigney',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(85,1,'venom izle','alejandra23_99@hotmail.com','https://www.fullhdfilmizlesene.pw/film/venom-izle-f/','51.159.37.117','2022-12-13 22:34:27','2022-12-13 22:34:27','Thank you for the compliment and for sharing your feelings about your own dad. Emanuel Fila',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(86,1,'türkçe dublaj','jemy.abigail@gmail.com','https://www.fullhdfilmizlesene.pw/filmizle/turkce-dublaj-hd-filmler-fh-izle','51.159.37.178','2022-12-14 01:07:55','2022-12-14 01:07:55','Only wanna input that you have a very decent web site , I the layout it really stands out. Johnathon Hefter',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(87,1,'türkçe dublaj','manoses_19@hotmail.com','https://www.fullhdfilmizlesene.pw/filmizle/turkce-dublaj-hd-filmler-fh-izle','51.159.37.202','2022-12-14 02:23:21','2022-12-14 02:23:21','Thank you, Moselle. It warms my heart to think that I can inspire people! I really appreciate your feedback. Come back and visit often. Rick Seumanu',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(88,163,'zelma','75000@gmail.com','https://bit.ly/3UKFVxa','45.158.49.102','2022-12-19 18:43:30','2022-12-19 18:43:30','Waiting patiently for you to come home and fuck me! https://bit.ly/3UKFVxa',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(89,163,'דירות דיסקרטיות','dsn3a93y@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa/','192.198.126.111','2022-12-27 01:18:06','2022-12-27 01:18:06','You ought to take part in a contest for one of the best sites on the net. I will highly recommend this blog!',0,'0','Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0','comment',0,0),(90,163,'zelma','19015@gmail.com','https://bit.ly/3UKFVxa','109.227.97.140','2022-12-30 00:53:29','2022-12-30 00:53:29','Waiting patiently for you to come home and fuck me! https://bit.ly/3UKFVxa',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(91,163,'zelma','71633@gmail.com','https://hdo.ai/DVMQq','91.244.62.133','2023-01-12 22:28:53','2023-01-12 22:28:53','Waiting patiently for you to come home and fuck me! https://hdo.ai/DVMQq',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(92,163,'zelma','30789@gmail.com','https://hdo.ai/DVMQq','91.244.62.133','2023-01-12 22:29:13','2023-01-12 22:29:13','Waiting patiently for you to come home and fuck me! https://hdo.ai/DVMQq',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(93,163,'zelma','45801@gmail.com','http://bitly.ws/znHX','45.158.49.219','2023-01-26 02:33:52','2023-01-26 02:33:52','Waiting patiently for you to come home and fuck me! http://bitly.ws/znHX',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(94,163,'zelma','28861@gmail.com','http://bitly.ws/znHX','91.244.62.245','2023-01-29 15:43:39','2023-01-29 15:43:39','Waiting patiently for you to come home and fuck me! http://bitly.ws/znHX',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(95,163,'zelma','41911@gmail.com','http://bitly.ws/znHX','45.158.48.206','2023-02-08 12:10:08','2023-02-08 12:10:08','Waiting patiently for you to come home and fuck me! http://bitly.ws/znHX',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(96,163,'zelma','57360@gmail.com','http://bitly.ws/znHX','37.139.179.19','2023-02-13 11:55:17','2023-02-13 11:55:17','Waiting patiently for you to come home and fuck me! http://bitly.ws/znHX',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(97,163,'This Is Your New Start','81598@gmail.com','https://bit.ly/3jVaIuV','37.139.179.19','2023-02-18 21:36:56','2023-02-18 21:36:56','Here Is Everything You Need For A $503.34 Daily In Passive Income - https://bit.ly/3jVaIuV',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(98,163,'fran','26201@gmail.com','https://is.gd/dBsd60','37.139.179.19','2023-02-24 19:14:56','2023-02-24 19:14:56','POV me bouncing on your dick :) https://is.gd/dBsd60',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(99,163,'nellie','43437@gmail.com','https://is.gd/dBsd60','37.139.179.19','2023-02-27 08:58:56','2023-02-27 08:58:56','When I think about you I touch myself https://is.gd/dBsd60',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(100,163,'georgina','98020@gmail.com','https://is.gd/dBsd60','37.139.179.19','2023-02-27 08:59:12','2023-02-27 08:59:12','I have something for you https://is.gd/dBsd60',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(101,163,'katina','83249@gmail.com','https://is.gd/dBsd60','91.244.13.58','2023-03-01 23:52:45','2023-03-01 23:52:45','Anybody looking for a smoke buddy? https://is.gd/dBsd60',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(102,163,'alisha','41545@gmail.com','https://is.gd/dBsd60','91.244.13.58','2023-03-01 23:53:07','2023-03-01 23:53:07','Wishing for a new cock to have some fun with https://is.gd/dBsd60',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(103,163,'cynthia','151@gmail.com','https://is.gd/dBsd60','91.244.13.58','2023-03-04 20:40:19','2023-03-04 20:40:19','When I think about you I touch myself https://is.gd/dBsd60',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(104,163,'cara','42982@gmail.com','https://s.id/1BO6w','91.244.13.58','2023-03-07 21:13:13','2023-03-07 21:13:13','Join me for coffee! https://s.id/1BO6w',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(105,163,'fanny','67222@gmail.com','http://tiny.cc/gz35vz','91.244.13.58','2023-03-10 03:39:12','2023-03-10 03:39:12','Let’s fuck in the backseat http://tiny.cc/gz35vz',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(106,158,'1xbet зеркало рабочее прямо сейчас','doymanmildca1986@gmail.com','https://bet-promokod.ru/','188.134.68.55','2023-03-17 10:39:51','2023-03-17 10:39:51','Букмекерская контора 1xBet является одной из самых популярных на рынке. <a href=\"https://bet-promokod.ru/\" rel=\"nofollow ugc\">1xbet зеркало рабочее прямо сейчас</a> Большой выбор спортивных и киберспортивных событий, десятки открытых линий, самые высокие коэффициенты. Кроме того, БК имеет обширный функционал и одна из немногих дает возможность совершать ставки по специальным промокодам. Используя промокоды, вы можете получить реальный денежный выигрыш, не внося абсолютно никаких средств. Фантастика? – Нет, Реальность Узнать актуальный промокод вы можете сейчас же, однако использовать его необходимо в соответствии с условиями и инструкциями, которые приведены ниже.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','comment',0,0),(107,163,'dorothy','804@gmail.com','http://prephe.ro/Bdsn','91.244.13.247','2023-03-20 16:19:46','2023-03-20 16:19:46','Three fingers in my ass and your dick in my pussy, please http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(108,163,'adriana','58456@gmail.com','http://prephe.ro/Bdsn','91.244.13.247','2023-03-24 00:37:37','2023-03-24 00:37:37','I’m clean but make me dirty again http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(109,163,'addie','98548@gmail.com','http://prephe.ro/Bdsn','92.43.80.160','2023-03-26 11:14:44','2023-03-26 11:14:44','Follow me to the bed, so I can spread for you http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(110,163,'leann','45558@gmail.com','http://prephe.ro/Bdsn','45.158.49.169','2023-03-29 14:31:03','2023-03-29 14:31:03','When you like the doggy position! http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(111,163,'kitty','25630@gmail.com','http://prephe.ro/Bdsn','91.244.12.175','2023-04-02 05:22:42','2023-04-02 05:22:42','Time to sit on you? http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(112,163,'allison','90267@gmail.com','http://prephe.ro/Bdsn','91.244.12.175','2023-04-05 03:24:13','2023-04-05 03:24:13','Thick and full of cum. Who needs a morning fuck? http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(113,163,'emily','63477@gmail.com','http://prephe.ro/Bdsn','91.244.12.175','2023-04-07 20:47:45','2023-04-07 20:47:45','I need a good fucking after a long day of work http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(114,163,'carolina','98591@gmail.com','http://prephe.ro/Bdsn','91.244.12.175','2023-04-10 17:43:16','2023-04-10 17:43:16','My pussy gets red like this when I\'m horny http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(115,163,'kathrine','54833@gmail.com','http://prephe.ro/Jdqn','91.244.12.175','2023-04-13 11:00:45','2023-04-13 11:00:45','On my knees and ready http://prephe.ro/Jdqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(116,163,'tammy','69959@gmail.com','http://prephe.ro/Vlqn','91.244.12.175','2023-04-16 17:07:53','2023-04-16 17:07:53','I\'ve never tried anal before... Anyone want to help me out there? http://prephe.ro/Vlqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(117,163,'manuela','74100@gmail.com','http://prephe.ro/Vlqn','91.244.12.175','2023-04-20 05:19:28','2023-04-20 05:19:28','Come here so I can jiggle them on your cock :P http://prephe.ro/Vlqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(118,163,'cathy','63020@gmail.com','http://prephe.ro/Vlqn','91.244.12.175','2023-04-23 23:43:37','2023-04-23 23:43:37','Join me for coffee! http://prephe.ro/Vlqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(119,163,'lessie','40108@gmail.com','http://prephe.ro/Vlqn','91.244.12.175','2023-04-23 23:43:52','2023-04-23 23:43:52','Do you like my nips? http://prephe.ro/Vlqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(120,163,'francesca','13202@gmail.com','http://prephe.ro/Vlqn','91.244.12.175','2023-04-26 16:18:53','2023-04-26 16:18:53','Join me in the shower Daddy, I need your strong hands to scrub me down! http://prephe.ro/Vlqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(121,163,'https://iloveroom.co.il/room/דירות-דיסקרטיות-בחיפה/','4f7tozl8ri@gmail.com','https://iloveroom.co.il/room/דירות-דיסקרטיות-בחיפה/','206.41.164.63','2023-05-11 15:19:00','2023-05-11 15:19:00','I was excited to uncover this great site. I need to to thank you for your time for this particularly wonderful read!! I definitely enjoyed every part of it and I have you book marked to check out new stuff in your web site.',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25','comment',0,0),(122,163,'katrina','68149@gmail.com','http://prephe.ro/8eqn','45.158.49.95','2023-05-12 01:36:32','2023-05-12 01:36:32','My pussy is so warm and inviting, wanna come in? http://prephe.ro/8eqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(123,163,'gail','29751@gmail.com','http://prephe.ro/Phqn','45.158.49.95','2023-05-16 09:22:07','2023-05-16 09:22:07','Lick your way down http://prephe.ro/Phqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(124,163,'https://stevieraexxx.rocks/city/Discreet-apartments-in-Tel-Aviv.php','c6fne3cu@gmail.com','https://stevieraexxx.rocks/city/Discreet-apartments-in-Tel-Aviv.php','194.31.162.59','2023-05-21 21:10:22','2023-05-21 21:10:22','You ought to be a part of a contest for one of the finest websites online. I am going to highly recommend this web site!',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.130','comment',0,0),(125,162,'https://stevieraexxx.rocks/city/Discreet-apartments-in-Givatayim.php','aokqxvame@gmail.com','https://stevieraexxx.rocks/city/Discreet-apartments-in-Givatayim.php','104.239.40.44','2023-05-21 21:10:32','2023-05-21 21:10:32','Itís difficult to find educated people for this subject, but you sound like you know what youíre talking about! Thanks',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7','comment',0,0),(126,161,'https://stevieraexxx.rocks/city/Discreet-apartments-in-Jerusalem.php','14heoi5@gmail.com','https://stevieraexxx.rocks/city/Discreet-apartments-in-Jerusalem.php','45.61.122.28','2023-05-21 21:10:48','2023-05-21 21:10:48','A fascinating discussion is worth comment. I believe that you need to write more on this subject, it may not be a taboo subject but generally people dont speak about these topics. To the next! All the best!!',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0b7) Gecko/20101111 Firefox/4.0b7','comment',0,0),(127,160,'https://stevieraexxx.rocks/city/Discreet-apartments-in-Rishon-Lezion.php','tqaen0@gmail.com','https://stevieraexxx.rocks/city/Discreet-apartments-in-Rishon-Lezion.php','64.137.62.18','2023-05-21 21:10:59','2023-05-21 21:10:59','I want to to thank you for this wonderful read!! I definitely enjoyed every little bit of it. I have you book-marked to look at new stuff you postÖ',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.78.2 (KHTML, like Gecko) Version/6.1.6 Safari/537.78.2','comment',0,0),(128,159,'https://stevieraexxx.rocks/city/Discreet-apartments-in-Rishon-Lezion.php','ag13doms@gmail.com','https://stevieraexxx.rocks/city/Discreet-apartments-in-Rishon-Lezion.php','216.173.72.14','2023-05-21 21:11:06','2023-05-21 21:11:06','I must thank you for the efforts you have put in writing this website. I really hope to view the same high-grade content by you later on as well. In fact, your creative writing abilities has motivated me to get my own website now ;)',0,'0','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.10.2526.80 Safari/537.36','comment',0,0),(129,158,'https://stevieraexxx.rocks/city/Discreet-apartments-in-Givatayim.php','kjy7df6@gmail.com','https://stevieraexxx.rocks/city/Discreet-apartments-in-Givatayim.php','154.95.38.3','2023-05-21 21:11:15','2023-05-21 21:11:15','Itís difficult to find educated people for this subject, but you seem like you know what youíre talking about! Thanks',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) SkypeUriPreview Preview/0.5','comment',0,0),(130,157,'https://stevieraexxx.rocks/city/Discreet-apartments-in-Herzliya.php','janxhp2p@gmail.com','https://stevieraexxx.rocks/city/Discreet-apartments-in-Herzliya.php','185.242.93.100','2023-05-21 21:11:28','2023-05-21 21:11:28','Everything is very open with a clear clarification of the challenges. It was truly informative. Your website is extremely helpful. Many thanks for sharing!',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.4.8.1000 Chrome/30.0.1599.101 Safari/537.36','comment',0,0),(131,156,'https://stevieraexxx.rocks/city/Discreet-apartments-in-Petah-Tikva.php','pqd3mh9y@gmail.com','https://stevieraexxx.rocks/city/Discreet-apartments-in-Petah-Tikva.php','185.242.95.225','2023-05-21 21:11:37','2023-05-21 21:11:37','Hello! I simply want to offer you a big thumbs up for the great information youve got right here on this post. I will be returning to your web site for more soon.',0,'0','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2645.3 Safari/537.36','comment',0,0),(132,1,'https://stevieraexxx.rocks/city/Discreet-apartments-in-Rehovot.php','89dgebp@gmail.com','https://stevieraexxx.rocks/city/Discreet-apartments-in-Rehovot.php','216.173.72.161','2023-05-21 21:11:47','2023-05-21 21:11:47','The very next time I read a blog, I hope that it wont fail me as much as this one. After all, I know it was my choice to read through, however I truly believed youd have something helpful to say. All I hear is a bunch of moaning about something you could fix if you were not too busy seeking attention.',0,'0','Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1) Gecko/20061127 lolifox/0.3.0','comment',0,0),(133,163,'jody','98446@gmail.com','http://prephe.ro/Phqn','109.227.90.204','2023-05-23 16:56:33','2023-05-23 16:56:33','I\'m waiting http://prephe.ro/Phqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(134,163,'esmeralda','97252@gmail.com','http://prephe.ro/Phqn','185.220.101.24','2023-06-03 13:22:06','2023-06-03 13:22:06','Would you like to have a sip of my coffee? http://prephe.ro/Phqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(135,163,'sonya','83962@gmail.com','http://prephe.ro/Phqn','23.137.251.61','2023-06-03 13:22:12','2023-06-03 13:22:12','Would you like me to wrap my boobs around your big hard cock? http://prephe.ro/Phqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(136,163,'krystal','93215@gmail.com','http://prephe.ro/Phqn','45.138.16.42','2023-06-17 17:25:12','2023-06-17 17:25:12','My pussy gets red like this when I\'m horny http://prephe.ro/Phqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(137,163,'marina','15016@gmail.com','http://prephe.ro/Phqn','185.220.101.57','2023-06-17 17:25:23','2023-06-17 17:25:23','I wish more guys were into anal http://prephe.ro/Phqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(138,163,'dianne','94803@gmail.com','http://prephe.ro/Phqn','107.189.30.236','2023-06-17 17:25:33','2023-06-17 17:25:33','A red lip makes me feel sexy :) http://prephe.ro/Phqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(139,1,'2UvFaExBWz0W5t2gvQLAi8QkA2X','2UvFaExBWz0W5t2gvQLAi8QkA2X@email.com','','62.122.184.251','2023-09-06 21:03:18','2023-09-06 21:03:18','2UvFaExBWz0W5t2gvQLAi8QkA2X',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36','comment',0,0),(140,1,'freespin','mhidalgo.belfi@gmail.com','https://whitedrill.org/','51.159.37.33','2023-10-03 12:01:16','2023-10-03 12:01:16','After all, we should remember compellingly reintermediate mission-critical potentialities whereas cross functional scenarios. Phosfluorescently re-engineer distributed processes without standardized supply chains. Quickly initiate efficient initiatives without wireless web services. Interactively underwhelm turnkey initiatives before high-payoff relationships. Holisticly restore superior interfaces before flexible technology. Brock Seidenbecker',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(141,1,'hdfilmcehennemi','pabfu@hotmail.com','https://hdfilmcehennemii.co/','51.159.37.33','2023-11-24 08:41:09','2023-11-24 08:41:09','Yakın gelecekte, yayılan bir salgın sonucu tam bir kaos yaşanmış ve toplumun büyük bir kesimi zombiye dönüşmüştür. İnsan sayısının giderek azalmasından korkan hükümet yetkilileri acilen bilim insanlarını devreye sokar ve bir deney yapılır. Fakat istenilen sonuç elde edilmez. Daha sonra ise üstün yeteneklere sahip genç bir adam çıkar. Rueben Preston',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(142,1,'hdfilmcehennemi','chargged@gmail.com','https://hdfilmcehennemii.co/','51.159.37.31','2023-11-24 14:21:45','2023-11-24 14:21:45','Dickie Roberts küçük bir çocukken, milyonlarca televizyon izleyicisinin gönlünde taht kuran bir \'çocuk yıldızdı\'. Sonra olan oldu, ratingler düştü ve Roberts sıradan bir çocuk gibi ortada kaldı. 30’lu yaşlarına gelince artık, park görevlisi, araba yıkayan oldukça sıradan biri oldu. Fakat normal biri gibi de yaşamıyor ve bu fena halde başına bela olmak üzere... Roberts tıpkı eski günlerdeki gibi bir iş buluyor. Çekilecek olan bir filmde sıkı bir rol kapmak üzere. Fakat yapımcının gözü Dickie’yi tutmuyor. Ve Dickie normal insanlar gibi yaşamamasının bedelini ödemeye başlıyor. Bu ise onu akıllandırıyor ve müthiş bir kararın eşiğine getiriyor. Kendisine bir aile kuracak, klasik, normal bir insan olmak için çocukluğunu baştan yaşayacak! Normand Slacum',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(143,1,'hdfilmcehennemi','ponce.gladys@gmail.com','https://hdfilmcehennemii.co/','51.159.37.34','2023-11-25 00:22:04','2023-11-25 00:22:04','Sevgilisi Aisha bir seri katilin son kurbanı olduğunda, Guru intikam peşindeyken iyi ve kötü arasındaki çizgiyi bulanıklaşır. Quinton Clozza',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(144,1,'hdfilmcehennemi','roroe_77@hotmail.com','https://hdfilmcehennemii.co/','51.159.37.31','2023-11-25 05:50:34','2023-11-25 05:50:34','Bir gün bir barda karşılaştığı dört kadını, yeni hedefleri olarak gözüne kestirmiştir. Fakat bu sefer, kurbanlarının kimliklerinden habersizdir ve nasıl bir belaya bulaşmak üzere olduğunun farkında değildir. Sherwood Germinaro',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(145,1,'hdfilmcehennemi','mac7726@hotmail.com','https://hdfilmcehennemi.one/','51.159.37.33','2023-11-25 18:55:59','2023-11-25 18:55:59','Satıcılığı bırakıp papazlık yapmaya başlayan Michael Spurlock ve Güneydoğu Asya\'dan gelen bir grup mültecinin yaşanmış hikayesinden uyarlanan film, kapatılması emredilen küçük bir kiliseyi ve gelecekleri için her şeyi riske atarak tohum ekmeye çalışmalarını konu alıyor. Quinn Trowery',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(146,1,'hdfilmcehennemi','fex_1980@hotmail.com','https://hdfilmcehennemi.one/','51.159.37.34','2023-11-26 00:51:09','2023-11-26 00:51:09','Bu heyecan dolu gerilimde, Claire Danes ve Kate Beckinsale hayalini kurdukları tatilleri kabusa dönüşen iki en iyi arkadaşı oynuyorlar. Alice (Danes) düşüncesiz ve umarsızdır; Darlene (Beckinsale) ise içine kapanık birisidir. Ama her ikisi de aynı esrarengiz erkekten hoşlandıklarında, tedbiri elden bırakır ve bir anda hayatları sonsuza dek değişir. Artık yabancı topraklardadırlar, ve çok geç olmadan masumiyetlerini kanıtlamalıdırlar. Bu akıcı (People Magazine) kendini bulma ve sonsuz özveri ve arkadaşlık hikayesinde Bill Pullman\'da yeralıyor! Jared Rudo',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(147,1,'hdfilmcehennemi','elena_almendras@hotmail.com','https://hdfilmcehennemi.one/','51.159.37.51','2023-11-26 22:12:01','2023-11-26 22:12:01','Hikayesini gerçek hayattan alan, 1950\'li ve 60\'lı yıllarda geçen bu suç gerilim filminde, bir kadının tecavüz edilerek öldürülmesi sonucunda, o kasabada yaşayan Akos Reti\'nin, apar topar önce idama sonra iyi halden 25 yıl hapis cezasına mahkum olması ve 7 yıl geçtikten sonra aynı kasabada kadınları vahşice öldüren sapık seri katilin tekrar ortaya çıkmasıyla şehirden gelen bir savcının, gerçek katili bulmak için soruşturmayı ele alması konu alınıyor. Monty Bisso',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(148,1,'hdfilmcehennemi','conzue23@hotmail.com','https://hdfilmcehennemi.one/','51.159.37.34','2023-12-02 21:23:07','2023-12-02 21:23:07','Dakota Fanning ve Queen Latifah,aile,özgürlük ve sevginin üstün gücüne dair etkileyici bir hikaye. Barton Kopczynski',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(149,1,'hdfilmcehennemi','judith.fernandezbarra@gmail.com','https://hdfilmcehennemi.one/','51.159.37.33','2023-12-06 09:40:46','2023-12-06 09:40:46','D.J. Viola\'nın yönettiği filmin senaryosu da D.J. Viola, James Hibberd ve Rob Warren Thomas\'a ait. Başrollerinde ise Nathan Kress, Virginia Gardner, Kirby Bliss Blanton, Ryan Higa, Mark Furze ve Ethan Peck yer alıyor. Bart Whitteker',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(150,1,'hdfilmcehennemi','janoman1987@gmail.com','https://hdfilmcehennemi.one/','51.159.37.31','2023-12-06 15:52:22','2023-12-06 15:52:22','İki Kez Yaşa Bir Kez Sev izle.Yetmiş yaşına gelen Emilio\'a Alzheimer teşhişi konmuştur. Ailesininde desteğiyle çocukluk aşkıyla tekrar bir araya gelmek ister. Spencer Evinger',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(151,1,'mambo 36 tadalafil','','https://tadalatada.com','178.159.37.158','2023-12-08 15:34:03','2023-12-08 15:34:03','<strong>mambo 36 tadalafil</strong>\n\nComing Soon – The Dragon Fashion House and Accessories',0,'0','PHP/5.2.41','trackback',0,0),(152,1,'hdfilmcehennemi','c.antinao.liancao@gmail.com','https://hdfilmcehennemi.one/','51.159.37.51','2023-12-09 05:51:24','2023-12-09 05:51:24','The Last Bus, karısının küllerini tanıştıkları yere götürmek için yolculuğa çıkan bir adamın hikayesini konu ediyor. Yaşlı bir adam olan Tom, karısının vefatının ardından onun küllerini tanıştıkları Land\'s End\'e götürmeye karar verir. Paul Seace',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(153,1,'hdfilmcehennemi','riveratoroluis@gmail.com','https://hdfilmcehennemi.one/','51.159.37.33','2023-12-09 11:24:03','2023-12-09 11:24:03','Film, tüm zamanların en ünlü kanunsuz adamı Jesse James\'in yaşamını konu alıyor. Brandon Debarba',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(154,1,'essay writing company','','https://essaywriterbar.com','190.123.209.238','2023-12-14 20:45:00','2023-12-14 20:45:00','<strong>essay writing company</strong>\n\nComing Soon – The Dragon Fashion House and Accessories',0,'0','PHP/5.3.29','trackback',0,0),(155,1,'Kmtcktwibe','hwg6jdgsfg5ci@gmail.com','https://sildenafillus.com/','178.159.37.28','2023-12-20 02:33:19','2023-12-20 02:33:19','<a href=\"https://sildenafillus.com/\" rel=\"nofollow ugc\">viagraorcialis</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:53.0) Gecko/20100101 Firefox/53.0','comment',0,0),(156,163,'tadalafil citrate research chemical','','https://cialssis.com','95.164.159.83','2024-01-07 04:28:10','2024-01-07 04:28:10','<strong>tadalafil citrate research chemical</strong>\n\ntadalafil citrate research chemical',0,'0','PHP/5.2.77','trackback',0,0),(157,157,'cialis reviews photos','','https://cialssis.com','190.123.209.165','2024-01-07 21:51:55','2024-01-07 21:51:55','<strong>cialis reviews photos</strong>\n\ncialis reviews photos',0,'0','PHP/5.2.47','trackback',0,0),(158,1,'tıkla satın al','lkruusef@hotmail.com','https://store.wacomturkiye.com/','51.159.37.31','2024-01-09 21:41:08','2024-01-09 21:41:08','A lot of thanks for your entire hard work on this site. My mom enjoys engaging in investigations and it is easy to understand why. A number of us learn all about the dynamic tactic you provide great techniques on your web site and in addition improve response from other people on the point then our own child has been discovering a lot of things. Enjoy the remaining portion of the year. You are conducting a glorious job. Roderick Brockway',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(159,1,'when does the cialis patent expire','','https://cialssis.com','38.170.170.141','2024-01-11 19:39:11','2024-01-11 19:39:11','<strong>when does the cialis patent expire</strong>\n\nwhen does the cialis patent expire',0,'0','PHP/5.3.86','trackback',0,0),(160,160,'cialis online buy','','https://cialssis.com','38.154.214.108','2024-01-12 22:08:16','2024-01-12 22:08:16','<strong>cialis online buy</strong>\n\ncialis online buy',0,'0','PHP/5.2.08','trackback',0,0),(161,158,'cialis international','','https://cialssis.com','193.34.75.113','2024-01-14 10:33:47','2024-01-14 10:33:47','<strong>cialis international</strong>\n\ncialis international',0,'0','PHP/5.3.98','trackback',0,0),(162,156,'purchasing cialis online','','https://cialssis.com','138.122.193.134','2024-01-15 06:23:03','2024-01-15 06:23:03','<strong>purchasing cialis online</strong>\n\npurchasing cialis online',0,'0','PHP/5.2.43','trackback',0,0),(163,163,'Extended Opportunity','35888@gmail.com','','109.72.127.188','2024-02-13 01:52:59','2024-02-13 01:52:59','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(164,163,'Extended Opportunity','13470@gmail.com','','109.72.127.188','2024-02-13 01:53:26','2024-02-13 01:53:26','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(165,1,'Destiny4132','Destiny4132@gmail.com','','45.82.69.22','2024-02-22 11:41:28','2024-02-22 11:41:28','Modern Talking был немецким дуэтом, сформированным в 1984 году. Он стал одним из самых ярких представителей евродиско и популярен благодаря своему неповторимому звучанию. Лучшие песни включают \"You\'re My Heart, You\'re My Soul\", \"Brother Louie\", \"Cheri, Cheri Lady\" и \"Geronimo\'s Cadillac\". Их музыка оставила неизгладимый след в истории поп-музыки, захватывая слушателей своими заразительными мелодиями и запоминающимися текстами. Modern Talking продолжает быть популярным и в наши дни, оставаясь одним из символов эпохи диско. <a href=\"https://mp3name.co\" rel=\"nofollow ugc\">Музыка 2024</a> года слушать онлайн и скачать бесплатно mp3.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(166,1,'hdfilmcehennemi','carolina.04.hernandez@gmail.com','https://hdfilmcehennemi.one/','51.159.37.51','2024-02-22 12:36:42','2024-02-22 12:36:42','Fullhdfilmizle ile Full HD film izle deneyimi sizlerle! Türkçe dublaj ve Altyazı arşivimizle 1080p kalite kesintisiz film izleme sitesinin tadını çıkar! Leonardo Wilfong',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(167,163,'Extended Opportunity','37956@gmail.com','','185.125.50.101','2024-02-27 00:07:51','2024-02-27 00:07:51','Hey,\r\n\r\nThe moment we\'ve all been waiting for is finally here – GoBuildr is now LIVE! 🎉\r\n\r\n🌐 Create ultra-lightning-fast websites, sales funnels, eCommerce stores, and more in less than 60 seconds, with just a keyword!\r\n\r\n🚀 Say goodbye to the limitations of traditional page builders. GoBuildr combines the functionality of 16 different tools into one powerful app, supercharged with AI-assisted technology.\r\n\r\n⇒ Click Here To Checkout Demo https://ext-opp.com/GoBuildr',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(168,163,'Extended Opportunity','63423@gmail.com','','185.125.50.101','2024-02-27 00:08:09','2024-02-27 00:08:09','Hey,\r\n\r\nThe moment we\'ve all been waiting for is finally here – GoBuildr is now LIVE! 🎉\r\n\r\n🌐 Create ultra-lightning-fast websites, sales funnels, eCommerce stores, and more in less than 60 seconds, with just a keyword!\r\n\r\n🚀 Say goodbye to the limitations of traditional page builders. GoBuildr combines the functionality of 16 different tools into one powerful app, supercharged with AI-assisted technology.\r\n\r\n⇒ Click Here To Checkout Demo https://ext-opp.com/GoBuildr',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(169,163,'Extended Opportunity','33463@gmail.com','','185.125.50.101','2024-02-29 12:22:23','2024-02-29 12:22:23','He Got 256,354 Free Views With AI…\r\n\r\nCan you believe it? \r\n\r\nPeople spend thousands of dollars to get that kind of result… \r\n\r\nMy friend Kundan just did it for free… \r\n\r\nHe only used his new app… AI ScreenSnap… \r\n\r\nIt’s the world’s first AI app that can generate videos with the power of Video-Exclusive AI Engine… \r\n\r\nThat can edit, record, and generate videos with just a few clicks… with zero experience…\r\n\r\nClick here now and watch AI ScreenSnap in action https://ext-opp.com/AIScreenSnap',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(170,163,'Extended Opportunity','22946@gmail.com','','185.125.50.5','2024-03-14 12:51:32','2024-03-14 12:51:32','A.I Create & Sell Unlimited Audiobooks to 2.3 Million Users - https://ext-opp.com/ECCO',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(171,163,'Extended Opportunity','61257@gmail.com','','185.125.50.5','2024-03-18 10:21:38','2024-03-18 10:21:38','A.I Create & Sell Unlimited Audiobooks to 2.3 Million Users - https://ext-opp.com/ECCO',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(172,163,'Extended Opportunity','87031@gmail.com','','185.125.50.5','2024-03-21 19:36:09','2024-03-21 19:36:09','Create Stunning Ebooks In 60 Seconds - https://ext-opp.com/AIEbookPal',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(173,163,'Extended Opportunity','99024@gmail.com','','185.125.50.5','2024-03-26 15:34:44','2024-03-26 15:34:44','Elevate Learning Adventures with The Story Shack!\r\n\r\nA library of 200+ high-quality books tailored to the school curriculum.\r\nStoryShack\'s Build a Book bundle features word searches, quizzes, creative coloring pages, high-quality images, and top SEO keywords.\r\nStoryShack\'s StoryCraft Pro bundle includes the \"Melody Minds Library\" with 350+ music tracks and \"AnimateMasters Pro,\" offering 30+ categories of animations.\r\nAnd as if that\'s not enough, here are the MEGA BONUSES:\r\n\r\n✔ 100+ Mega Mazes Pack\r\n✔ 100+ Sudoku Elements Pack\r\n✔ 100+ Comic Book Template Pack\r\n✔ 100+ Handwriting Practice Template Pack\r\n✔ 100+ Kids Story Book Templates\r\n✔ Canva Book Templates\r\n✔ Additional beautiful content like journal prompts\r\n✔ INCLUDED: The Ultimate Workbook\r\n\r\nClick https://ext-opp.com/StoryShack to explore The Story Shack e-Learning Collection and seize the opportunity for multiplied income!',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(174,163,'Extended Opportunity','77556@gmail.com','','185.125.50.5','2024-03-26 15:34:59','2024-03-26 15:34:59','Elevate Learning Adventures with The Story Shack!\r\n\r\nA library of 200+ high-quality books tailored to the school curriculum.\r\nStoryShack\'s Build a Book bundle features word searches, quizzes, creative coloring pages, high-quality images, and top SEO keywords.\r\nStoryShack\'s StoryCraft Pro bundle includes the \"Melody Minds Library\" with 350+ music tracks and \"AnimateMasters Pro,\" offering 30+ categories of animations.\r\nAnd as if that\'s not enough, here are the MEGA BONUSES:\r\n\r\n✔ 100+ Mega Mazes Pack\r\n✔ 100+ Sudoku Elements Pack\r\n✔ 100+ Comic Book Template Pack\r\n✔ 100+ Handwriting Practice Template Pack\r\n✔ 100+ Kids Story Book Templates\r\n✔ Canva Book Templates\r\n✔ Additional beautiful content like journal prompts\r\n✔ INCLUDED: The Ultimate Workbook\r\n\r\nClick https://ext-opp.com/StoryShack to explore The Story Shack e-Learning Collection and seize the opportunity for multiplied income!',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(175,163,'Extended Opportunity','26740@gmail.com','','185.125.50.5','2024-03-26 15:35:27','2024-03-26 15:35:27','Elevate Learning Adventures with The Story Shack!\r\n\r\nA library of 200+ high-quality books tailored to the school curriculum.\r\nStoryShack\'s Build a Book bundle features word searches, quizzes, creative coloring pages, high-quality images, and top SEO keywords.\r\nStoryShack\'s StoryCraft Pro bundle includes the \"Melody Minds Library\" with 350+ music tracks and \"AnimateMasters Pro,\" offering 30+ categories of animations.\r\nAnd as if that\'s not enough, here are the MEGA BONUSES:\r\n\r\n✔ 100+ Mega Mazes Pack\r\n✔ 100+ Sudoku Elements Pack\r\n✔ 100+ Comic Book Template Pack\r\n✔ 100+ Handwriting Practice Template Pack\r\n✔ 100+ Kids Story Book Templates\r\n✔ Canva Book Templates\r\n✔ Additional beautiful content like journal prompts\r\n✔ INCLUDED: The Ultimate Workbook\r\n\r\nClick https://ext-opp.com/StoryShack to explore The Story Shack e-Learning Collection and seize the opportunity for multiplied income!',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(176,163,'Extended Opportunity','7322@gmail.com','','185.125.50.5','2024-04-02 14:02:29','2024-04-02 14:02:29','Millions of Free Traffic with AI Tools - https://ext-opp.com/AIVault',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(177,163,'Extended Opportunity','66895@gmail.com','','185.125.50.5','2024-04-06 20:00:33','2024-04-06 20:00:33','This Dude Creates Bitc0in Out Of Thin Air [CRAZY]\r\n\r\nI didn’t believe it either at first…\r\n\r\nUntil i saw it works in action >> https://ext-opp.com/Coinz\r\n\r\nYou see, Bitc0in and the entire Crypt0 market is about to go through the rough… \r\n\r\nSome smart people will get in now, and make massive gains,\r\nAnd some will stand and watch people make money… \r\n\r\nUltimately, I want you to get in now… \r\n\r\nBut here is the issue… \r\n\r\nIf you put any kind of money in it now, it would be a huge risk. \r\nEspecially if you put in money that you can’t afford to lose… \r\n\r\nBut what my friend, Seyi, did is insane… \r\n\r\nHe created the world’s first AI app that literally generates Bitc0in and ETH out of thin air… \r\n\r\nAll you need to do is just connect your wallet, and that’s it… \r\n\r\n- You don’t need to analyze the market \r\n- You don’t need mining equipments \r\n- You don’t need to trade \r\n- And you don’t need to invest even a penny\r\n\r\nTo create your account with Coinz, and start receiving daily Bitc0in & etheruem for 100% free click here >> https://ext-opp.com/Coinz\r\n\r\nBut don’t delay, because the price of Coinz will double very soon… \r\n\r\nCheers',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(178,163,'Extended Opportunity','31729@gmail.com','','185.125.50.5','2024-04-10 22:34:42','2024-04-10 22:34:42','After Generating Millions Online, I\'ve Created A Foolproof Money Making System, & For a Limited Time You Get It For FREE... https://ext-opp.com/RPM',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(179,163,'Extended Opportunity','89510@gmail.com','','185.125.50.5','2024-04-14 18:27:05','2024-04-14 18:27:05','ChatGPT powered Autoresponder with Free SMTP at Unbeatable 1-Time Price! https://ext-opp.com/NewsMailer',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(180,1,'hdfilmcehennemi','marcela.anchimallen@gmail.com','https://hdfilmcehennemi.one/','51.159.37.33','2024-04-16 00:56:50','2024-04-16 00:56:50','Fullhdfilmizlesene ile en yeni vizyon filmler Full HD ve ücretsiz film sizlerle. Orijinal film arşivimizle en kaliteli film izle fırsatı sunuyoruz. Cesar Biffer',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(181,1,'hdfilmcehennemi','poloherrera26@hotmail.com','https://hdfilmcehennemi.one/','51.159.37.33','2024-04-16 06:48:19','2024-04-16 06:48:19','Fullhdfilmizlesene ile en yeni vizyon filmler Full HD ve ücretsiz film sizlerle. Orijinal film arşivimizle en kaliteli film izle fırsatı sunuyoruz. Dominic Larmon',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(182,163,'Extended Opportunity','50310@gmail.com','','185.125.50.5','2024-04-19 01:05:24','2024-04-19 01:05:24','An Ultimate Web-Hosting Solution For Business Owners https://ext-opp.com/HostsMaster',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(183,163,'Extended Opportunity','14279@gmail.com','','185.125.50.5','2024-04-19 01:05:40','2024-04-19 01:05:40','An Ultimate Web-Hosting Solution For Business Owners https://ext-opp.com/HostsMaster',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(184,163,'Extended Opportunity','89462@gmail.com','','185.125.50.5','2024-04-22 19:40:03','2024-04-22 19:40:03','MobiApp AI - True Android & iOS Mobile Apps Builder (Zero Coding Required) https://ext-opp.com/MobiAppAI',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(185,163,'Extended Opportunity','82781@gmail.com','','185.125.50.5','2024-04-27 17:58:47','2024-04-27 17:58:47','Word\'s First NLP & ML Based Email, Voice & Video Marketing Autoresponder Thats Boost Email Delivery, Click & Open Rates Instantly https://ext-opp.com/VidMailsAI',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(186,163,'Extended Opportunity','93862@gmail.com','','185.125.50.5','2024-05-02 21:27:25','2024-05-02 21:27:25','Are you still using Calendly to schedule your calls and meetings? \r\n\r\nIf your answer is yes, then you are actually hurting your business not helping it… \r\n\r\nCalendly is limited, doesn’t unlock the full potential of your business… \r\n\r\nAnd to make matters worse, they charge you monthly… \r\n\r\nWhat a joke… \r\n\r\nBut you don’t have to worry, because my good friend Kundan is about to change the entire market … \r\n\r\nYou see, he just launched his newest creation AI Calenderfly… \r\n\r\nThe world’s first appointment-setting app that is fully powered by AI… \r\n\r\nIt will do all of the heavy lifting for you on complete autopilot… \r\n\r\nAI meeting scheduling \r\nAI reminders\r\nAI tracking \r\nAnd much much more\r\n\r\nYou can even accept payments live, and collect leads… \r\n\r\nBut it gets even better… \r\n\r\nYou don’t have to pay a penny in monthly fees… \r\n\r\nClick here to watch AI Calenderfly in action and secure your copy at the lowest price possible… https://ext-opp.com/AICalendarfly',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(187,1,'bitcoin','aoga54@hotmail.com','https://hdfilmcehennemi.one/','51.159.37.34','2024-05-30 06:41:04','2024-05-30 06:41:04','Filmizlesene ile hızlı film izleme fırsatını yakala, en yeni ve iyi filmleri Full HD 1080p kalitesiyle online ve bedava izle. Dylan Spayer',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(188,1,'bitcoin','andruherrera@gmail.com','https://hdfilmcehennemi.one/','51.159.37.33','2024-06-08 16:18:22','2024-06-08 16:18:22','Filmizlesene ile hızlı film izleme fırsatını yakala, en yeni ve iyi filmleri Full HD 1080p kalitesiyle online ve bedava izle. Albert Paskow',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(189,1,'ifsa videolari','cristianvilches9@hotmail.com','https://www.filmmodu16.com/','51.159.37.51','2024-06-12 14:12:18','2024-06-12 14:12:18','Howdy, I think your web site could be having browser compatibility problems. Whenever I take a look at your blog in Safari, it looks fine however, when opening in Internet Explorer, it has some overlapping issues. I just wanted to provide you with a quick heads up! Other than that, fantastic website! Aldo Mullen',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(190,1,'ifsa videolari','pamelapeace@hotmail.com','https://www.filmmodu16.com/','51.159.37.21','2024-06-12 19:38:31','2024-06-12 19:38:31','Thank you for sharing excellent informations. Your website is so cool. I am impressed by the details that you have on this website. It reveals how nicely you understand this subject. Bookmarked this web page, will come back for extra articles. You, my friend, ROCK! I found just the information I already searched all over the place and just could not come across. What a great website. Gustavo Tataris',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(191,1,'russian bet','erickmian@hotmail.com','https://www.filmmodu16.com/','51.159.37.51','2024-06-13 14:38:47','2024-06-13 14:38:47','I want to voice my love for your kind-heartedness in support of people that really need help with this one theme. Your special dedication to passing the solution all over ended up being extremely advantageous and has in most cases allowed regular people like me to attain their targets. The useful hints and tips indicates so much to me and further more to my office colleagues. Many thanks; from all of us. Dean Prophit',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(192,156,'what is elavil fct 10mg','','https://elavil365y.com','178.159.37.158','2024-12-31 18:03:25','2024-12-31 18:03:25','<strong>what is elavil fct 10mg</strong>\n\nwhat is elavil fct 10mg',0,'0','PHP/5.3.68','trackback',0,0),(193,1,'hd film','tricia_cava@hotmail.com','https://hdfilmsitesi.eu/','51.159.37.34','2025-03-21 14:38:36','2025-03-21 14:38:36','You\'re so interesting! I do not think I\'ve truly read a single thing like that before. So wonderful to discover another person with a few original thoughts on this subject matter. Seriously.. thank you for starting this up. This website is one thing that is required on the internet, someone with a bit of originality. Aldo Panila',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(194,1,'hd','camilo_20_@hotmail.com','https://hdfilmsitesi.eu/','51.159.37.21','2025-03-21 18:55:54','2025-03-21 18:55:54','I was curious if you ever thought of changing the structure of your site? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot of text for only having one or 2 pictures. Maybe you could space it out better? Arlie Poling',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(195,1,'hd film','mmezatco@gmail.com','https://hdfilmsitesi.cyou/','51.159.37.31','2025-03-22 12:22:21','2025-03-22 12:22:21','I am also writing to make you know what a helpful encounter my princess undergone visiting your web page. She came to understand too many things, including what it is like to possess a wonderful teaching nature to get men and women really easily know specific specialized things. You undoubtedly exceeded my desires. Thank you for showing these productive, safe, educational and in addition easy tips on this topic to Mary. Rueben Lalande',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(196,1,'hdfilmcehennemi','franciaagurto@derco.cl','https://hdfilmsitesi.cyou/','51.159.37.34','2025-03-22 16:24:04','2025-03-22 16:24:04','Very good point which I had quickly initiate efficient initiatives without wireless web services. Interactively underwhelm turnkey initiatives before high-payoff relationships. Holisticly restore superior interfaces before flexible technology. Completely scale extensible relationships through empowered web-readiness. Sydney Cerminaro',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(197,1,'Ada3557','Ada3557@gmail.com','','221.227.68.151','2025-04-15 14:38:53','2025-04-15 14:38:53','<a href=\"http://terios2.ru/forums/index.php?autocom=gallery&req=si&img=4546\" rel=\"nofollow ugc\">http://terios2.ru/forums/index.php?autocom=gallery&req=si&img=4546</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(198,1,'Robert1794','Robert1794@gmail.com','','49.156.47.110','2025-04-22 06:30:51','2025-04-22 06:30:51','Very good <a href=\"https://is.gd/tpjNyL\" rel=\"nofollow ugc\">https://is.gd/tpjNyL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(199,163,'Londyn2853','Londyn2853@gmail.com','','49.156.47.110','2025-04-22 06:31:06','2025-04-22 06:31:06','Good <a href=\"https://is.gd/tpjNyL\" rel=\"nofollow ugc\">https://is.gd/tpjNyL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(200,1,'hdfilmcehennemi','kattytta_15@hotmail.com','https://hdfilmcehennemi1.space/','51.159.37.33','2025-04-22 12:48:29','2025-04-22 12:48:29','I think the problem for me is the energistically benchmark focused growth strategies via superior supply chains. Compellingly reintermediate mission-critical potentialities whereas cross functional scenarios. Phosfluorescently re-engineer distributed processes without standardized supply chains. Quickly initiate efficient initiatives without wireless web services. Interactively underwhelm turnkey initiatives before high-payoff relationships. Elbert Vautier',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(201,1,'Abram3602','Abram3602@gmail.com','','49.13.51.244','2025-04-23 01:44:58','2025-04-23 01:44:58','Very good <a href=\"https://is.gd/tpjNyL\" rel=\"nofollow ugc\">https://is.gd/tpjNyL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(202,1,'Ingrid4386','Ingrid4386@gmail.com','','223.205.17.20','2025-04-23 06:00:34','2025-04-23 06:00:34','Very good <a href=\"https://is.gd/tpjNyL\" rel=\"nofollow ugc\">https://is.gd/tpjNyL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(203,1,'Levi1002','Levi1002@gmail.com','','91.210.239.9','2025-04-23 13:58:34','2025-04-23 13:58:34','Good <a href=\"https://shorturl.at/2breu\" rel=\"nofollow ugc\">https://shorturl.at/2breu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(204,161,'Wayne4541','Wayne4541@gmail.com','','91.210.239.9','2025-04-23 13:58:50','2025-04-23 13:58:50','Good <a href=\"https://shorturl.at/2breu\" rel=\"nofollow ugc\">https://shorturl.at/2breu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(205,1,'Lucia3334','Lucia3334@gmail.com','','177.162.81.14','2025-04-23 17:50:29','2025-04-23 17:50:29','Very good <a href=\"https://shorturl.at/2breu\" rel=\"nofollow ugc\">https://shorturl.at/2breu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(206,163,'Veronica3990','Veronica3990@gmail.com','','177.162.81.14','2025-04-23 17:50:44','2025-04-23 17:50:44','Very good <a href=\"https://shorturl.at/2breu\" rel=\"nofollow ugc\">https://shorturl.at/2breu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(207,1,'Marcel1938','Marcel1938@gmail.com','','188.71.245.146','2025-04-25 02:02:10','2025-04-25 02:02:10','Good <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(208,163,'Beth2330','Beth2330@gmail.com','','188.71.245.146','2025-04-25 02:02:26','2025-04-25 02:02:26','Very good <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(209,1,'Leona4917','Leona4917@gmail.com','','189.157.193.235','2025-04-25 18:52:17','2025-04-25 18:52:17','Very good <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(210,1,'Junior364','Junior364@gmail.com','','86.97.156.177','2025-04-25 22:52:49','2025-04-25 22:52:49','Awesome <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(211,162,'Maggie2814','Maggie2814@gmail.com','','86.97.156.177','2025-04-25 22:53:04','2025-04-25 22:53:04','Awesome <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(212,1,'Bobby2644','Bobby2644@gmail.com','','166.199.100.89','2025-04-25 23:21:30','2025-04-25 23:21:30','Awesome <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(213,161,'Curtis3773','Curtis3773@gmail.com','','166.199.100.89','2025-04-25 23:21:47','2025-04-25 23:21:47','Awesome <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(214,1,'Bennett3486','Bennett3486@gmail.com','','190.145.240.9','2025-04-26 03:22:08','2025-04-26 03:22:08','Very good <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(215,158,'Randall1844','Randall1844@gmail.com','','190.145.240.9','2025-04-26 03:22:25','2025-04-26 03:22:25','Very good <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(216,162,'Jean1447','Jean1447@gmail.com','','190.145.240.9','2025-04-26 03:22:41','2025-04-26 03:22:41','Good <a href=\"https://lc.cx/xjXBQT\" rel=\"nofollow ugc\">https://lc.cx/xjXBQT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(217,1,'Jason2121','Jason2121@gmail.com','','39.58.180.176','2025-04-26 11:07:06','2025-04-26 11:07:06','Very good <a href=\"https://dub.sh/LAqZ3qv\" rel=\"nofollow ugc\">https://dub.sh/LAqZ3qv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(218,159,'Hanna1637','Hanna1637@gmail.com','','39.58.180.176','2025-04-26 11:07:22','2025-04-26 11:07:22','Awesome <a href=\"https://dub.sh/LAqZ3qv\" rel=\"nofollow ugc\">https://dub.sh/LAqZ3qv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(219,163,'Mike537','Mike537@gmail.com','','39.58.180.176','2025-04-26 11:07:39','2025-04-26 11:07:39','Awesome <a href=\"https://dub.sh/LAqZ3qv\" rel=\"nofollow ugc\">https://dub.sh/LAqZ3qv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(220,1,'Asher4652','Asher4652@gmail.com','','182.53.21.122','2025-04-27 05:47:32','2025-04-27 05:47:32','Very good <a href=\"https://t.ly/tndaA\" rel=\"nofollow ugc\">https://t.ly/tndaA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(221,1,'Kendra4677','Kendra4677@gmail.com','','191.107.207.90','2025-04-27 18:17:47','2025-04-27 18:17:47','Very good <a href=\"https://urlr.me/zH3wE5\" rel=\"nofollow ugc\">https://urlr.me/zH3wE5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(222,1,'Hugo4672','Hugo4672@gmail.com','','173.73.181.133','2025-04-27 18:50:16','2025-04-27 18:50:16','Awesome <a href=\"https://urlr.me/zH3wE5\" rel=\"nofollow ugc\">https://urlr.me/zH3wE5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(223,1,'Scarlett767','Scarlett767@gmail.com','','79.207.125.86','2025-04-27 23:19:18','2025-04-27 23:19:18','Awesome <a href=\"https://rb.gy/4gq2o4\" rel=\"nofollow ugc\">https://rb.gy/4gq2o4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(224,157,'Charlotte78','Charlotte78@gmail.com','','79.207.125.86','2025-04-27 23:19:36','2025-04-27 23:19:36','Good <a href=\"https://rb.gy/4gq2o4\" rel=\"nofollow ugc\">https://rb.gy/4gq2o4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(225,159,'Sharon2089','Sharon2089@gmail.com','','79.207.125.86','2025-04-27 23:19:54','2025-04-27 23:19:54','Good <a href=\"https://rb.gy/4gq2o4\" rel=\"nofollow ugc\">https://rb.gy/4gq2o4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(226,161,'Carson4368','Carson4368@gmail.com','','79.207.125.86','2025-04-27 23:20:09','2025-04-27 23:20:09','Awesome <a href=\"https://rb.gy/4gq2o4\" rel=\"nofollow ugc\">https://rb.gy/4gq2o4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(227,163,'Adria3861','Adria3861@gmail.com','','79.207.125.86','2025-04-27 23:20:28','2025-04-27 23:20:28','Awesome <a href=\"https://rb.gy/4gq2o4\" rel=\"nofollow ugc\">https://rb.gy/4gq2o4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(228,1,'Rex4829','Rex4829@gmail.com','','201.220.163.53','2025-04-28 12:36:37','2025-04-28 12:36:37','Good <a href=\"https://rb.gy/4gq2o4\" rel=\"nofollow ugc\">https://rb.gy/4gq2o4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(229,1,'Mason4773','Mason4773@gmail.com','','24.41.230.210','2025-04-28 16:27:31','2025-04-28 16:27:31','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(230,162,'Ellie2239','Ellie2239@gmail.com','','24.41.230.210','2025-04-28 16:27:48','2025-04-28 16:27:48','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(231,1,'Josie1941','Josie1941@gmail.com','','45.112.145.75','2025-04-28 18:56:11','2025-04-28 18:56:11','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(232,161,'Francesco871','Francesco871@gmail.com','','45.112.145.75','2025-04-28 18:56:29','2025-04-28 18:56:29','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(233,1,'Sophia514','Sophia514@gmail.com','','179.217.32.58','2025-04-28 19:04:12','2025-04-28 19:04:12','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(234,157,'Asher4111','Asher4111@gmail.com','','179.217.32.58','2025-04-28 19:04:30','2025-04-28 19:04:30','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(235,159,'Jenny558','Jenny558@gmail.com','','179.217.32.58','2025-04-28 19:04:51','2025-04-28 19:04:51','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(236,1,'Kyle2225','Kyle2225@gmail.com','','112.202.113.204','2025-04-29 07:27:14','2025-04-29 07:27:14','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(237,1,'Leslie1214','Leslie1214@gmail.com','','27.34.110.142','2025-04-29 17:12:32','2025-04-29 17:12:32','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(238,1,'Nellie3090','Nellie3090@gmail.com','','180.241.28.243','2025-04-29 19:56:17','2025-04-29 19:56:17','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(239,159,'Valerie2215','Valerie2215@gmail.com','','180.241.28.243','2025-04-29 19:56:40','2025-04-29 19:56:40','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(240,156,'Kelsey4399','Kelsey4399@gmail.com','','123.20.49.92','2025-04-30 01:05:26','2025-04-30 01:05:26','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(241,1,'Serena4195','Serena4195@gmail.com','','80.190.82.58','2025-04-30 01:24:23','2025-04-30 01:24:23','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(242,1,'Alex877','Alex877@gmail.com','','50.92.99.81','2025-04-30 01:55:17','2025-04-30 01:55:17','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(243,160,'Rodney3068','Rodney3068@gmail.com','','50.92.99.81','2025-04-30 01:55:33','2025-04-30 01:55:33','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(244,1,'Bobby1448','Bobby1448@gmail.com','','182.253.183.3','2025-04-30 02:23:10','2025-04-30 02:23:10','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(245,162,'Tyler3644','Tyler3644@gmail.com','','182.253.183.3','2025-04-30 02:23:25','2025-04-30 02:23:25','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(246,1,'Frida4701','Frida4701@gmail.com','','187.190.186.73','2025-04-30 05:25:36','2025-04-30 05:25:36','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(247,1,'Grant4635','Grant4635@gmail.com','','14.235.31.172','2025-04-30 07:12:45','2025-04-30 07:12:45','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(248,162,'Terry2813','Terry2813@gmail.com','','14.235.31.172','2025-04-30 07:13:02','2025-04-30 07:13:02','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(249,1,'Colby2825','Colby2825@gmail.com','','47.219.7.32','2025-04-30 07:49:20','2025-04-30 07:49:20','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(250,1,'Gabrielle3223','Gabrielle3223@gmail.com','','58.11.93.228','2025-04-30 09:18:06','2025-04-30 09:18:06','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(251,1,'Bernard3582','Bernard3582@gmail.com','','49.43.3.116','2025-04-30 11:07:02','2025-04-30 11:07:02','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(252,161,'Courtney1855','Courtney1855@gmail.com','','49.43.3.116','2025-04-30 11:07:17','2025-04-30 11:07:17','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(253,1,'Carter2172','Carter2172@gmail.com','','182.188.236.71','2025-04-30 12:01:26','2025-04-30 12:01:26','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(254,156,'Roberto1958','Roberto1958@gmail.com','','49.70.172.185','2025-04-30 15:32:50','2025-04-30 15:32:50','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(255,156,'Dale1283','Dale1283@gmail.com','','38.51.29.65','2025-04-30 18:47:03','2025-04-30 18:47:03','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(256,159,'Nolan4185','Nolan4185@gmail.com','','38.51.29.65','2025-04-30 18:47:25','2025-04-30 18:47:25','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(257,162,'Agnes3608','Agnes3608@gmail.com','','38.51.29.65','2025-04-30 18:47:44','2025-04-30 18:47:44','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(258,1,'Aspen4090','Aspen4090@gmail.com','','131.239.11.198','2025-04-30 18:51:06','2025-04-30 18:51:06','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(259,160,'Felix2846','Felix2846@gmail.com','','131.239.11.198','2025-04-30 18:51:21','2025-04-30 18:51:21','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(260,1,'Clayton1145','Clayton1145@gmail.com','','115.77.162.153','2025-04-30 23:31:42','2025-04-30 23:31:42','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(261,158,'Gwen83','Gwen83@gmail.com','','115.77.162.153','2025-04-30 23:31:57','2025-04-30 23:31:57','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(262,163,'Steven3310','Steven3310@gmail.com','','115.77.162.153','2025-04-30 23:32:15','2025-04-30 23:32:15','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(263,1,'Ivy368','Ivy368@gmail.com','','181.51.91.27','2025-05-01 00:57:12','2025-05-01 00:57:12','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(264,161,'Tyler129','Tyler129@gmail.com','','181.51.91.27','2025-05-01 00:57:28','2025-05-01 00:57:28','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(265,1,'Brendan3500','Brendan3500@gmail.com','','120.28.189.146','2025-05-01 05:05:54','2025-05-01 05:05:54','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(266,1,'Jeremiah903','Jeremiah903@gmail.com','','190.110.44.83','2025-05-01 06:29:29','2025-05-01 06:29:29','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(267,1,'Kathleen4179','Kathleen4179@gmail.com','','103.217.156.132','2025-05-01 07:43:23','2025-05-01 07:43:23','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(268,163,'Bernard4476','Bernard4476@gmail.com','','103.217.156.132','2025-05-01 07:43:52','2025-05-01 07:43:52','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(269,1,'Sebastian4930','Sebastian4930@gmail.com','','194.87.221.182','2025-05-01 08:46:59','2025-05-01 08:46:59','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(270,1,'Edmund2707','Edmund2707@gmail.com','','49.37.33.111','2025-05-01 12:13:01','2025-05-01 12:13:01','Good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(271,157,'Robin1715','Robin1715@gmail.com','','49.37.33.111','2025-05-01 12:13:20','2025-05-01 12:13:20','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(272,161,'Desirae2618','Desirae2618@gmail.com','','49.37.33.111','2025-05-01 12:13:35','2025-05-01 12:13:35','Very good <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(273,1,'Renee1000','Renee1000@gmail.com','','38.147.152.148','2025-05-01 14:21:59','2025-05-01 14:21:59','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(274,163,'Rhys165','Rhys165@gmail.com','','38.147.152.148','2025-05-01 14:22:15','2025-05-01 14:22:15','Awesome <a href=\"https://is.gd/N1ikS2\" rel=\"nofollow ugc\">https://is.gd/N1ikS2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(275,1,'filmmakinesi','marceloxunxo360@gmail.com','https://filmmakinesi.asia/','51.159.37.33','2025-05-15 16:02:34','2025-05-15 16:02:34','I have thought for years, religion and theology departments are part of a relic when \"The Church\" was attempting to use academic to combat newer enlightenment thinking. Today it seems to me that Religion and Theology departments of little to no value. All the important content that is taught in them is better rolled into history departments. And the Supernaturalistic aspects that are dealt with are better handled by priests and ministers. Theology and Religion departments are simply no longer of value. History departments is where the topic should be taught and studied. Cheers! Morton Garett',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(276,1,'film makinesi','mate1028@hotmail.com','https://filmmakinesi.mobi/','51.159.37.33','2025-05-15 23:59:52','2025-05-15 23:59:52','Thank you for sharing excellent informations. Your website is very cool. I am impressed by the details that you have on this website. It reveals how nicely you understand this subject. Bookmarked this web page, will come back for extra articles. You, my friend, ROCK! I found simply the info I already searched everywhere and simply could not come across. What a perfect site. Maximo Grenier',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(277,1,'filmmakinesi','gnidar_linda@hotmail.com','https://filmmakinesi.autos/','51.159.37.31','2025-05-16 04:35:56','2025-05-16 04:35:56','Chief G August 28, 2012 Thanks Bernie!!! 17.5 years of military service and that had to be one of the most successful training programs; covering some of the most life changing and challenging subjects that mankind goes thru. God bless you and all your loved ones. If you do come back to the area let me know. I will pay for a ticket to see your comedy/ training. Armand Mackaman',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(278,1,'filmakinesi','loreore@gmail.com','https://filmmakinesi7.cfd/','51.159.37.31','2025-05-16 16:23:50','2025-05-16 16:23:50','Later according to methodology, supplements and sleeves conclude not inflation the penis. After all, he said, the penis easar.minstyrke.com consists of paired corpora cavernosa and a unrelated corpus spongiosum, the sphere of which are firm genetically. Really surgical enhancement fails. Regardless, there is anecdote ditch agreement easar.minstyrke.com dangled already our eyes done the completely consummate unruffled so Italian study. When tested, the rivet method of penis enhancement, the authors gravamen, did reinforcement in growth. Dudley Sebo',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(279,1,'filmakinesi','janajofre@hotmail.com','https://filmmakinesi.store/','51.159.37.21','2025-05-17 23:10:14','2025-05-17 23:10:14','I was curious if you ever thought of changing the structure of your site? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot of text for only having 1 or two pictures. Maybe you could space it out better? Phil Sugimoto',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(280,1,'Jacqueline4764','Jacqueline4764@gmail.com','','136.158.7.164','2025-05-23 17:53:10','2025-05-23 17:53:10','Good partner program <a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(281,1,'Allen2057','Allen2057@gmail.com','','188.191.165.159','2025-05-23 19:31:18','2025-05-23 19:31:18','Good partner program <a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(282,1,'Diego1647','Diego1647@gmail.com','','116.98.175.136','2025-05-23 20:30:51','2025-05-23 20:30:51','Good partner program <a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(283,1,'Alonzo4339','Alonzo4339@gmail.com','','136.158.37.244','2025-05-23 21:31:41','2025-05-23 21:31:41','Awesome <a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(284,163,'Kirk298','Kirk298@gmail.com','','136.158.37.244','2025-05-23 21:31:57','2025-05-23 21:31:57','Cool partnership <a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(285,1,'Irma4815','Irma4815@gmail.com','','203.95.196.162','2025-05-24 00:56:45','2025-05-24 00:56:45','Awesome <a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(286,161,'Jay4631','Jay4631@gmail.com','','203.95.196.162','2025-05-24 00:57:00','2025-05-24 00:57:00','Good partner program <a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(287,1,'Brady4187','Brady4187@gmail.com','','180.75.242.60','2025-05-24 01:27:36','2025-05-24 01:27:36','Awesome <a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(288,159,'Charlie540','Charlie540@gmail.com','','180.75.242.60','2025-05-24 01:28:05','2025-05-24 01:28:05','Very good <a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(289,162,'Kiley4289','Kiley4289@gmail.com','','180.75.242.60','2025-05-24 01:28:36','2025-05-24 01:28:36','Best partnership <a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(290,1,'Beckett2755','Beckett2755@gmail.com','','111.229.207.254','2025-05-24 03:45:14','2025-05-24 03:45:14','Awesome <a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(291,1,'Amira1198','Amira1198@gmail.com','','113.252.196.69','2025-05-24 06:28:28','2025-05-24 06:28:28','Best partnership <a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(292,163,'Ryder4945','Ryder4945@gmail.com','','113.252.196.69','2025-05-24 06:28:43','2025-05-24 06:28:43','Very good <a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(293,1,'Weston3340','Weston3340@gmail.com','','59.2.216.233','2025-05-24 06:46:19','2025-05-24 06:46:19','Top <a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(294,163,'Marvin2493','Marvin2493@gmail.com','','59.2.216.233','2025-05-24 06:46:34','2025-05-24 06:46:34','Good <a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(295,1,'Jordyn3529','Jordyn3529@gmail.com','','50.114.33.244','2025-05-24 09:52:18','2025-05-24 09:52:18','Best partnership <a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(296,160,'Russell743','Russell743@gmail.com','','50.114.33.244','2025-05-24 09:52:33','2025-05-24 09:52:33','Very good <a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(297,1,'Gloria150','Gloria150@gmail.com','','125.164.15.126','2025-05-24 13:38:37','2025-05-24 13:38:37','Very good <a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(298,157,'Lorenzo4164','Lorenzo4164@gmail.com','','125.164.15.126','2025-05-24 13:38:58','2025-05-24 13:38:58','Very good <a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(299,160,'Micah2876','Micah2876@gmail.com','','125.164.15.126','2025-05-24 13:39:20','2025-05-24 13:39:20','Good <a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(300,162,'Brent2104','Brent2104@gmail.com','','125.164.15.126','2025-05-24 13:39:40','2025-05-24 13:39:40','Good <a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(301,1,'Laila2377','Laila2377@gmail.com','','123.21.2.54','2025-05-24 20:28:36','2025-05-24 20:28:36','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(302,156,'Luke1601','Luke1601@gmail.com','','123.21.2.54','2025-05-24 20:29:04','2025-05-24 20:29:04','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(303,157,'Kimberly4484','Kimberly4484@gmail.com','','123.21.2.54','2025-05-24 20:29:38','2025-05-24 20:29:38','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(304,159,'Flora1099','Flora1099@gmail.com','','123.21.2.54','2025-05-24 20:30:05','2025-05-24 20:30:05','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(305,160,'Sofia368','Sofia368@gmail.com','','123.21.2.54','2025-05-24 20:30:32','2025-05-24 20:30:32','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(306,161,'Simon424','Simon424@gmail.com','','123.21.2.54','2025-05-24 20:30:59','2025-05-24 20:30:59','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(307,163,'Eileen3020','Eileen3020@gmail.com','','123.21.2.54','2025-05-24 20:31:26','2025-05-24 20:31:26','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(308,1,'Gavin793','Gavin793@gmail.com','','27.79.234.58','2025-05-24 22:49:10','2025-05-24 22:49:10','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(309,156,'Josiah4265','Josiah4265@gmail.com','','27.79.234.58','2025-05-24 22:49:34','2025-05-24 22:49:34','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(310,157,'Aurora910','Aurora910@gmail.com','','27.79.234.58','2025-05-24 22:49:59','2025-05-24 22:49:59','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(311,158,'Lynda1030','Lynda1030@gmail.com','','27.79.234.58','2025-05-24 22:50:22','2025-05-24 22:50:22','<a href=\"https://shorturl.fm/6539m\" rel=\"nofollow ugc\">https://shorturl.fm/6539m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(312,159,'Haley3914','Haley3914@gmail.com','','27.79.234.58','2025-05-24 22:50:46','2025-05-24 22:50:46','<a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(313,160,'Eli1602','Eli1602@gmail.com','','27.79.234.58','2025-05-24 22:51:09','2025-05-24 22:51:09','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(314,161,'Mallory3643','Mallory3643@gmail.com','','27.79.234.58','2025-05-24 22:51:33','2025-05-24 22:51:33','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(315,162,'Linda159','Linda159@gmail.com','','27.79.234.58','2025-05-24 22:51:56','2025-05-24 22:51:56','<a href=\"https://shorturl.fm/6539m\" rel=\"nofollow ugc\">https://shorturl.fm/6539m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(316,163,'Aaron3871','Aaron3871@gmail.com','','27.79.234.58','2025-05-24 22:52:21','2025-05-24 22:52:21','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(317,1,'Trevor1320','Trevor1320@gmail.com','','46.101.104.251','2025-05-25 03:02:22','2025-05-25 03:02:22','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(318,156,'Rhys2034','Rhys2034@gmail.com','','46.101.104.251','2025-05-25 03:02:49','2025-05-25 03:02:49','<a href=\"https://shorturl.fm/6539m\" rel=\"nofollow ugc\">https://shorturl.fm/6539m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(319,157,'Clinton4405','Clinton4405@gmail.com','','46.101.104.251','2025-05-25 03:03:17','2025-05-25 03:03:17','<a href=\"https://shorturl.fm/6539m\" rel=\"nofollow ugc\">https://shorturl.fm/6539m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(320,158,'Marisa1506','Marisa1506@gmail.com','','46.101.104.251','2025-05-25 03:03:43','2025-05-25 03:03:43','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(321,159,'Isaac2850','Isaac2850@gmail.com','','46.101.104.251','2025-05-25 03:04:10','2025-05-25 03:04:10','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(322,160,'Eli1066','Eli1066@gmail.com','','46.101.104.251','2025-05-25 03:04:36','2025-05-25 03:04:36','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(323,161,'Effie436','Effie436@gmail.com','','46.101.104.251','2025-05-25 03:05:02','2025-05-25 03:05:02','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(324,162,'Hugh262','Hugh262@gmail.com','','46.101.104.251','2025-05-25 03:05:27','2025-05-25 03:05:27','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(325,163,'Maximilian2407','Maximilian2407@gmail.com','','46.101.104.251','2025-05-25 03:05:50','2025-05-25 03:05:50','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(326,1,'Annabelle1141','Annabelle1141@gmail.com','','187.147.116.203','2025-05-25 03:10:05','2025-05-25 03:10:05','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(327,156,'Camille202','Camille202@gmail.com','','187.147.116.203','2025-05-25 03:10:33','2025-05-25 03:10:33','<a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(328,157,'Ally541','Ally541@gmail.com','','187.147.116.203','2025-05-25 03:11:02','2025-05-25 03:11:02','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(329,158,'Earl4952','Earl4952@gmail.com','','187.147.116.203','2025-05-25 03:11:33','2025-05-25 03:11:33','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(330,159,'Desirae3526','Desirae3526@gmail.com','','187.147.116.203','2025-05-25 03:12:02','2025-05-25 03:12:02','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(331,160,'Ignacio3067','Ignacio3067@gmail.com','','187.147.116.203','2025-05-25 03:12:32','2025-05-25 03:12:32','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(332,161,'Adrienne4848','Adrienne4848@gmail.com','','187.147.116.203','2025-05-25 03:13:03','2025-05-25 03:13:03','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(333,162,'Alana1828','Alana1828@gmail.com','','187.147.116.203','2025-05-25 03:13:32','2025-05-25 03:13:32','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(334,163,'Bridget1911','Bridget1911@gmail.com','','187.147.116.203','2025-05-25 03:14:00','2025-05-25 03:14:00','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(335,1,'Thomas2174','Thomas2174@gmail.com','','103.212.116.25','2025-05-25 04:21:53','2025-05-25 04:21:53','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(336,156,'Alex3385','Alex3385@gmail.com','','103.212.116.25','2025-05-25 04:22:21','2025-05-25 04:22:21','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(337,157,'Jill198','Jill198@gmail.com','','103.212.116.25','2025-05-25 04:22:49','2025-05-25 04:22:49','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(338,158,'Zane4641','Zane4641@gmail.com','','103.212.116.25','2025-05-25 04:23:17','2025-05-25 04:23:17','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(339,159,'Cliff1395','Cliff1395@gmail.com','','103.212.116.25','2025-05-25 04:23:44','2025-05-25 04:23:44','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(340,160,'Harmony311','Harmony311@gmail.com','','103.212.116.25','2025-05-25 04:24:13','2025-05-25 04:24:13','<a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(341,161,'Landon998','Landon998@gmail.com','','103.212.116.25','2025-05-25 04:24:40','2025-05-25 04:24:40','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(342,162,'Arthur2921','Arthur2921@gmail.com','','103.212.116.25','2025-05-25 04:25:07','2025-05-25 04:25:07','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(343,163,'Jill3911','Jill3911@gmail.com','','103.212.116.25','2025-05-25 04:25:36','2025-05-25 04:25:36','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(344,1,'Iris1638','Iris1638@gmail.com','','123.193.176.126','2025-05-25 22:02:09','2025-05-25 22:02:09','<a href=\"https://shorturl.fm/6539m\" rel=\"nofollow ugc\">https://shorturl.fm/6539m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(345,156,'Anna627','Anna627@gmail.com','','123.193.176.126','2025-05-25 22:02:39','2025-05-25 22:02:39','<a href=\"https://shorturl.fm/a0B2m\" rel=\"nofollow ugc\">https://shorturl.fm/a0B2m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(346,157,'Joshua1831','Joshua1831@gmail.com','','123.193.176.126','2025-05-25 22:03:08','2025-05-25 22:03:08','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(347,158,'Alexis4731','Alexis4731@gmail.com','','123.193.176.126','2025-05-25 22:03:37','2025-05-25 22:03:37','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(348,159,'Adalyn650','Adalyn650@gmail.com','','123.193.176.126','2025-05-25 22:04:04','2025-05-25 22:04:04','<a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(349,160,'Joshua3891','Joshua3891@gmail.com','','123.193.176.126','2025-05-25 22:04:31','2025-05-25 22:04:31','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(350,161,'Bianca1897','Bianca1897@gmail.com','','123.193.176.126','2025-05-25 22:04:59','2025-05-25 22:04:59','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(351,162,'Ivy213','Ivy213@gmail.com','','123.193.176.126','2025-05-25 22:05:24','2025-05-25 22:05:24','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(352,163,'Julie4382','Julie4382@gmail.com','','123.193.176.126','2025-05-25 22:05:49','2025-05-25 22:05:49','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(353,1,'Moses2607','Moses2607@gmail.com','','171.6.106.92','2025-05-26 00:54:51','2025-05-26 00:54:51','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(354,156,'Theodore3367','Theodore3367@gmail.com','','171.6.106.92','2025-05-26 00:55:18','2025-05-26 00:55:18','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(355,157,'Clinton1172','Clinton1172@gmail.com','','171.6.106.92','2025-05-26 00:55:43','2025-05-26 00:55:43','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(356,158,'Genevieve3902','Genevieve3902@gmail.com','','171.6.106.92','2025-05-26 00:56:10','2025-05-26 00:56:10','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(357,159,'Hendrix795','Hendrix795@gmail.com','','171.6.106.92','2025-05-26 00:56:38','2025-05-26 00:56:38','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(358,160,'Jacqueline3839','Jacqueline3839@gmail.com','','171.6.106.92','2025-05-26 00:57:06','2025-05-26 00:57:06','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(359,161,'Carlos3162','Carlos3162@gmail.com','','171.6.106.92','2025-05-26 00:57:33','2025-05-26 00:57:33','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(360,162,'Lindsey1976','Lindsey1976@gmail.com','','171.6.106.92','2025-05-26 00:57:59','2025-05-26 00:57:59','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(361,163,'Savannah2965','Savannah2965@gmail.com','','171.6.106.92','2025-05-26 00:58:27','2025-05-26 00:58:27','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(362,1,'Teresa4413','Teresa4413@gmail.com','','103.214.217.136','2025-05-26 04:44:23','2025-05-26 04:44:23','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(363,156,'Harvey864','Harvey864@gmail.com','','103.214.217.136','2025-05-26 04:44:54','2025-05-26 04:44:54','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(364,157,'Aline4707','Aline4707@gmail.com','','103.214.217.136','2025-05-26 04:45:36','2025-05-26 04:45:36','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(365,160,'Gina4317','Gina4317@gmail.com','','103.214.217.136','2025-05-26 04:45:56','2025-05-26 04:45:56','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(366,162,'Marley2374','Marley2374@gmail.com','','103.214.217.136','2025-05-26 04:46:35','2025-05-26 04:46:35','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(367,163,'Cora4724','Cora4724@gmail.com','','103.214.217.136','2025-05-26 04:47:03','2025-05-26 04:47:03','<a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(368,1,'Alma4885','Alma4885@gmail.com','','187.190.171.182','2025-05-26 15:24:24','2025-05-26 15:24:24','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(369,157,'Brenda2691','Brenda2691@gmail.com','','187.190.171.182','2025-05-26 15:24:59','2025-05-26 15:24:59','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(370,158,'Carmen2662','Carmen2662@gmail.com','','187.190.171.182','2025-05-26 15:25:27','2025-05-26 15:25:27','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(371,159,'Fred3174','Fred3174@gmail.com','','187.190.171.182','2025-05-26 15:25:53','2025-05-26 15:25:53','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(372,160,'Luna3540','Luna3540@gmail.com','','187.190.171.182','2025-05-26 15:26:20','2025-05-26 15:26:20','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(373,161,'Emma2167','Emma2167@gmail.com','','187.190.171.182','2025-05-26 15:26:44','2025-05-26 15:26:44','<a href=\"https://shorturl.fm/6539m\" rel=\"nofollow ugc\">https://shorturl.fm/6539m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(374,162,'Aiden3483','Aiden3483@gmail.com','','187.190.171.182','2025-05-26 15:27:08','2025-05-26 15:27:08','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(375,163,'Alistair924','Alistair924@gmail.com','','187.190.171.182','2025-05-26 15:27:33','2025-05-26 15:27:33','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(376,1,'Carter1772','Carter1772@gmail.com','','190.45.90.51','2025-05-27 16:40:27','2025-05-27 16:40:27','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(377,156,'Alicia2059','Alicia2059@gmail.com','','190.45.90.51','2025-05-27 16:40:54','2025-05-27 16:40:54','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(378,157,'Emma345','Emma345@gmail.com','','190.45.90.51','2025-05-27 16:41:23','2025-05-27 16:41:23','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(379,158,'Jenna4475','Jenna4475@gmail.com','','190.45.90.51','2025-05-27 16:41:51','2025-05-27 16:41:51','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(380,159,'Penelope299','Penelope299@gmail.com','','190.45.90.51','2025-05-27 16:42:19','2025-05-27 16:42:19','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(381,160,'Zane1981','Zane1981@gmail.com','','190.45.90.51','2025-05-27 16:42:43','2025-05-27 16:42:43','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(382,161,'Dion4557','Dion4557@gmail.com','','190.45.90.51','2025-05-27 16:43:09','2025-05-27 16:43:09','<a href=\"https://shorturl.fm/9fnIC\" rel=\"nofollow ugc\">https://shorturl.fm/9fnIC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(383,162,'Erik1789','Erik1789@gmail.com','','190.45.90.51','2025-05-27 16:43:51','2025-05-27 16:43:51','<a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(384,1,'Alexa4192','Alexa4192@gmail.com','','184.144.169.105','2025-05-27 22:26:53','2025-05-27 22:26:53','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(385,156,'Jacqueline2223','Jacqueline2223@gmail.com','','184.144.169.105','2025-05-27 22:27:19','2025-05-27 22:27:19','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(386,157,'Kathy4078','Kathy4078@gmail.com','','184.144.169.105','2025-05-27 22:27:46','2025-05-27 22:27:46','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(387,158,'Brandon3622','Brandon3622@gmail.com','','184.144.169.105','2025-05-27 22:28:14','2025-05-27 22:28:14','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(388,159,'Paige2332','Paige2332@gmail.com','','184.144.169.105','2025-05-27 22:28:40','2025-05-27 22:28:40','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(389,160,'Meagan911','Meagan911@gmail.com','','184.144.169.105','2025-05-27 22:29:06','2025-05-27 22:29:06','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(390,162,'Aiden3568','Aiden3568@gmail.com','','184.144.169.105','2025-05-27 22:29:42','2025-05-27 22:29:42','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(391,163,'Daphne2268','Daphne2268@gmail.com','','184.144.169.105','2025-05-27 22:30:11','2025-05-27 22:30:11','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(392,1,'Frida3499','Frida3499@gmail.com','','39.34.130.147','2025-05-28 05:47:23','2025-05-28 05:47:23','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(393,156,'Herbert4149','Herbert4149@gmail.com','','39.34.130.147','2025-05-28 05:47:46','2025-05-28 05:47:46','<a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(394,157,'Cora2584','Cora2584@gmail.com','','39.34.130.147','2025-05-28 05:48:11','2025-05-28 05:48:11','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(395,158,'Pat4838','Pat4838@gmail.com','','39.34.130.147','2025-05-28 05:48:33','2025-05-28 05:48:33','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(396,159,'Vanessa2047','Vanessa2047@gmail.com','','39.34.130.147','2025-05-28 05:49:09','2025-05-28 05:49:09','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(397,161,'Josie4285','Josie4285@gmail.com','','39.34.130.147','2025-05-28 05:49:25','2025-05-28 05:49:25','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(398,163,'Miriam260','Miriam260@gmail.com','','39.34.130.147','2025-05-28 05:49:52','2025-05-28 05:49:52','<a href=\"https://shorturl.fm/6539m\" rel=\"nofollow ugc\">https://shorturl.fm/6539m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(399,1,'Brinley43','Brinley43@gmail.com','','184.22.159.54','2025-05-28 09:39:38','2025-05-28 09:39:38','<a href=\"https://shorturl.fm/9fnIC\" rel=\"nofollow ugc\">https://shorturl.fm/9fnIC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(400,156,'Camden4311','Camden4311@gmail.com','','184.22.159.54','2025-05-28 09:40:07','2025-05-28 09:40:07','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(401,157,'Tyler103','Tyler103@gmail.com','','184.22.159.54','2025-05-28 09:40:35','2025-05-28 09:40:35','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(402,158,'Emory2800','Emory2800@gmail.com','','184.22.159.54','2025-05-28 09:41:03','2025-05-28 09:41:03','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(403,159,'Catherine3817','Catherine3817@gmail.com','','184.22.159.54','2025-05-28 09:41:33','2025-05-28 09:41:33','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(404,160,'Claire475','Claire475@gmail.com','','184.22.159.54','2025-05-28 09:42:02','2025-05-28 09:42:02','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(405,161,'Shawn4875','Shawn4875@gmail.com','','184.22.159.54','2025-05-28 09:42:33','2025-05-28 09:42:33','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(406,162,'Marilyn3834','Marilyn3834@gmail.com','','184.22.159.54','2025-05-28 09:43:00','2025-05-28 09:43:00','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(407,163,'Francesco450','Francesco450@gmail.com','','184.22.159.54','2025-05-28 09:43:28','2025-05-28 09:43:28','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(408,1,'Corinne440','Corinne440@gmail.com','','35.189.142.118','2025-05-28 11:25:19','2025-05-28 11:25:19','<a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(409,156,'Ryan2147','Ryan2147@gmail.com','','35.189.142.118','2025-05-28 11:25:47','2025-05-28 11:25:47','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(410,157,'Martha3046','Martha3046@gmail.com','','35.189.142.118','2025-05-28 11:26:14','2025-05-28 11:26:14','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(411,159,'Roger3979','Roger3979@gmail.com','','35.189.142.118','2025-05-28 11:26:50','2025-05-28 11:26:50','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(412,160,'Jill1889','Jill1889@gmail.com','','35.189.142.118','2025-05-28 11:27:17','2025-05-28 11:27:17','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(413,161,'Matthias4119','Matthias4119@gmail.com','','35.189.142.118','2025-05-28 11:27:44','2025-05-28 11:27:44','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(414,162,'Lora96','Lora96@gmail.com','','35.189.142.118','2025-05-28 11:28:10','2025-05-28 11:28:10','<a href=\"https://shorturl.fm/a0B2m\" rel=\"nofollow ugc\">https://shorturl.fm/a0B2m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(415,163,'Blair3252','Blair3252@gmail.com','','35.189.142.118','2025-05-28 11:28:36','2025-05-28 11:28:36','<a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(416,1,'Mary3711','Mary3711@gmail.com','','64.224.105.212','2025-05-29 09:08:47','2025-05-29 09:08:47','<a href=\"https://shorturl.fm/68Y8V\" rel=\"nofollow ugc\">https://shorturl.fm/68Y8V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(417,156,'Claudia3569','Claudia3569@gmail.com','','64.224.105.212','2025-05-29 09:09:13','2025-05-29 09:09:13','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(418,157,'Nova513','Nova513@gmail.com','','64.224.105.212','2025-05-29 09:09:38','2025-05-29 09:09:38','<a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(419,159,'Troy1851','Troy1851@gmail.com','','64.224.105.212','2025-05-29 09:10:15','2025-05-29 09:10:15','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(420,160,'Henrietta1171','Henrietta1171@gmail.com','','64.224.105.212','2025-05-29 09:10:40','2025-05-29 09:10:40','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(421,161,'Jill4229','Jill4229@gmail.com','','64.224.105.212','2025-05-29 09:11:07','2025-05-29 09:11:07','<a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(422,162,'Shane4641','Shane4641@gmail.com','','64.224.105.212','2025-05-29 09:11:34','2025-05-29 09:11:34','<a href=\"https://shorturl.fm/a0B2m\" rel=\"nofollow ugc\">https://shorturl.fm/a0B2m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(423,163,'Maria2604','Maria2604@gmail.com','','64.224.105.212','2025-05-29 09:12:00','2025-05-29 09:12:00','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(424,1,'Devin335','Devin335@gmail.com','','217.15.164.63','2025-05-29 12:19:04','2025-05-29 12:19:04','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(425,156,'Evelyn4809','Evelyn4809@gmail.com','','217.15.164.63','2025-05-29 12:19:34','2025-05-29 12:19:34','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(426,157,'Jocelyn1245','Jocelyn1245@gmail.com','','217.15.164.63','2025-05-29 12:20:02','2025-05-29 12:20:02','<a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(427,158,'George2707','George2707@gmail.com','','217.15.164.63','2025-05-29 12:20:29','2025-05-29 12:20:29','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(428,159,'Alfred2603','Alfred2603@gmail.com','','217.15.164.63','2025-05-29 12:20:56','2025-05-29 12:20:56','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(429,160,'Lindsay3607','Lindsay3607@gmail.com','','217.15.164.63','2025-05-29 12:21:24','2025-05-29 12:21:24','<a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(430,161,'Aspen4502','Aspen4502@gmail.com','','217.15.164.63','2025-05-29 12:21:51','2025-05-29 12:21:51','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(431,162,'Gracie3375','Gracie3375@gmail.com','','217.15.164.63','2025-05-29 12:22:17','2025-05-29 12:22:17','<a href=\"https://shorturl.fm/9fnIC\" rel=\"nofollow ugc\">https://shorturl.fm/9fnIC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(432,163,'Dwight4083','Dwight4083@gmail.com','','217.15.164.63','2025-05-29 12:22:42','2025-05-29 12:22:42','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(433,1,'Julie3363','Julie3363@gmail.com','','38.51.130.54','2025-05-29 12:36:33','2025-05-29 12:36:33','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(434,156,'Leanne1413','Leanne1413@gmail.com','','38.51.130.54','2025-05-29 12:36:58','2025-05-29 12:36:58','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(435,157,'Alexis1157','Alexis1157@gmail.com','','38.51.130.54','2025-05-29 12:37:22','2025-05-29 12:37:22','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(436,158,'Elizabeth2810','Elizabeth2810@gmail.com','','38.51.130.54','2025-05-29 12:37:46','2025-05-29 12:37:46','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(437,159,'Dana4517','Dana4517@gmail.com','','38.51.130.54','2025-05-29 12:38:12','2025-05-29 12:38:12','<a href=\"https://shorturl.fm/6539m\" rel=\"nofollow ugc\">https://shorturl.fm/6539m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(438,160,'Andres252','Andres252@gmail.com','','38.51.130.54','2025-05-29 12:38:38','2025-05-29 12:38:38','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(439,161,'Shawn4308','Shawn4308@gmail.com','','38.51.130.54','2025-05-29 12:39:04','2025-05-29 12:39:04','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(440,162,'Jordyn4116','Jordyn4116@gmail.com','','38.51.130.54','2025-05-29 12:39:29','2025-05-29 12:39:29','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(441,163,'Donald3555','Donald3555@gmail.com','','38.51.130.54','2025-05-29 12:39:55','2025-05-29 12:39:55','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(442,1,'Callie4321','Callie4321@gmail.com','','172.5.132.175','2025-05-29 18:08:13','2025-05-29 18:08:13','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(443,156,'Lucia3037','Lucia3037@gmail.com','','172.5.132.175','2025-05-29 18:08:41','2025-05-29 18:08:41','<a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(444,157,'Jeannette622','Jeannette622@gmail.com','','172.5.132.175','2025-05-29 18:09:09','2025-05-29 18:09:09','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(445,158,'Carmen3333','Carmen3333@gmail.com','','172.5.132.175','2025-05-29 18:09:37','2025-05-29 18:09:37','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(446,159,'Kim1861','Kim1861@gmail.com','','172.5.132.175','2025-05-29 18:10:04','2025-05-29 18:10:04','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(447,160,'Ruth468','Ruth468@gmail.com','','172.5.132.175','2025-05-29 18:10:31','2025-05-29 18:10:31','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(448,161,'Laila3057','Laila3057@gmail.com','','172.5.132.175','2025-05-29 18:10:59','2025-05-29 18:10:59','<a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(449,162,'Cassidy1077','Cassidy1077@gmail.com','','172.5.132.175','2025-05-29 18:11:26','2025-05-29 18:11:26','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(450,163,'Hayes871','Hayes871@gmail.com','','172.5.132.175','2025-05-29 18:11:53','2025-05-29 18:11:53','<a href=\"https://shorturl.fm/TbTre\" rel=\"nofollow ugc\">https://shorturl.fm/TbTre</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(451,1,'Jacob190','Jacob190@gmail.com','','114.10.47.28','2025-05-30 00:35:28','2025-05-30 00:35:28','<a href=\"https://shorturl.fm/m8ueY\" rel=\"nofollow ugc\">https://shorturl.fm/m8ueY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(452,160,'Justin2359','Justin2359@gmail.com','','114.10.47.28','2025-05-30 00:35:44','2025-05-30 00:35:44','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(453,1,'Colette1077','Colette1077@gmail.com','','27.49.19.22','2025-05-30 01:31:07','2025-05-30 01:31:07','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(454,157,'Summer3363','Summer3363@gmail.com','','27.49.19.22','2025-05-30 01:31:22','2025-05-30 01:31:22','<a href=\"https://shorturl.fm/bODKa\" rel=\"nofollow ugc\">https://shorturl.fm/bODKa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(455,163,'Conrad1139','Conrad1139@gmail.com','','27.49.19.22','2025-05-30 01:31:38','2025-05-30 01:31:38','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(456,1,'Charles536','Charles536@gmail.com','','191.99.52.236','2025-05-30 04:58:10','2025-05-30 04:58:10','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(457,156,'Harley2809','Harley2809@gmail.com','','191.99.52.236','2025-05-30 04:58:34','2025-05-30 04:58:34','<a href=\"https://shorturl.fm/oYjg5\" rel=\"nofollow ugc\">https://shorturl.fm/oYjg5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(458,157,'Krista4439','Krista4439@gmail.com','','191.99.52.236','2025-05-30 04:58:58','2025-05-30 04:58:58','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(459,158,'Bryant3080','Bryant3080@gmail.com','','191.99.52.236','2025-05-30 04:59:20','2025-05-30 04:59:20','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(460,159,'Athena2782','Athena2782@gmail.com','','191.99.52.236','2025-05-30 04:59:41','2025-05-30 04:59:41','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(461,160,'Marisa321','Marisa321@gmail.com','','191.99.52.236','2025-05-30 05:00:04','2025-05-30 05:00:04','<a href=\"https://shorturl.fm/5JO3e\" rel=\"nofollow ugc\">https://shorturl.fm/5JO3e</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(462,161,'Rhys2567','Rhys2567@gmail.com','','191.99.52.236','2025-05-30 05:00:30','2025-05-30 05:00:30','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(463,162,'Adrian171','Adrian171@gmail.com','','191.99.52.236','2025-05-30 05:00:53','2025-05-30 05:00:53','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(464,163,'Maddison4965','Maddison4965@gmail.com','','191.99.52.236','2025-05-30 05:01:12','2025-05-30 05:01:12','<a href=\"https://shorturl.fm/FIJkD\" rel=\"nofollow ugc\">https://shorturl.fm/FIJkD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(465,1,'Landon905','Landon905@gmail.com','','51.81.245.3','2025-05-30 11:31:09','2025-05-30 11:31:09','<a href=\"https://shorturl.fm/XIZGD\" rel=\"nofollow ugc\">https://shorturl.fm/XIZGD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(466,156,'Abby1891','Abby1891@gmail.com','','51.81.245.3','2025-05-30 11:31:35','2025-05-30 11:31:35','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(467,157,'Alastair3463','Alastair3463@gmail.com','','51.81.245.3','2025-05-30 11:32:01','2025-05-30 11:32:01','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(468,158,'Noah3579','Noah3579@gmail.com','','51.81.245.3','2025-05-30 11:32:26','2025-05-30 11:32:26','<a href=\"https://shorturl.fm/YvSxU\" rel=\"nofollow ugc\">https://shorturl.fm/YvSxU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(469,159,'Andrew3434','Andrew3434@gmail.com','','51.81.245.3','2025-05-30 11:32:53','2025-05-30 11:32:53','<a href=\"https://shorturl.fm/N6nl1\" rel=\"nofollow ugc\">https://shorturl.fm/N6nl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(470,160,'Calvin1008','Calvin1008@gmail.com','','51.81.245.3','2025-05-30 11:33:19','2025-05-30 11:33:19','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(471,161,'Alexis1449','Alexis1449@gmail.com','','51.81.245.3','2025-05-30 11:33:46','2025-05-30 11:33:46','<a href=\"https://shorturl.fm/A5ni8\" rel=\"nofollow ugc\">https://shorturl.fm/A5ni8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(472,162,'Lane2449','Lane2449@gmail.com','','51.81.245.3','2025-05-30 11:34:12','2025-05-30 11:34:12','<a href=\"https://shorturl.fm/a0B2m\" rel=\"nofollow ugc\">https://shorturl.fm/a0B2m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(473,163,'Greta1453','Greta1453@gmail.com','','51.81.245.3','2025-05-30 11:34:38','2025-05-30 11:34:38','<a href=\"https://shorturl.fm/j3kEj\" rel=\"nofollow ugc\">https://shorturl.fm/j3kEj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(474,1,'Dale1844','Dale1844@gmail.com','','72.255.42.160','2025-05-30 20:30:56','2025-05-30 20:30:56','<a href=\"https://shorturl.fm/retLL\" rel=\"nofollow ugc\">https://shorturl.fm/retLL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(475,160,'Allen751','Allen751@gmail.com','','72.255.42.160','2025-05-30 20:31:12','2025-05-30 20:31:12','<a href=\"https://shorturl.fm/xlGWd\" rel=\"nofollow ugc\">https://shorturl.fm/xlGWd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(476,1,'Flynn2852','Flynn2852@gmail.com','','158.62.99.57','2025-05-31 08:07:30','2025-05-31 08:07:30','<a href=\"https://shorturl.fm/VeYJe\" rel=\"nofollow ugc\">https://shorturl.fm/VeYJe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(477,156,'Chad3613','Chad3613@gmail.com','','158.62.99.57','2025-05-31 08:07:58','2025-05-31 08:07:58','<a href=\"https://shorturl.fm/hQjgP\" rel=\"nofollow ugc\">https://shorturl.fm/hQjgP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(478,157,'Alexa3896','Alexa3896@gmail.com','','158.62.99.57','2025-05-31 08:08:26','2025-05-31 08:08:26','<a href=\"https://shorturl.fm/I3T8M\" rel=\"nofollow ugc\">https://shorturl.fm/I3T8M</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(479,158,'Gregory3174','Gregory3174@gmail.com','','158.62.99.57','2025-05-31 08:08:54','2025-05-31 08:08:54','<a href=\"https://shorturl.fm/YZRz9\" rel=\"nofollow ugc\">https://shorturl.fm/YZRz9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(480,159,'Henry3443','Henry3443@gmail.com','','158.62.99.57','2025-05-31 08:09:21','2025-05-31 08:09:21','<a href=\"https://shorturl.fm/Xect5\" rel=\"nofollow ugc\">https://shorturl.fm/Xect5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(481,160,'Alice3415','Alice3415@gmail.com','','158.62.99.57','2025-05-31 08:09:50','2025-05-31 08:09:50','<a href=\"https://shorturl.fm/Kp34g\" rel=\"nofollow ugc\">https://shorturl.fm/Kp34g</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(482,161,'Stephanie1814','Stephanie1814@gmail.com','','158.62.99.57','2025-05-31 08:10:17','2025-05-31 08:10:17','<a href=\"https://shorturl.fm/nqe5E\" rel=\"nofollow ugc\">https://shorturl.fm/nqe5E</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(483,162,'Brinley4137','Brinley4137@gmail.com','','158.62.99.57','2025-05-31 08:10:45','2025-05-31 08:10:45','<a href=\"https://shorturl.fm/I3T8M\" rel=\"nofollow ugc\">https://shorturl.fm/I3T8M</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(484,163,'Holden3917','Holden3917@gmail.com','','158.62.99.57','2025-05-31 08:11:12','2025-05-31 08:11:12','<a href=\"https://shorturl.fm/retLL\" rel=\"nofollow ugc\">https://shorturl.fm/retLL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(485,1,'Tom1176','Tom1176@gmail.com','','125.163.136.154','2025-05-31 08:56:23','2025-05-31 08:56:23','<a href=\"https://shorturl.fm/IPXDm\" rel=\"nofollow ugc\">https://shorturl.fm/IPXDm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(486,160,'Jake365','Jake365@gmail.com','','125.163.136.154','2025-05-31 08:56:38','2025-05-31 08:56:38','<a href=\"https://shorturl.fm/fSv4z\" rel=\"nofollow ugc\">https://shorturl.fm/fSv4z</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(487,163,'Joanna193','Joanna193@gmail.com','','125.163.136.154','2025-05-31 08:56:53','2025-05-31 08:56:53','<a href=\"https://shorturl.fm/MVjF1\" rel=\"nofollow ugc\">https://shorturl.fm/MVjF1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(488,1,'Doris2156','Doris2156@gmail.com','','18.142.185.119','2025-05-31 22:43:32','2025-05-31 22:43:32','<a href=\"https://shorturl.fm/0EtO1\" rel=\"nofollow ugc\">https://shorturl.fm/0EtO1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(489,156,'Terry3904','Terry3904@gmail.com','','18.142.185.119','2025-05-31 22:44:02','2025-05-31 22:44:02','<a href=\"https://shorturl.fm/YZRz9\" rel=\"nofollow ugc\">https://shorturl.fm/YZRz9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(490,157,'Harley4337','Harley4337@gmail.com','','18.142.185.119','2025-05-31 22:44:31','2025-05-31 22:44:31','<a href=\"https://shorturl.fm/f4TEQ\" rel=\"nofollow ugc\">https://shorturl.fm/f4TEQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(491,1,'Shannon568','Shannon568@gmail.com','','159.2.55.11','2025-05-31 23:58:58','2025-05-31 23:58:58','<a href=\"https://shorturl.fm/I3T8M\" rel=\"nofollow ugc\">https://shorturl.fm/I3T8M</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(492,156,'Brylee682','Brylee682@gmail.com','','159.2.55.11','2025-05-31 23:59:25','2025-05-31 23:59:25','<a href=\"https://shorturl.fm/ypgnt\" rel=\"nofollow ugc\">https://shorturl.fm/ypgnt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(493,157,'Sierra2122','Sierra2122@gmail.com','','159.2.55.11','2025-05-31 23:59:53','2025-05-31 23:59:53','<a href=\"https://shorturl.fm/PFOiP\" rel=\"nofollow ugc\">https://shorturl.fm/PFOiP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(494,158,'Lindsey3547','Lindsey3547@gmail.com','','159.2.55.11','2025-06-01 00:00:25','2025-06-01 00:00:25','<a href=\"https://shorturl.fm/IPXDm\" rel=\"nofollow ugc\">https://shorturl.fm/IPXDm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(495,159,'Sergio2741','Sergio2741@gmail.com','','159.2.55.11','2025-06-01 00:00:50','2025-06-01 00:00:50','<a href=\"https://shorturl.fm/PFOiP\" rel=\"nofollow ugc\">https://shorturl.fm/PFOiP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(496,161,'Krista4290','Krista4290@gmail.com','','159.2.55.11','2025-06-01 00:01:37','2025-06-01 00:01:37','<a href=\"https://shorturl.fm/YZRz9\" rel=\"nofollow ugc\">https://shorturl.fm/YZRz9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(497,1,'Kira1397','Kira1397@gmail.com','','104.28.208.84','2025-06-01 05:11:15','2025-06-01 05:11:15','<a href=\"https://shorturl.fm/47rLb\" rel=\"nofollow ugc\">https://shorturl.fm/47rLb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(498,156,'Cale2090','Cale2090@gmail.com','','104.28.208.84','2025-06-01 05:11:45','2025-06-01 05:11:45','<a href=\"https://shorturl.fm/nqe5E\" rel=\"nofollow ugc\">https://shorturl.fm/nqe5E</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(499,157,'Kelsey4093','Kelsey4093@gmail.com','','104.28.208.84','2025-06-01 05:12:14','2025-06-01 05:12:14','<a href=\"https://shorturl.fm/47rLb\" rel=\"nofollow ugc\">https://shorturl.fm/47rLb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(500,158,'Leonardo549','Leonardo549@gmail.com','','104.28.208.84','2025-06-01 05:12:44','2025-06-01 05:12:44','<a href=\"https://shorturl.fm/xlGWd\" rel=\"nofollow ugc\">https://shorturl.fm/xlGWd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(501,159,'Arabella4308','Arabella4308@gmail.com','','104.28.208.84','2025-06-01 05:13:14','2025-06-01 05:13:14','<a href=\"https://shorturl.fm/PFOiP\" rel=\"nofollow ugc\">https://shorturl.fm/PFOiP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(502,160,'Dwight890','Dwight890@gmail.com','','104.28.208.84','2025-06-01 05:13:43','2025-06-01 05:13:43','<a href=\"https://shorturl.fm/TDuGJ\" rel=\"nofollow ugc\">https://shorturl.fm/TDuGJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(503,162,'Ayla1823','Ayla1823@gmail.com','','104.28.208.84','2025-06-01 05:14:22','2025-06-01 05:14:22','<a href=\"https://shorturl.fm/nqe5E\" rel=\"nofollow ugc\">https://shorturl.fm/nqe5E</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(504,163,'Sophia4529','Sophia4529@gmail.com','','104.28.208.84','2025-06-01 05:14:51','2025-06-01 05:14:51','<a href=\"https://shorturl.fm/IPXDm\" rel=\"nofollow ugc\">https://shorturl.fm/IPXDm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(505,1,'Leon3675','Leon3675@gmail.com','','124.107.198.193','2025-06-01 16:18:40','2025-06-01 16:18:40','<a href=\"https://shorturl.fm/hevfE\" rel=\"nofollow ugc\">https://shorturl.fm/hevfE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(506,156,'Danielle1050','Danielle1050@gmail.com','','124.107.198.193','2025-06-01 16:19:13','2025-06-01 16:19:13','<a href=\"https://shorturl.fm/hevfE\" rel=\"nofollow ugc\">https://shorturl.fm/hevfE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(507,157,'Dominic1419','Dominic1419@gmail.com','','124.107.198.193','2025-06-01 16:19:42','2025-06-01 16:19:42','<a href=\"https://shorturl.fm/YZRz9\" rel=\"nofollow ugc\">https://shorturl.fm/YZRz9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(508,159,'Athena558','Athena558@gmail.com','','124.107.198.193','2025-06-01 16:20:21','2025-06-01 16:20:21','<a href=\"https://shorturl.fm/hevfE\" rel=\"nofollow ugc\">https://shorturl.fm/hevfE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(509,160,'Kevin703','Kevin703@gmail.com','','124.107.198.193','2025-06-01 16:20:49','2025-06-01 16:20:49','<a href=\"https://shorturl.fm/0EtO1\" rel=\"nofollow ugc\">https://shorturl.fm/0EtO1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(510,162,'Delaney4329','Delaney4329@gmail.com','','124.107.198.193','2025-06-01 16:21:26','2025-06-01 16:21:26','<a href=\"https://shorturl.fm/xlGWd\" rel=\"nofollow ugc\">https://shorturl.fm/xlGWd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(511,163,'Xavier275','Xavier275@gmail.com','','124.107.198.193','2025-06-01 16:21:54','2025-06-01 16:21:54','<a href=\"https://shorturl.fm/IPXDm\" rel=\"nofollow ugc\">https://shorturl.fm/IPXDm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(512,1,'Annette1433','Annette1433@gmail.com','','223.206.48.161','2025-06-01 16:41:47','2025-06-01 16:41:47','<a href=\"https://shorturl.fm/YZRz9\" rel=\"nofollow ugc\">https://shorturl.fm/YZRz9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(513,156,'Angel3610','Angel3610@gmail.com','','223.206.48.161','2025-06-01 16:42:14','2025-06-01 16:42:14','<a href=\"https://shorturl.fm/Kp34g\" rel=\"nofollow ugc\">https://shorturl.fm/Kp34g</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(514,157,'Meagan3074','Meagan3074@gmail.com','','223.206.48.161','2025-06-01 16:42:42','2025-06-01 16:42:42','<a href=\"https://shorturl.fm/47rLb\" rel=\"nofollow ugc\">https://shorturl.fm/47rLb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(515,158,'Breanna1908','Breanna1908@gmail.com','','223.206.48.161','2025-06-01 16:43:09','2025-06-01 16:43:09','<a href=\"https://shorturl.fm/Kp34g\" rel=\"nofollow ugc\">https://shorturl.fm/Kp34g</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(516,159,'Maxwell4006','Maxwell4006@gmail.com','','223.206.48.161','2025-06-01 16:43:35','2025-06-01 16:43:35','<a href=\"https://shorturl.fm/eAlmd\" rel=\"nofollow ugc\">https://shorturl.fm/eAlmd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(517,160,'Devon1933','Devon1933@gmail.com','','223.206.48.161','2025-06-01 16:44:03','2025-06-01 16:44:03','<a href=\"https://shorturl.fm/PFOiP\" rel=\"nofollow ugc\">https://shorturl.fm/PFOiP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(518,161,'Kennedy1010','Kennedy1010@gmail.com','','223.206.48.161','2025-06-01 16:44:30','2025-06-01 16:44:30','<a href=\"https://shorturl.fm/uyMvT\" rel=\"nofollow ugc\">https://shorturl.fm/uyMvT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(519,162,'Monica2257','Monica2257@gmail.com','','223.206.48.161','2025-06-01 16:44:55','2025-06-01 16:44:55','<a href=\"https://shorturl.fm/IPXDm\" rel=\"nofollow ugc\">https://shorturl.fm/IPXDm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(520,163,'Ruby2855','Ruby2855@gmail.com','','223.206.48.161','2025-06-01 16:45:21','2025-06-01 16:45:21','<a href=\"https://shorturl.fm/Xect5\" rel=\"nofollow ugc\">https://shorturl.fm/Xect5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(521,1,'Finn2584','Finn2584@gmail.com','','23.237.210.82','2025-06-01 19:22:11','2025-06-01 19:22:11','<a href=\"https://shorturl.fm/IPXDm\" rel=\"nofollow ugc\">https://shorturl.fm/IPXDm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(522,162,'Anna555','Anna555@gmail.com','','23.237.210.82','2025-06-01 19:22:26','2025-06-01 19:22:26','<a href=\"https://shorturl.fm/JtG9d\" rel=\"nofollow ugc\">https://shorturl.fm/JtG9d</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(523,1,'Alistair4474','Alistair4474@gmail.com','','220.86.217.100','2025-06-02 02:56:52','2025-06-02 02:56:52','<a href=\"https://shorturl.fm/Xect5\" rel=\"nofollow ugc\">https://shorturl.fm/Xect5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(524,156,'Sophie4915','Sophie4915@gmail.com','','220.86.217.100','2025-06-02 02:57:21','2025-06-02 02:57:21','<a href=\"https://shorturl.fm/Xect5\" rel=\"nofollow ugc\">https://shorturl.fm/Xect5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(525,157,'Roy2149','Roy2149@gmail.com','','220.86.217.100','2025-06-02 02:57:48','2025-06-02 02:57:48','<a href=\"https://shorturl.fm/ypgnt\" rel=\"nofollow ugc\">https://shorturl.fm/ypgnt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(526,158,'Rodney3715','Rodney3715@gmail.com','','220.86.217.100','2025-06-02 02:58:16','2025-06-02 02:58:16','<a href=\"https://shorturl.fm/fSv4z\" rel=\"nofollow ugc\">https://shorturl.fm/fSv4z</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(527,159,'Clayton2657','Clayton2657@gmail.com','','220.86.217.100','2025-06-02 02:58:44','2025-06-02 02:58:44','<a href=\"https://shorturl.fm/DA3HU\" rel=\"nofollow ugc\">https://shorturl.fm/DA3HU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(528,160,'Calvin110','Calvin110@gmail.com','','220.86.217.100','2025-06-02 02:59:12','2025-06-02 02:59:12','<a href=\"https://shorturl.fm/nqe5E\" rel=\"nofollow ugc\">https://shorturl.fm/nqe5E</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(529,161,'Curtis2338','Curtis2338@gmail.com','','220.86.217.100','2025-06-02 02:59:40','2025-06-02 02:59:40','<a href=\"https://shorturl.fm/Xect5\" rel=\"nofollow ugc\">https://shorturl.fm/Xect5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(530,162,'Alissa1818','Alissa1818@gmail.com','','220.86.217.100','2025-06-02 03:00:08','2025-06-02 03:00:08','<a href=\"https://shorturl.fm/VeYJe\" rel=\"nofollow ugc\">https://shorturl.fm/VeYJe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(531,163,'London2283','London2283@gmail.com','','220.86.217.100','2025-06-02 03:00:36','2025-06-02 03:00:36','<a href=\"https://shorturl.fm/JtG9d\" rel=\"nofollow ugc\">https://shorturl.fm/JtG9d</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(532,1,'Phoebe3459','Phoebe3459@gmail.com','','47.92.93.226','2025-06-02 12:54:16','2025-06-02 12:54:16','<a href=\"https://shorturl.fm/xlGWd\" rel=\"nofollow ugc\">https://shorturl.fm/xlGWd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(533,156,'Alivia2744','Alivia2744@gmail.com','','47.92.93.226','2025-06-02 12:54:43','2025-06-02 12:54:43','<a href=\"https://shorturl.fm/Kp34g\" rel=\"nofollow ugc\">https://shorturl.fm/Kp34g</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(534,157,'Mona3171','Mona3171@gmail.com','','47.92.93.226','2025-06-02 12:55:12','2025-06-02 12:55:12','<a href=\"https://shorturl.fm/DA3HU\" rel=\"nofollow ugc\">https://shorturl.fm/DA3HU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(535,159,'Seth3089','Seth3089@gmail.com','','47.92.93.226','2025-06-02 12:58:17','2025-06-02 12:58:17','<a href=\"https://shorturl.fm/TDuGJ\" rel=\"nofollow ugc\">https://shorturl.fm/TDuGJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(536,1,'hdfilmcehennemi','vilmazavaleta@hotmail.com','https://www.hdfilmcehennemi3.sbs/','51.159.37.21','2025-06-05 17:48:20','2025-06-05 17:48:20','For latestnewestmost recentmost up-to-datehottest newsinformation you have to visitgo to seepay a visitpay a quick visit internetwebworld wide webworld-wide-webthe web and on internetwebworld-wide-webthe web I found this websiteweb sitesiteweb page as a bestmost excellentfinest websiteweb sitesiteweb page for latestnewestmost recentmost up-to-datehottest updates. Elwood Venible',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(537,1,'hdfilmcehennemi','modesto_aranda@hotmail.com','https://hdfilmcehennemi.one/','51.159.37.21','2025-06-06 09:15:28','2025-06-06 09:15:28','For large batches, use our 1 oz bags and boil it in 1/2 gallon of water. Taste it periodically to check the strength of the brew and cool it down when ready and leave it in the refrigerator. Use it as a concentrate and prepare your cup with 4 oz of concentrate and 4 oz of water or milk substitute and heat it or enjoy it over ice. Thanks for asking!! Billie Dress',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(538,1,'hdfilmcehennemi','jczepedab@hotmail.com','https://hdfilmcehennemi.one/','51.159.37.33','2025-06-08 13:14:42','2025-06-08 13:14:42','Great ?V I should certainly pronounce, impressed with your website. I had no trouble navigating through all tabs as well as related info ended up being truly simple to do to access. I recently found what I hoped for before you know it in the least. Reasonably unusual. Is likely to appreciate it for those who add forums or anything, web site theme . a tones way for your customer to communicate. Nice task. Isaac Reifsteck',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(539,1,'hd film cehenenmi','pgaguilera@gmail.com','https://www.hdfilmcehennemi48.sbs/','51.159.37.31','2025-07-01 19:01:27','2025-07-01 19:01:27','I would like to thank George and Pati for excepting me on to the music Programe at Whitireia In 1992 . I have seen a lot of good musicians come through the course over the years , some still play and preform music , others have moved on to other careers . I throughly enjoyed the association that I have had with these people . And wish all the best to George with his future endeavors . Many thanks . Booker Quintin',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(540,1,'hd film cehenenmi','lkarinaf@gmail.com','https://www.hdfilmcehennemi3.cv/','51.159.37.34','2025-07-01 23:52:46','2025-07-01 23:52:46','Youre so cool! I dont suppose Ive read something like this before. So good to find any individual with some authentic ideas on this subject. realy thanks for starting this up. this website is one thing that is needed on the internet, someone with a little bit originality. useful job for bringing something new to the internet! Theodore Hurndon',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(541,1,'Dustin3482','Dustin3482@gmail.com','','42.118.225.92','2025-07-08 21:23:07','2025-07-08 21:23:07','Monetize your audience—become an affiliate partner now! <a href=\"https://shorturl.fm/NFyC2\" rel=\"nofollow ugc\">https://shorturl.fm/NFyC2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(542,156,'Gabriel1695','Gabriel1695@gmail.com','','42.118.225.92','2025-07-08 21:23:38','2025-07-08 21:23:38','Sign up for our affiliate program and watch your earnings grow! <a href=\"https://shorturl.fm/hVUt9\" rel=\"nofollow ugc\">https://shorturl.fm/hVUt9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(543,157,'Chase909','Chase909@gmail.com','','42.118.225.92','2025-07-08 21:24:05','2025-07-08 21:24:05','Your network, your earnings—apply to our affiliate program now! <a href=\"https://shorturl.fm/aQ8hJ\" rel=\"nofollow ugc\">https://shorturl.fm/aQ8hJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(544,158,'Lauryn2341','Lauryn2341@gmail.com','','42.118.225.92','2025-07-08 21:24:30','2025-07-08 21:24:30','Promote our brand and get paid—enroll in our affiliate program! <a href=\"https://shorturl.fm/il7vC\" rel=\"nofollow ugc\">https://shorturl.fm/il7vC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(545,159,'Lila1530','Lila1530@gmail.com','','42.118.225.92','2025-07-08 21:24:54','2025-07-08 21:24:54','Promote our brand and get paid—enroll in our affiliate program! <a href=\"https://shorturl.fm/il7vC\" rel=\"nofollow ugc\">https://shorturl.fm/il7vC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(546,160,'Elise3803','Elise3803@gmail.com','','42.118.225.92','2025-07-08 21:25:21','2025-07-08 21:25:21','Get started instantly—earn on every referral you make! <a href=\"https://shorturl.fm/lSHYg\" rel=\"nofollow ugc\">https://shorturl.fm/lSHYg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(547,161,'Julia688','Julia688@gmail.com','','42.118.225.92','2025-07-08 21:25:46','2025-07-08 21:25:46','Turn your network into income—apply to our affiliate program! <a href=\"https://shorturl.fm/dcPoP\" rel=\"nofollow ugc\">https://shorturl.fm/dcPoP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(548,163,'Eugene1729','Eugene1729@gmail.com','','42.118.225.92','2025-07-08 21:26:22','2025-07-08 21:26:22','Promote our products and earn real money—apply today! <a href=\"https://shorturl.fm/DzXB1\" rel=\"nofollow ugc\">https://shorturl.fm/DzXB1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(549,1,'Amanda1820','Amanda1820@gmail.com','','101.43.84.77','2025-07-09 04:04:55','2025-07-09 04:04:55','Partner with us for generous payouts—sign up today! <a href=\"https://shorturl.fm/g5uAn\" rel=\"nofollow ugc\">https://shorturl.fm/g5uAn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(550,157,'Pamela4817','Pamela4817@gmail.com','','101.43.84.77','2025-07-09 04:05:33','2025-07-09 04:05:33','Get paid for every referral—sign up for our affiliate program now! <a href=\"https://shorturl.fm/gcI8b\" rel=\"nofollow ugc\">https://shorturl.fm/gcI8b</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(551,158,'Michelle2474','Michelle2474@gmail.com','','101.43.84.77','2025-07-09 04:06:02','2025-07-09 04:06:02','Get paid for every referral—enroll in our affiliate program! <a href=\"https://shorturl.fm/GWWbO\" rel=\"nofollow ugc\">https://shorturl.fm/GWWbO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(552,159,'Jed4150','Jed4150@gmail.com','','101.43.84.77','2025-07-09 04:06:31','2025-07-09 04:06:31','Start sharing, start earning—become our affiliate today! <a href=\"https://shorturl.fm/ulK1j\" rel=\"nofollow ugc\">https://shorturl.fm/ulK1j</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(553,160,'Dane882','Dane882@gmail.com','','101.43.84.77','2025-07-09 04:07:00','2025-07-09 04:07:00','Share our offers and watch your wallet grow—become an affiliate! <a href=\"https://shorturl.fm/kE6Q4\" rel=\"nofollow ugc\">https://shorturl.fm/kE6Q4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(554,161,'Leonard2921','Leonard2921@gmail.com','','101.43.84.77','2025-07-09 04:07:28','2025-07-09 04:07:28','Grow your income stream—apply to our affiliate program today! <a href=\"https://shorturl.fm/rCRMi\" rel=\"nofollow ugc\">https://shorturl.fm/rCRMi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(555,162,'Sarah4901','Sarah4901@gmail.com','','101.43.84.77','2025-07-09 04:07:56','2025-07-09 04:07:56','Share our products, earn up to 40% per sale—apply today! <a href=\"https://shorturl.fm/yIJly\" rel=\"nofollow ugc\">https://shorturl.fm/yIJly</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(556,163,'Natasha3990','Natasha3990@gmail.com','','101.43.84.77','2025-07-09 04:08:25','2025-07-09 04:08:25','Apply now and unlock exclusive affiliate rewards! <a href=\"https://shorturl.fm/EmJD6\" rel=\"nofollow ugc\">https://shorturl.fm/EmJD6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(557,1,'Justin1488','Justin1488@gmail.com','','103.14.20.146','2025-07-09 15:56:19','2025-07-09 15:56:19','Get paid for every click—join our affiliate network now! <a href=\"https://shorturl.fm/F5UmI\" rel=\"nofollow ugc\">https://shorturl.fm/F5UmI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(558,159,'Conrad1694','Conrad1694@gmail.com','','103.14.20.146','2025-07-09 15:56:34','2025-07-09 15:56:34','Boost your income—enroll in our affiliate program today! <a href=\"https://shorturl.fm/Gat1C\" rel=\"nofollow ugc\">https://shorturl.fm/Gat1C</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(559,1,'Gage2368','Gage2368@gmail.com','','116.103.91.81','2025-07-09 16:43:35','2025-07-09 16:43:35','Sign up now and access top-converting affiliate offers! <a href=\"https://shorturl.fm/gCmFC\" rel=\"nofollow ugc\">https://shorturl.fm/gCmFC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(560,1,'Junior2373','Junior2373@gmail.com','','58.186.92.121','2025-07-09 17:19:28','2025-07-09 17:19:28','Share our products and watch your earnings grow—join our affiliate program! <a href=\"https://shorturl.fm/gnSo4\" rel=\"nofollow ugc\">https://shorturl.fm/gnSo4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(561,156,'Matthew2561','Matthew2561@gmail.com','','14.225.210.186','2025-07-09 18:20:21','2025-07-09 18:20:21','Promote our products and earn real money—apply today! <a href=\"https://shorturl.fm/ZVAge\" rel=\"nofollow ugc\">https://shorturl.fm/ZVAge</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(562,163,'Valerie1456','Valerie1456@gmail.com','','14.225.210.186','2025-07-09 18:21:27','2025-07-09 18:21:27','Start earning passive income—become our affiliate partner! <a href=\"https://shorturl.fm/eY0i9\" rel=\"nofollow ugc\">https://shorturl.fm/eY0i9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(563,1,'Hailey3473','Hailey3473@gmail.com','','78.135.87.221','2025-07-10 00:50:51','2025-07-10 00:50:51','Become our affiliate and watch your wallet grow—apply now! <a href=\"https://shorturl.fm/diN7Y\" rel=\"nofollow ugc\">https://shorturl.fm/diN7Y</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(564,156,'Leslie1032','Leslie1032@gmail.com','','78.135.87.221','2025-07-10 00:51:15','2025-07-10 00:51:15','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/iLAL2\" rel=\"nofollow ugc\">https://shorturl.fm/iLAL2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(565,157,'Aubrey2254','Aubrey2254@gmail.com','','78.135.87.221','2025-07-10 00:51:39','2025-07-10 00:51:39','Earn up to 40% commission per sale—join our affiliate program now! <a href=\"https://shorturl.fm/VRckD\" rel=\"nofollow ugc\">https://shorturl.fm/VRckD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(566,158,'Marian4728','Marian4728@gmail.com','','78.135.87.221','2025-07-10 00:52:04','2025-07-10 00:52:04','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/AACKe\" rel=\"nofollow ugc\">https://shorturl.fm/AACKe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(567,159,'Vera3984','Vera3984@gmail.com','','78.135.87.221','2025-07-10 00:52:27','2025-07-10 00:52:27','Earn passive income this month—become an affiliate partner and get paid! <a href=\"https://shorturl.fm/OCfS8\" rel=\"nofollow ugc\">https://shorturl.fm/OCfS8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(568,160,'Gilbert2941','Gilbert2941@gmail.com','','78.135.87.221','2025-07-10 00:52:50','2025-07-10 00:52:50','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/AACKe\" rel=\"nofollow ugc\">https://shorturl.fm/AACKe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(569,161,'Harlan4511','Harlan4511@gmail.com','','78.135.87.221','2025-07-10 00:53:12','2025-07-10 00:53:12','Tap into a new revenue stream—become an affiliate partner! <a href=\"https://shorturl.fm/hziSC\" rel=\"nofollow ugc\">https://shorturl.fm/hziSC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(570,162,'Phyllis1842','Phyllis1842@gmail.com','','78.135.87.221','2025-07-10 00:53:33','2025-07-10 00:53:33','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/iLAL2\" rel=\"nofollow ugc\">https://shorturl.fm/iLAL2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(571,163,'Marcus4349','Marcus4349@gmail.com','','78.135.87.221','2025-07-10 00:53:56','2025-07-10 00:53:56','Start profiting from your traffic—sign up today! <a href=\"https://shorturl.fm/k5Fqg\" rel=\"nofollow ugc\">https://shorturl.fm/k5Fqg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(572,1,'Peyton1759','Peyton1759@gmail.com','','125.25.10.146','2025-07-10 03:12:55','2025-07-10 03:12:55','Start earning passive income—join our affiliate network today! <a href=\"https://shorturl.fm/etfNW\" rel=\"nofollow ugc\">https://shorturl.fm/etfNW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(573,156,'Jesse2122','Jesse2122@gmail.com','','125.25.10.146','2025-07-10 03:13:22','2025-07-10 03:13:22','Sign up now and access top-converting affiliate offers! <a href=\"https://shorturl.fm/gYsVN\" rel=\"nofollow ugc\">https://shorturl.fm/gYsVN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(574,157,'Kenny3797','Kenny3797@gmail.com','','125.25.10.146','2025-07-10 03:13:49','2025-07-10 03:13:49','Earn passive income this month—become an affiliate partner and get paid! <a href=\"https://shorturl.fm/NpSQA\" rel=\"nofollow ugc\">https://shorturl.fm/NpSQA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(575,158,'Lucy1855','Lucy1855@gmail.com','','125.25.10.146','2025-07-10 03:14:17','2025-07-10 03:14:17','Monetize your audience—become an affiliate partner now! <a href=\"https://shorturl.fm/5XEb6\" rel=\"nofollow ugc\">https://shorturl.fm/5XEb6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(576,159,'Cristian3096','Cristian3096@gmail.com','','125.25.10.146','2025-07-10 03:14:45','2025-07-10 03:14:45','Be rewarded for every click—join our affiliate program today! <a href=\"https://shorturl.fm/atwHP\" rel=\"nofollow ugc\">https://shorturl.fm/atwHP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(577,160,'Mateo4567','Mateo4567@gmail.com','','125.25.10.146','2025-07-10 03:15:19','2025-07-10 03:15:19','Grow your income stream—apply to our affiliate program today! <a href=\"https://shorturl.fm/EU4bR\" rel=\"nofollow ugc\">https://shorturl.fm/EU4bR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(578,161,'Neal2810','Neal2810@gmail.com','','125.25.10.146','2025-07-10 03:15:58','2025-07-10 03:15:58','Sign up now and access top-converting affiliate offers! <a href=\"https://shorturl.fm/gYsVN\" rel=\"nofollow ugc\">https://shorturl.fm/gYsVN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(579,162,'Jose3934','Jose3934@gmail.com','','125.25.10.146','2025-07-10 03:16:28','2025-07-10 03:16:28','Promote our products—get paid for every sale you generate! <a href=\"https://shorturl.fm/Ruks1\" rel=\"nofollow ugc\">https://shorturl.fm/Ruks1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(580,163,'Hermione2486','Hermione2486@gmail.com','','125.25.10.146','2025-07-10 03:16:56','2025-07-10 03:16:56','Be rewarded for every click—join our affiliate program today! <a href=\"https://shorturl.fm/atwHP\" rel=\"nofollow ugc\">https://shorturl.fm/atwHP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(581,1,'Maxwell2746','Maxwell2746@gmail.com','','47.122.26.171','2025-07-10 03:59:07','2025-07-10 03:59:07','Join our affiliate program today and earn generous commissions! <a href=\"https://shorturl.fm/Afd4r\" rel=\"nofollow ugc\">https://shorturl.fm/Afd4r</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(582,156,'McKenzie4068','McKenzie4068@gmail.com','','47.122.26.171','2025-07-10 03:59:34','2025-07-10 03:59:34','Earn up to 40% commission per sale—join our affiliate program now! <a href=\"https://shorturl.fm/naNy6\" rel=\"nofollow ugc\">https://shorturl.fm/naNy6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(583,157,'Bonnie4968','Bonnie4968@gmail.com','','47.122.26.171','2025-07-10 04:00:01','2025-07-10 04:00:01','Share your link, earn rewards—sign up for our affiliate program! <a href=\"https://shorturl.fm/b3oIv\" rel=\"nofollow ugc\">https://shorturl.fm/b3oIv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(584,158,'Tristan3204','Tristan3204@gmail.com','','47.122.26.171','2025-07-10 04:00:30','2025-07-10 04:00:30','Partner with us for generous payouts—sign up today! <a href=\"https://shorturl.fm/HU5CL\" rel=\"nofollow ugc\">https://shorturl.fm/HU5CL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(585,159,'Allison4318','Allison4318@gmail.com','','47.122.26.171','2025-07-10 04:00:56','2025-07-10 04:00:56','Sign up now and access top-converting affiliate offers! <a href=\"https://shorturl.fm/KVOHm\" rel=\"nofollow ugc\">https://shorturl.fm/KVOHm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(586,160,'Pamela3985','Pamela3985@gmail.com','','47.122.26.171','2025-07-10 04:01:25','2025-07-10 04:01:25','Promote our brand and get paid—enroll in our affiliate program! <a href=\"https://shorturl.fm/o202g\" rel=\"nofollow ugc\">https://shorturl.fm/o202g</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(587,161,'Ryder3558','Ryder3558@gmail.com','','47.122.26.171','2025-07-10 04:01:55','2025-07-10 04:01:55','Promote our brand and get paid—enroll in our affiliate program! <a href=\"https://shorturl.fm/o202g\" rel=\"nofollow ugc\">https://shorturl.fm/o202g</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(588,162,'Emory41','Emory41@gmail.com','','47.122.26.171','2025-07-10 04:02:27','2025-07-10 04:02:27','Share your link, earn rewards—sign up for our affiliate program! <a href=\"https://shorturl.fm/b3oIv\" rel=\"nofollow ugc\">https://shorturl.fm/b3oIv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(589,163,'Marcel3164','Marcel3164@gmail.com','','47.122.26.171','2025-07-10 04:02:55','2025-07-10 04:02:55','Sign up now and access top-converting affiliate offers! <a href=\"https://shorturl.fm/gYsVN\" rel=\"nofollow ugc\">https://shorturl.fm/gYsVN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(590,1,'Caden4454','Caden4454@gmail.com','','1.55.171.6','2025-07-10 10:51:01','2025-07-10 10:51:01','Turn referrals into revenue—sign up for our affiliate program today! <a href=\"https://shorturl.fm/boTtU\" rel=\"nofollow ugc\">https://shorturl.fm/boTtU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(591,161,'Benjamin2745','Benjamin2745@gmail.com','','1.55.171.6','2025-07-10 10:51:25','2025-07-10 10:51:25','Earn passive income this month—become an affiliate partner and get paid! <a href=\"https://shorturl.fm/z4noy\" rel=\"nofollow ugc\">https://shorturl.fm/z4noy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(592,156,'Dina3877','Dina3877@gmail.com','','171.249.125.92','2025-07-10 11:00:56','2025-07-10 11:00:56','Tap into a new revenue stream—become an affiliate partner! <a href=\"https://shorturl.fm/jtyug\" rel=\"nofollow ugc\">https://shorturl.fm/jtyug</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(593,157,'Robin1505','Robin1505@gmail.com','','171.249.125.92','2025-07-10 11:01:16','2025-07-10 11:01:16','Apply now and receive dedicated support for affiliates! <a href=\"https://shorturl.fm/BhbNM\" rel=\"nofollow ugc\">https://shorturl.fm/BhbNM</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(594,159,'Dalton4337','Dalton4337@gmail.com','','171.249.125.92','2025-07-10 11:01:44','2025-07-10 11:01:44','Drive sales, collect commissions—join our affiliate team! <a href=\"https://shorturl.fm/Z40Aa\" rel=\"nofollow ugc\">https://shorturl.fm/Z40Aa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(595,160,'Carmen493','Carmen493@gmail.com','','171.249.125.92','2025-07-10 11:02:03','2025-07-10 11:02:03','Get paid for every referral—enroll in our affiliate program! <a href=\"https://shorturl.fm/meESI\" rel=\"nofollow ugc\">https://shorturl.fm/meESI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(596,162,'Nia1298','Nia1298@gmail.com','','171.249.125.92','2025-07-10 11:02:35','2025-07-10 11:02:35','Join our affiliate family and watch your profits soar—sign up today! <a href=\"https://shorturl.fm/P4jtM\" rel=\"nofollow ugc\">https://shorturl.fm/P4jtM</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(597,163,'Amelia3745','Amelia3745@gmail.com','','171.249.125.92','2025-07-10 11:02:58','2025-07-10 11:02:58','Boost your profits with our affiliate program—apply today! <a href=\"https://shorturl.fm/TSPhR\" rel=\"nofollow ugc\">https://shorturl.fm/TSPhR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(598,1,'Carl684','Carl684@gmail.com','','34.242.245.234','2025-07-10 14:55:48','2025-07-10 14:55:48','Boost your earnings effortlessly—become our affiliate! <a href=\"https://shorturl.fm/XqFzl\" rel=\"nofollow ugc\">https://shorturl.fm/XqFzl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(599,160,'Alonzo1423','Alonzo1423@gmail.com','','34.242.245.234','2025-07-10 14:56:03','2025-07-10 14:56:03','Boost your earnings effortlessly—become our affiliate! <a href=\"https://shorturl.fm/XqFzl\" rel=\"nofollow ugc\">https://shorturl.fm/XqFzl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(600,1,'Jeremy3083','Jeremy3083@gmail.com','','183.80.206.105','2025-07-10 16:08:35','2025-07-10 16:08:35','Start earning instantly—become our affiliate and earn on every sale! <a href=\"https://shorturl.fm/N3fk9\" rel=\"nofollow ugc\">https://shorturl.fm/N3fk9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(601,160,'Hadley786','Hadley786@gmail.com','','183.80.206.105','2025-07-10 16:08:50','2025-07-10 16:08:50','Start profiting from your network—sign up today! <a href=\"https://shorturl.fm/PNI2Y\" rel=\"nofollow ugc\">https://shorturl.fm/PNI2Y</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(602,1,'Cara3976','Cara3976@gmail.com','','223.204.53.111','2025-07-11 00:54:00','2025-07-11 00:54:00','Get paid for every referral—enroll in our affiliate program! <a href=\"https://shorturl.fm/jLaDa\" rel=\"nofollow ugc\">https://shorturl.fm/jLaDa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(603,156,'Harrison2878','Harrison2878@gmail.com','','223.204.53.111','2025-07-11 00:54:25','2025-07-11 00:54:25','Apply now and receive dedicated support for affiliates! <a href=\"https://shorturl.fm/tQTLL\" rel=\"nofollow ugc\">https://shorturl.fm/tQTLL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(604,157,'Daria3551','Daria3551@gmail.com','','223.204.53.111','2025-07-11 00:54:52','2025-07-11 00:54:52','Become our affiliate—tap into unlimited earning potential! <a href=\"https://shorturl.fm/6tjly\" rel=\"nofollow ugc\">https://shorturl.fm/6tjly</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(605,158,'Tanya2046','Tanya2046@gmail.com','','223.204.53.111','2025-07-11 00:55:19','2025-07-11 00:55:19','Join our affiliate program today and start earning up to 30% commission—sign up now! <a href=\"https://shorturl.fm/9g6Wc\" rel=\"nofollow ugc\">https://shorturl.fm/9g6Wc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(606,159,'Jacob3005','Jacob3005@gmail.com','','223.204.53.111','2025-07-11 00:55:45','2025-07-11 00:55:45','Become our partner now and start turning referrals into revenue! <a href=\"https://shorturl.fm/nxrUn\" rel=\"nofollow ugc\">https://shorturl.fm/nxrUn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(607,160,'Anabel2619','Anabel2619@gmail.com','','223.204.53.111','2025-07-11 00:56:13','2025-07-11 00:56:13','Promote our products and earn real money—apply today! <a href=\"https://shorturl.fm/iiC7m\" rel=\"nofollow ugc\">https://shorturl.fm/iiC7m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(608,161,'Celeste3282','Celeste3282@gmail.com','','223.204.53.111','2025-07-11 00:56:39','2025-07-11 00:56:39','Tap into unlimited earnings—sign up for our affiliate program! <a href=\"https://shorturl.fm/N49E6\" rel=\"nofollow ugc\">https://shorturl.fm/N49E6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(609,162,'Olivia4796','Olivia4796@gmail.com','','223.204.53.111','2025-07-11 00:57:10','2025-07-11 00:57:10','Apply now and receive dedicated support for affiliates! <a href=\"https://shorturl.fm/tQTLL\" rel=\"nofollow ugc\">https://shorturl.fm/tQTLL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(610,163,'Marilyn3163','Marilyn3163@gmail.com','','223.204.53.111','2025-07-11 00:57:36','2025-07-11 00:57:36','Share our products and watch your earnings grow—join our affiliate program! <a href=\"https://shorturl.fm/NkZEy\" rel=\"nofollow ugc\">https://shorturl.fm/NkZEy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(611,158,'Hope4683','Hope4683@gmail.com','','103.166.255.170','2025-07-11 06:08:45','2025-07-11 06:08:45','Become our affiliate—tap into unlimited earning potential! <a href=\"https://shorturl.fm/0ORw3\" rel=\"nofollow ugc\">https://shorturl.fm/0ORw3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(612,161,'Lacey4501','Lacey4501@gmail.com','','103.166.255.170','2025-07-11 06:09:19','2025-07-11 06:09:19','Monetize your audience—become an affiliate partner now! <a href=\"https://shorturl.fm/WLxl6\" rel=\"nofollow ugc\">https://shorturl.fm/WLxl6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(613,1,'Sally4242','Sally4242@gmail.com','','134.35.23.173','2025-07-11 06:41:02','2025-07-11 06:41:02','Drive sales, earn big—enroll in our affiliate program! <a href=\"https://shorturl.fm/w4dRE\" rel=\"nofollow ugc\">https://shorturl.fm/w4dRE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(614,156,'Valentina3577','Valentina3577@gmail.com','','134.35.23.173','2025-07-11 06:41:28','2025-07-11 06:41:28','Tap into unlimited earning potential—become our affiliate partner! <a href=\"https://shorturl.fm/b7ktb\" rel=\"nofollow ugc\">https://shorturl.fm/b7ktb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(615,157,'Christian2354','Christian2354@gmail.com','','134.35.23.173','2025-07-11 06:41:55','2025-07-11 06:41:55','Join forces with us and profit from every click! <a href=\"https://shorturl.fm/sO605\" rel=\"nofollow ugc\">https://shorturl.fm/sO605</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(616,158,'Krista2409','Krista2409@gmail.com','','134.35.23.173','2025-07-11 06:42:23','2025-07-11 06:42:23','Unlock top-tier commissions—become our affiliate partner now! <a href=\"https://shorturl.fm/70nFS\" rel=\"nofollow ugc\">https://shorturl.fm/70nFS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(617,159,'Victoria4201','Victoria4201@gmail.com','','134.35.23.173','2025-07-11 06:42:50','2025-07-11 06:42:50','Monetize your audience—become an affiliate partner now! <a href=\"https://shorturl.fm/FMXGP\" rel=\"nofollow ugc\">https://shorturl.fm/FMXGP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(618,160,'Caden3797','Caden3797@gmail.com','','134.35.23.173','2025-07-11 06:43:18','2025-07-11 06:43:18','Join our affiliate community and earn more—register now! <a href=\"https://shorturl.fm/14c0o\" rel=\"nofollow ugc\">https://shorturl.fm/14c0o</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(619,161,'Alison1918','Alison1918@gmail.com','','134.35.23.173','2025-07-11 06:43:46','2025-07-11 06:43:46','Become our affiliate—tap into unlimited earning potential! <a href=\"https://shorturl.fm/CieCh\" rel=\"nofollow ugc\">https://shorturl.fm/CieCh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(620,162,'Kathy3090','Kathy3090@gmail.com','','134.35.23.173','2025-07-11 06:44:14','2025-07-11 06:44:14','Join our affiliate community and start earning instantly! <a href=\"https://shorturl.fm/9MyMa\" rel=\"nofollow ugc\">https://shorturl.fm/9MyMa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(621,163,'Luca1630','Luca1630@gmail.com','','134.35.23.173','2025-07-11 06:44:40','2025-07-11 06:44:40','Monetize your audience—become an affiliate partner now! <a href=\"https://shorturl.fm/WLxl6\" rel=\"nofollow ugc\">https://shorturl.fm/WLxl6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(622,1,'Ally2067','Ally2067@gmail.com','','203.150.113.54','2025-07-11 09:48:09','2025-07-11 09:48:09','Get paid for every click—join our affiliate network now! <a href=\"https://shorturl.fm/hBX2C\" rel=\"nofollow ugc\">https://shorturl.fm/hBX2C</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(623,156,'Brady4676','Brady4676@gmail.com','','203.150.113.54','2025-07-11 09:48:34','2025-07-11 09:48:34','Join our affiliate program today and earn generous commissions! <a href=\"https://shorturl.fm/pA1Rk\" rel=\"nofollow ugc\">https://shorturl.fm/pA1Rk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(624,157,'Jessica790','Jessica790@gmail.com','','203.150.113.54','2025-07-11 09:48:59','2025-07-11 09:48:59','Unlock exclusive rewards with every referral—apply to our affiliate program now! <a href=\"https://shorturl.fm/fLCpr\" rel=\"nofollow ugc\">https://shorturl.fm/fLCpr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(625,158,'Julius4077','Julius4077@gmail.com','','203.150.113.54','2025-07-11 09:49:24','2025-07-11 09:49:24','Partner with us for high-paying affiliate deals—join now! <a href=\"https://shorturl.fm/9kbWW\" rel=\"nofollow ugc\">https://shorturl.fm/9kbWW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(626,159,'Elinor862','Elinor862@gmail.com','','203.150.113.54','2025-07-11 09:49:50','2025-07-11 09:49:50','Join our affiliate program today and earn generous commissions! <a href=\"https://shorturl.fm/pA1Rk\" rel=\"nofollow ugc\">https://shorturl.fm/pA1Rk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(627,160,'Drake256','Drake256@gmail.com','','203.150.113.54','2025-07-11 09:50:17','2025-07-11 09:50:17','Become our partner and turn referrals into revenue—join now! <a href=\"https://shorturl.fm/xsCcT\" rel=\"nofollow ugc\">https://shorturl.fm/xsCcT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(628,161,'Leonel228','Leonel228@gmail.com','','203.150.113.54','2025-07-11 09:50:43','2025-07-11 09:50:43','Share our products, earn up to 40% per sale—apply today! <a href=\"https://shorturl.fm/8z4HJ\" rel=\"nofollow ugc\">https://shorturl.fm/8z4HJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(629,162,'Nadia881','Nadia881@gmail.com','','203.150.113.54','2025-07-11 09:51:07','2025-07-11 09:51:07','Monetize your audience with our high-converting offers—apply today! <a href=\"https://shorturl.fm/hKLmk\" rel=\"nofollow ugc\">https://shorturl.fm/hKLmk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(630,163,'Wyatt3877','Wyatt3877@gmail.com','','203.150.113.54','2025-07-11 09:51:33','2025-07-11 09:51:33','Become our partner now and start turning referrals into revenue! <a href=\"https://shorturl.fm/GOdvN\" rel=\"nofollow ugc\">https://shorturl.fm/GOdvN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(631,1,'Tara2249','Tara2249@gmail.com','','171.228.169.244','2025-07-11 19:15:44','2025-07-11 19:15:44','Join our affiliate program and watch your earnings skyrocket—sign up now! <a href=\"https://shorturl.fm/AZ1go\" rel=\"nofollow ugc\">https://shorturl.fm/AZ1go</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(632,156,'Joanna2844','Joanna2844@gmail.com','','171.228.169.244','2025-07-11 19:16:09','2025-07-11 19:16:09','Start earning instantly—become our affiliate and earn on every sale! <a href=\"https://shorturl.fm/FBwiJ\" rel=\"nofollow ugc\">https://shorturl.fm/FBwiJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(633,157,'Isabella2490','Isabella2490@gmail.com','','171.228.169.244','2025-07-11 19:16:35','2025-07-11 19:16:35','Partner with us and enjoy recurring commission payouts! <a href=\"https://shorturl.fm/0jYYU\" rel=\"nofollow ugc\">https://shorturl.fm/0jYYU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(634,158,'Bob482','Bob482@gmail.com','','171.228.169.244','2025-07-11 19:17:01','2025-07-11 19:17:01','Sign up for our affiliate program and watch your earnings grow! <a href=\"https://shorturl.fm/9BBdy\" rel=\"nofollow ugc\">https://shorturl.fm/9BBdy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(635,160,'London4544','London4544@gmail.com','','171.228.169.244','2025-07-11 19:17:28','2025-07-11 19:17:28','Boost your profits with our affiliate program—apply today! <a href=\"https://shorturl.fm/QjzcF\" rel=\"nofollow ugc\">https://shorturl.fm/QjzcF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(636,161,'Alaina3581','Alaina3581@gmail.com','','171.228.169.244','2025-07-11 19:17:54','2025-07-11 19:17:54','Join our affiliate program and watch your earnings skyrocket—sign up now! <a href=\"https://shorturl.fm/AZ1go\" rel=\"nofollow ugc\">https://shorturl.fm/AZ1go</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(637,162,'Evelyn3060','Evelyn3060@gmail.com','','171.228.169.244','2025-07-11 19:18:23','2025-07-11 19:18:23','Partner with us for generous payouts—sign up today! <a href=\"https://shorturl.fm/bBcGx\" rel=\"nofollow ugc\">https://shorturl.fm/bBcGx</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(638,163,'Chase4110','Chase4110@gmail.com','','171.228.169.244','2025-07-11 19:18:49','2025-07-11 19:18:49','Boost your earnings effortlessly—become our affiliate! <a href=\"https://shorturl.fm/GvmfU\" rel=\"nofollow ugc\">https://shorturl.fm/GvmfU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(639,1,'Rayan Frederick','jaquelinerandolph@gmail.com','https://tempmailq.com','85.107.71.156','2025-07-11 20:10:29','2025-07-11 20:10:29','Ne zamandır web sitelerim için aradığım içeriği sonunda buldum. Bu kadar detaylı ve net açıklama için teşekkürler.',0,'0','','comment',0,0),(640,1,'Marion1300','Marion1300@gmail.com','','171.228.180.189','2025-07-12 00:08:08','2025-07-12 00:08:08','Boost your profits with our affiliate program—apply today! <a href=\"https://shorturl.fm/tmvPz\" rel=\"nofollow ugc\">https://shorturl.fm/tmvPz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(641,157,'Leonard2941','Leonard2941@gmail.com','','171.228.180.189','2025-07-12 00:08:36','2025-07-12 00:08:36','Promote our brand and watch your income grow—join today! <a href=\"https://shorturl.fm/WPaR3\" rel=\"nofollow ugc\">https://shorturl.fm/WPaR3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(642,158,'Edmund1336','Edmund1336@gmail.com','','171.228.180.189','2025-07-12 00:09:06','2025-07-12 00:09:06','Promote our brand, reap the rewards—apply to our affiliate program today! <a href=\"https://shorturl.fm/xtZkb\" rel=\"nofollow ugc\">https://shorturl.fm/xtZkb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(643,159,'Jim4023','Jim4023@gmail.com','','171.228.180.189','2025-07-12 00:09:33','2025-07-12 00:09:33','Partner with us and earn recurring commissions—join the affiliate program! <a href=\"https://shorturl.fm/jeQyA\" rel=\"nofollow ugc\">https://shorturl.fm/jeQyA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(644,160,'Larry4828','Larry4828@gmail.com','','171.228.180.189','2025-07-12 00:10:01','2025-07-12 00:10:01','Get paid for every referral—sign up for our affiliate program now! <a href=\"https://shorturl.fm/75um3\" rel=\"nofollow ugc\">https://shorturl.fm/75um3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(645,161,'Mara2771','Mara2771@gmail.com','','171.228.180.189','2025-07-12 00:10:28','2025-07-12 00:10:28','Promote our brand, reap the rewards—apply to our affiliate program today! <a href=\"https://shorturl.fm/xtZkb\" rel=\"nofollow ugc\">https://shorturl.fm/xtZkb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(646,162,'Lori2718','Lori2718@gmail.com','','171.228.180.189','2025-07-12 00:10:54','2025-07-12 00:10:54','Partner with us and enjoy recurring commission payouts! <a href=\"https://shorturl.fm/O1G0k\" rel=\"nofollow ugc\">https://shorturl.fm/O1G0k</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(647,163,'Ginger202','Ginger202@gmail.com','','171.228.180.189','2025-07-12 00:11:22','2025-07-12 00:11:22','Join our affiliate community and maximize your profits—sign up now! <a href=\"https://shorturl.fm/v8Gca\" rel=\"nofollow ugc\">https://shorturl.fm/v8Gca</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(648,1,'Jessie1041','Jessie1041@gmail.com','','61.198.93.227','2025-07-12 05:09:01','2025-07-12 05:09:01','Refer and earn up to 50% commission—join now! <a href=\"https://shorturl.fm/y99tR\" rel=\"nofollow ugc\">https://shorturl.fm/y99tR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(649,156,'Sara396','Sara396@gmail.com','','61.198.93.227','2025-07-12 05:09:28','2025-07-12 05:09:28','Promote our brand and get paid—enroll in our affiliate program! <a href=\"https://shorturl.fm/LH5hK\" rel=\"nofollow ugc\">https://shorturl.fm/LH5hK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(650,157,'Hermione518','Hermione518@gmail.com','','61.198.93.227','2025-07-12 05:09:53','2025-07-12 05:09:53','Refer customers, collect commissions—join our affiliate program! <a href=\"https://shorturl.fm/tElLQ\" rel=\"nofollow ugc\">https://shorturl.fm/tElLQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(651,158,'Charlie2131','Charlie2131@gmail.com','','61.198.93.227','2025-07-12 05:10:18','2025-07-12 05:10:18','Grow your income stream—apply to our affiliate program today! <a href=\"https://shorturl.fm/YktHg\" rel=\"nofollow ugc\">https://shorturl.fm/YktHg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(652,159,'Priscilla1690','Priscilla1690@gmail.com','','61.198.93.227','2025-07-12 05:10:43','2025-07-12 05:10:43','Share our offers and watch your wallet grow—become an affiliate! <a href=\"https://shorturl.fm/FWwes\" rel=\"nofollow ugc\">https://shorturl.fm/FWwes</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(653,160,'Bianca4776','Bianca4776@gmail.com','','61.198.93.227','2025-07-12 05:11:07','2025-07-12 05:11:07','Earn up to 40% commission per sale—join our affiliate program now! <a href=\"https://shorturl.fm/KSuga\" rel=\"nofollow ugc\">https://shorturl.fm/KSuga</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(654,161,'Robin2183','Robin2183@gmail.com','','61.198.93.227','2025-07-12 05:11:32','2025-07-12 05:11:32','Drive sales, earn big—enroll in our affiliate program! <a href=\"https://shorturl.fm/C3uvo\" rel=\"nofollow ugc\">https://shorturl.fm/C3uvo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(655,162,'Bella4752','Bella4752@gmail.com','','61.198.93.227','2025-07-12 05:11:56','2025-07-12 05:11:56','Boost your income effortlessly—join our affiliate network now! <a href=\"https://shorturl.fm/KRWXl\" rel=\"nofollow ugc\">https://shorturl.fm/KRWXl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(656,163,'Madeleine968','Madeleine968@gmail.com','','61.198.93.227','2025-07-12 05:12:23','2025-07-12 05:12:23','Drive sales, earn big—enroll in our affiliate program! <a href=\"https://shorturl.fm/C3uvo\" rel=\"nofollow ugc\">https://shorturl.fm/C3uvo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(657,1,'Eileen784','Eileen784@gmail.com','','27.79.154.66','2025-07-12 05:19:25','2025-07-12 05:19:25','Earn passive income this month—become an affiliate partner and get paid! <a href=\"https://shorturl.fm/idWWo\" rel=\"nofollow ugc\">https://shorturl.fm/idWWo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(658,1,'Felicity4537','Felicity4537@gmail.com','','27.79.193.171','2025-07-12 06:04:23','2025-07-12 06:04:23','Refer customers, collect commissions—join our affiliate program! <a href=\"https://shorturl.fm/tElLQ\" rel=\"nofollow ugc\">https://shorturl.fm/tElLQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(659,158,'Fred3474','Fred3474@gmail.com','','27.79.193.171','2025-07-12 06:05:13','2025-07-12 06:05:13','Monetize your influence—become an affiliate today! <a href=\"https://shorturl.fm/OXQew\" rel=\"nofollow ugc\">https://shorturl.fm/OXQew</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(660,162,'Ronald1825','Ronald1825@gmail.com','','27.79.193.171','2025-07-12 06:05:29','2025-07-12 06:05:29','Promote our brand and get paid—enroll in our affiliate program! <a href=\"https://shorturl.fm/LH5hK\" rel=\"nofollow ugc\">https://shorturl.fm/LH5hK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(661,163,'Frida568','Frida568@gmail.com','','27.79.193.171','2025-07-12 06:05:48','2025-07-12 06:05:48','Turn traffic into cash—apply to our affiliate program today! <a href=\"https://shorturl.fm/GFyl9\" rel=\"nofollow ugc\">https://shorturl.fm/GFyl9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(662,1,'Ivy3494','Ivy3494@gmail.com','','183.80.22.16','2025-07-12 07:42:15','2025-07-12 07:42:15','Refer and earn up to 50% commission—join now! <a href=\"https://shorturl.fm/jCDdk\" rel=\"nofollow ugc\">https://shorturl.fm/jCDdk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(663,160,'Axel2710','Axel2710@gmail.com','','183.80.22.16','2025-07-12 07:42:30','2025-07-12 07:42:30','Refer and earn up to 50% commission—join now! <a href=\"https://shorturl.fm/jCDdk\" rel=\"nofollow ugc\">https://shorturl.fm/jCDdk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(664,1,'hdfilmcehennemi','topito183@hotmail.com','https://www.hdfilmcehennemi3.space/','51.159.37.33','2025-07-12 19:18:34','2025-07-12 19:18:34','An impressive share, I just offered this onto a coworker that was doing a little analysis on this. And he in fact acquired me morning meal due to the fact that I discovered it for him. smile. So let me reword that: Thnx for the treat! But yeah Thnkx for investing the time to discuss this, I really feel strongly about it as well as enjoy learning more on this subject. When possible, as you come to be expertise, would you mind upgrading your blog with even more information? It is very useful for me. Large thumb up for this post! Faustino Cembura',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(665,1,'Kane4437','Kane4437@gmail.com','','49.48.42.32','2025-07-12 23:39:42','2025-07-12 23:39:42','Unlock top-tier commissions—become our affiliate partner now! <a href=\"https://shorturl.fm/OhlY6\" rel=\"nofollow ugc\">https://shorturl.fm/OhlY6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(666,156,'Judith2112','Judith2112@gmail.com','','49.48.42.32','2025-07-12 23:40:06','2025-07-12 23:40:06','Share your link and rake in rewards—join our affiliate team! <a href=\"https://shorturl.fm/d08P2\" rel=\"nofollow ugc\">https://shorturl.fm/d08P2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(667,157,'Steve878','Steve878@gmail.com','','49.48.42.32','2025-07-12 23:40:30','2025-07-12 23:40:30','Sign up now and access top-converting affiliate offers! <a href=\"https://shorturl.fm/9F6nX\" rel=\"nofollow ugc\">https://shorturl.fm/9F6nX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(668,158,'Monica971','Monica971@gmail.com','','49.48.42.32','2025-07-12 23:40:54','2025-07-12 23:40:54','Earn passive income this month—become an affiliate partner and get paid! <a href=\"https://shorturl.fm/2Y0SF\" rel=\"nofollow ugc\">https://shorturl.fm/2Y0SF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(669,159,'Harold4913','Harold4913@gmail.com','','49.48.42.32','2025-07-12 23:41:18','2025-07-12 23:41:18','Share our products and watch your earnings grow—join our affiliate program! <a href=\"https://shorturl.fm/mY5wy\" rel=\"nofollow ugc\">https://shorturl.fm/mY5wy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(670,160,'Briana1260','Briana1260@gmail.com','','49.48.42.32','2025-07-12 23:41:40','2025-07-12 23:41:40','Unlock top-tier commissions—become our affiliate partner now! <a href=\"https://shorturl.fm/OhlY6\" rel=\"nofollow ugc\">https://shorturl.fm/OhlY6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(671,161,'Marco3615','Marco3615@gmail.com','','49.48.42.32','2025-07-12 23:42:02','2025-07-12 23:42:02','Grow your income stream—apply to our affiliate program today! <a href=\"https://shorturl.fm/FfnSN\" rel=\"nofollow ugc\">https://shorturl.fm/FfnSN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(672,162,'Annie168','Annie168@gmail.com','','49.48.42.32','2025-07-12 23:42:26','2025-07-12 23:42:26','Earn passive income this month—become an affiliate partner and get paid! <a href=\"https://shorturl.fm/2Y0SF\" rel=\"nofollow ugc\">https://shorturl.fm/2Y0SF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(673,163,'Alexa3664','Alexa3664@gmail.com','','49.48.42.32','2025-07-12 23:42:46','2025-07-12 23:42:46','Maximize your earnings with top-tier offers—apply now! <a href=\"https://shorturl.fm/AKqaG\" rel=\"nofollow ugc\">https://shorturl.fm/AKqaG</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(674,1,'Marco2439','Marco2439@gmail.com','','1.54.77.242','2025-07-13 00:29:58','2025-07-13 00:29:58','Share your link and rake in rewards—join our affiliate team! <a href=\"https://shorturl.fm/d08P2\" rel=\"nofollow ugc\">https://shorturl.fm/d08P2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(675,161,'Briley575','Briley575@gmail.com','','1.54.77.242','2025-07-13 00:30:13','2025-07-13 00:30:13','Tap into unlimited earnings—sign up for our affiliate program! <a href=\"https://shorturl.fm/bkwGd\" rel=\"nofollow ugc\">https://shorturl.fm/bkwGd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(676,162,'Teagan2779','Teagan2779@gmail.com','','1.54.77.242','2025-07-13 00:30:42','2025-07-13 00:30:42','Promote our brand, reap the rewards—apply to our affiliate program today! <a href=\"https://shorturl.fm/hCyeZ\" rel=\"nofollow ugc\">https://shorturl.fm/hCyeZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(677,1,'Rodney2085','Rodney2085@gmail.com','','8.134.35.3','2025-07-13 09:12:14','2025-07-13 09:12:14','Join our affiliate program today and earn generous commissions! <a href=\"https://shorturl.fm/dUhWm\" rel=\"nofollow ugc\">https://shorturl.fm/dUhWm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(678,156,'Jeff140','Jeff140@gmail.com','','8.134.35.3','2025-07-13 09:12:41','2025-07-13 09:12:41','Become our partner and turn referrals into revenue—join now! <a href=\"https://shorturl.fm/NbYml\" rel=\"nofollow ugc\">https://shorturl.fm/NbYml</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(679,157,'Kyle1503','Kyle1503@gmail.com','','8.134.35.3','2025-07-13 09:13:09','2025-07-13 09:13:09','Maximize your earnings with top-tier offers—apply now! <a href=\"https://shorturl.fm/3KoGt\" rel=\"nofollow ugc\">https://shorturl.fm/3KoGt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(680,158,'Greg2120','Greg2120@gmail.com','','8.134.35.3','2025-07-13 09:13:35','2025-07-13 09:13:35','Start earning every time someone clicks—join now! <a href=\"https://shorturl.fm/qek0P\" rel=\"nofollow ugc\">https://shorturl.fm/qek0P</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(681,159,'Sam4792','Sam4792@gmail.com','','8.134.35.3','2025-07-13 09:14:01','2025-07-13 09:14:01','Promote, refer, earn—join our affiliate program now! <a href=\"https://shorturl.fm/hpEpg\" rel=\"nofollow ugc\">https://shorturl.fm/hpEpg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(682,160,'Beckett4203','Beckett4203@gmail.com','','8.134.35.3','2025-07-13 09:14:26','2025-07-13 09:14:26','Start earning every time someone clicks—join now! <a href=\"https://shorturl.fm/GwfX1\" rel=\"nofollow ugc\">https://shorturl.fm/GwfX1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(683,161,'Mario1913','Mario1913@gmail.com','','8.134.35.3','2025-07-13 09:14:53','2025-07-13 09:14:53','Turn your network into income—apply to our affiliate program! <a href=\"https://shorturl.fm/r8fvw\" rel=\"nofollow ugc\">https://shorturl.fm/r8fvw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(684,163,'Walter1057','Walter1057@gmail.com','','8.134.35.3','2025-07-13 09:15:31','2025-07-13 09:15:31','Start earning passive income—join our affiliate network today! <a href=\"https://shorturl.fm/JwB6B\" rel=\"nofollow ugc\">https://shorturl.fm/JwB6B</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(685,1,'Lydia598','Lydia598@gmail.com','','3.91.243.172','2025-07-13 14:46:20','2025-07-13 14:46:20','Boost your profits with our affiliate program—apply today! <a href=\"https://shorturl.fm/A83B6\" rel=\"nofollow ugc\">https://shorturl.fm/A83B6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(686,156,'Madeleine4916','Madeleine4916@gmail.com','','3.91.243.172','2025-07-13 14:46:43','2025-07-13 14:46:43','Partner with us and enjoy recurring commission payouts! <a href=\"https://shorturl.fm/9NjiH\" rel=\"nofollow ugc\">https://shorturl.fm/9NjiH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(687,157,'Darryl1794','Darryl1794@gmail.com','','3.91.243.172','2025-07-13 14:47:07','2025-07-13 14:47:07','Start sharing, start earning—become our affiliate today! <a href=\"https://shorturl.fm/PQdXQ\" rel=\"nofollow ugc\">https://shorturl.fm/PQdXQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(688,158,'Allen1686','Allen1686@gmail.com','','3.91.243.172','2025-07-13 14:47:30','2025-07-13 14:47:30','Share your link, earn rewards—sign up for our affiliate program! <a href=\"https://shorturl.fm/VvSHy\" rel=\"nofollow ugc\">https://shorturl.fm/VvSHy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(689,159,'Hadley1737','Hadley1737@gmail.com','','3.91.243.172','2025-07-13 14:47:54','2025-07-13 14:47:54','Partner with us and enjoy recurring commission payouts! <a href=\"https://shorturl.fm/4hQXh\" rel=\"nofollow ugc\">https://shorturl.fm/4hQXh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(690,160,'Claire3890','Claire3890@gmail.com','','3.91.243.172','2025-07-13 14:48:19','2025-07-13 14:48:19','Partner with us and enjoy recurring commission payouts! <a href=\"https://shorturl.fm/9NjiH\" rel=\"nofollow ugc\">https://shorturl.fm/9NjiH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(691,161,'Jenny4325','Jenny4325@gmail.com','','3.91.243.172','2025-07-13 14:48:42','2025-07-13 14:48:42','Drive sales, earn commissions—apply now! <a href=\"https://shorturl.fm/yTuSZ\" rel=\"nofollow ugc\">https://shorturl.fm/yTuSZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(692,162,'Brandon1641','Brandon1641@gmail.com','','3.91.243.172','2025-07-13 14:49:06','2025-07-13 14:49:06','Boost your income effortlessly—join our affiliate network now! <a href=\"https://shorturl.fm/1Kq31\" rel=\"nofollow ugc\">https://shorturl.fm/1Kq31</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(693,163,'Keegan1170','Keegan1170@gmail.com','','3.91.243.172','2025-07-13 14:49:30','2025-07-13 14:49:30','Start sharing, start earning—become our affiliate today! <a href=\"https://shorturl.fm/PQdXQ\" rel=\"nofollow ugc\">https://shorturl.fm/PQdXQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(694,1,'Justin1713','Justin1713@gmail.com','','207.166.178.72','2025-07-13 21:53:28','2025-07-13 21:53:28','Join our affiliate community and maximize your profits—sign up now! <a href=\"https://shorturl.fm/p3Qm9\" rel=\"nofollow ugc\">https://shorturl.fm/p3Qm9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(695,156,'Amelie1580','Amelie1580@gmail.com','','207.166.178.72','2025-07-13 21:53:49','2025-07-13 21:53:49','Maximize your income with our high-converting offers—join as an affiliate! <a href=\"https://shorturl.fm/bCAM9\" rel=\"nofollow ugc\">https://shorturl.fm/bCAM9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(696,157,'Jacqueline725','Jacqueline725@gmail.com','','207.166.178.72','2025-07-13 21:54:05','2025-07-13 21:54:05','Tap into unlimited earnings—sign up for our affiliate program! <a href=\"https://shorturl.fm/qqdhy\" rel=\"nofollow ugc\">https://shorturl.fm/qqdhy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(697,1,'Vivian2449','Vivian2449@gmail.com','','222.228.171.92','2025-07-13 21:54:31','2025-07-13 21:54:31','Share your unique link and earn up to 40% commission! <a href=\"https://shorturl.fm/85xdL\" rel=\"nofollow ugc\">https://shorturl.fm/85xdL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(698,156,'Xavier2756','Xavier2756@gmail.com','','222.228.171.92','2025-07-13 21:54:50','2025-07-13 21:54:50','Get started instantly—earn on every referral you make! <a href=\"https://shorturl.fm/qtNqc\" rel=\"nofollow ugc\">https://shorturl.fm/qtNqc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(699,157,'Alden2434','Alden2434@gmail.com','','222.228.171.92','2025-07-13 21:55:13','2025-07-13 21:55:13','Refer friends and colleagues—get paid for every signup! <a href=\"https://shorturl.fm/sEf5A\" rel=\"nofollow ugc\">https://shorturl.fm/sEf5A</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(700,159,'Liam3155','Liam3155@gmail.com','','222.228.171.92','2025-07-13 21:55:45','2025-07-13 21:55:45','Promote our products—get paid for every sale you generate! <a href=\"https://shorturl.fm/P7Rvu\" rel=\"nofollow ugc\">https://shorturl.fm/P7Rvu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(701,160,'Edna4908','Edna4908@gmail.com','','222.228.171.92','2025-07-13 21:56:03','2025-07-13 21:56:03','Join our affiliate program today and start earning up to 30% commission—sign up now! <a href=\"https://shorturl.fm/Xtht0\" rel=\"nofollow ugc\">https://shorturl.fm/Xtht0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(702,161,'Emma3372','Emma3372@gmail.com','','222.228.171.92','2025-07-13 21:56:21','2025-07-13 21:56:21','Get started instantly—earn on every referral you make! <a href=\"https://shorturl.fm/qtNqc\" rel=\"nofollow ugc\">https://shorturl.fm/qtNqc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(703,162,'Elaine2144','Elaine2144@gmail.com','','222.228.171.92','2025-07-13 21:56:41','2025-07-13 21:56:41','Become our partner and turn referrals into revenue—join now! <a href=\"https://shorturl.fm/eUfak\" rel=\"nofollow ugc\">https://shorturl.fm/eUfak</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(704,163,'Paris1700','Paris1700@gmail.com','','14.184.75.189','2025-07-13 22:22:38','2025-07-13 22:22:38','Your influence, your income—join our affiliate network today! <a href=\"https://shorturl.fm/CIU9A\" rel=\"nofollow ugc\">https://shorturl.fm/CIU9A</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(705,1,'Carey4222','Carey4222@gmail.com','','188.121.119.150','2025-07-14 11:52:39','2025-07-14 11:52:39','Tap into a new revenue stream—become an affiliate partner! <a href=\"https://shorturl.fm/s8WRK\" rel=\"nofollow ugc\">https://shorturl.fm/s8WRK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(706,156,'Angelina1765','Angelina1765@gmail.com','','188.121.119.150','2025-07-14 11:53:04','2025-07-14 11:53:04','Start profiting from your traffic—sign up today! <a href=\"https://shorturl.fm/vozX8\" rel=\"nofollow ugc\">https://shorturl.fm/vozX8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(707,157,'Paris3481','Paris3481@gmail.com','','188.121.119.150','2025-07-14 11:53:26','2025-07-14 11:53:26','Share our products, earn up to 40% per sale—apply today! <a href=\"https://shorturl.fm/xlRLp\" rel=\"nofollow ugc\">https://shorturl.fm/xlRLp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(708,158,'Aubree2112','Aubree2112@gmail.com','','188.121.119.150','2025-07-14 11:53:51','2025-07-14 11:53:51','Refer friends and colleagues—get paid for every signup! <a href=\"https://shorturl.fm/DPr78\" rel=\"nofollow ugc\">https://shorturl.fm/DPr78</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(709,159,'Cameron4232','Cameron4232@gmail.com','','188.121.119.150','2025-07-14 11:54:19','2025-07-14 11:54:19','Unlock top-tier commissions—become our affiliate partner now! <a href=\"https://shorturl.fm/KZWq2\" rel=\"nofollow ugc\">https://shorturl.fm/KZWq2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(710,160,'Darby3499','Darby3499@gmail.com','','188.121.119.150','2025-07-14 11:54:45','2025-07-14 11:54:45','Earn passive income with every click—sign up today! <a href=\"https://shorturl.fm/QD90r\" rel=\"nofollow ugc\">https://shorturl.fm/QD90r</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(711,161,'Donna1560','Donna1560@gmail.com','','188.121.119.150','2025-07-14 11:55:10','2025-07-14 11:55:10','Apply now and receive dedicated support for affiliates! <a href=\"https://shorturl.fm/hz6rS\" rel=\"nofollow ugc\">https://shorturl.fm/hz6rS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(712,162,'Miguel1757','Miguel1757@gmail.com','','188.121.119.150','2025-07-14 11:55:35','2025-07-14 11:55:35','Boost your income effortlessly—join our affiliate network now! <a href=\"https://shorturl.fm/frshD\" rel=\"nofollow ugc\">https://shorturl.fm/frshD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(713,163,'Edward851','Edward851@gmail.com','','188.121.119.150','2025-07-14 11:56:01','2025-07-14 11:56:01','Refer friends and colleagues—get paid for every signup! <a href=\"https://shorturl.fm/DPr78\" rel=\"nofollow ugc\">https://shorturl.fm/DPr78</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(714,1,'Emmett777','Emmett777@gmail.com','','103.172.23.174','2025-07-15 04:57:50','2025-07-15 04:57:50','Sign up and turn your connections into cash—join our affiliate program! <a href=\"https://shorturl.fm/wxbUJ\" rel=\"nofollow ugc\">https://shorturl.fm/wxbUJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(715,156,'Eddie4468','Eddie4468@gmail.com','','103.172.23.174','2025-07-15 04:58:14','2025-07-15 04:58:14','Start profiting from your traffic—sign up today! <a href=\"https://shorturl.fm/pWZ7j\" rel=\"nofollow ugc\">https://shorturl.fm/pWZ7j</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(716,157,'Connie3723','Connie3723@gmail.com','','103.172.23.174','2025-07-15 04:58:40','2025-07-15 04:58:40','Partner with us for high-paying affiliate deals—join now! <a href=\"https://shorturl.fm/JtetU\" rel=\"nofollow ugc\">https://shorturl.fm/JtetU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(717,158,'Faye873','Faye873@gmail.com','','103.172.23.174','2025-07-15 04:59:06','2025-07-15 04:59:06','Join forces with us and profit from every click! <a href=\"https://shorturl.fm/VieyQ\" rel=\"nofollow ugc\">https://shorturl.fm/VieyQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(718,159,'Kirsten870','Kirsten870@gmail.com','','103.172.23.174','2025-07-15 04:59:33','2025-07-15 04:59:33','Turn your traffic into cash—join our affiliate program! <a href=\"https://shorturl.fm/Yzalm\" rel=\"nofollow ugc\">https://shorturl.fm/Yzalm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(719,160,'Miles2953','Miles2953@gmail.com','','103.172.23.174','2025-07-15 05:00:04','2025-07-15 05:00:04','Sign up now and access top-converting affiliate offers! <a href=\"https://shorturl.fm/FWnyv\" rel=\"nofollow ugc\">https://shorturl.fm/FWnyv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(720,161,'Graham3746','Graham3746@gmail.com','','103.172.23.174','2025-07-15 05:00:30','2025-07-15 05:00:30','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/kMVoH\" rel=\"nofollow ugc\">https://shorturl.fm/kMVoH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(721,162,'Callie4785','Callie4785@gmail.com','','103.172.23.174','2025-07-15 05:00:53','2025-07-15 05:00:53','Monetize your influence—become an affiliate today! <a href=\"https://shorturl.fm/NPvW3\" rel=\"nofollow ugc\">https://shorturl.fm/NPvW3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(722,163,'Laura4971','Laura4971@gmail.com','','103.172.23.174','2025-07-15 05:01:18','2025-07-15 05:01:18','Monetize your traffic with our affiliate program—sign up now! <a href=\"https://shorturl.fm/X7Rsn\" rel=\"nofollow ugc\">https://shorturl.fm/X7Rsn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(723,1,'Edgar2160','Edgar2160@gmail.com','','123.20.165.134','2025-07-15 06:16:07','2025-07-15 06:16:07','Turn your audience into earnings—become an affiliate partner today! <a href=\"https://shorturl.fm/UFvfH\" rel=\"nofollow ugc\">https://shorturl.fm/UFvfH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(724,157,'Jada181','Jada181@gmail.com','','123.20.165.134','2025-07-15 06:16:44','2025-07-15 06:16:44','Turn your audience into earnings—become an affiliate partner today! <a href=\"https://shorturl.fm/kZYTe\" rel=\"nofollow ugc\">https://shorturl.fm/kZYTe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(725,160,'Abram4445','Abram4445@gmail.com','','123.20.165.134','2025-07-15 06:17:11','2025-07-15 06:17:11','Apply now and receive dedicated support for affiliates! <a href=\"https://shorturl.fm/uZY2Z\" rel=\"nofollow ugc\">https://shorturl.fm/uZY2Z</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(726,161,'Annette1404','Annette1404@gmail.com','','123.20.165.134','2025-07-15 06:17:37','2025-07-15 06:17:37','Partner with us and enjoy recurring commission payouts! <a href=\"https://shorturl.fm/d8VOn\" rel=\"nofollow ugc\">https://shorturl.fm/d8VOn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(727,162,'Carlos2239','Carlos2239@gmail.com','','123.20.165.134','2025-07-15 06:18:03','2025-07-15 06:18:03','Turn your audience into earnings—become an affiliate partner today! <a href=\"https://shorturl.fm/kZYTe\" rel=\"nofollow ugc\">https://shorturl.fm/kZYTe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(728,1,'Theodore1267','Theodore1267@gmail.com','','115.72.44.225','2025-07-15 06:25:42','2025-07-15 06:25:42','Become our partner now and start turning referrals into revenue! <a href=\"https://shorturl.fm/CH2eV\" rel=\"nofollow ugc\">https://shorturl.fm/CH2eV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(729,156,'Jeremiah1350','Jeremiah1350@gmail.com','','115.72.44.225','2025-07-15 06:26:05','2025-07-15 06:26:05','Become our partner and turn referrals into revenue—join now! <a href=\"https://shorturl.fm/Is5V2\" rel=\"nofollow ugc\">https://shorturl.fm/Is5V2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(730,157,'Kristin4126','Kristin4126@gmail.com','','115.72.44.225','2025-07-15 06:26:28','2025-07-15 06:26:28','Get paid for every click—join our affiliate network now! <a href=\"https://shorturl.fm/xjblH\" rel=\"nofollow ugc\">https://shorturl.fm/xjblH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(731,158,'Cooper1855','Cooper1855@gmail.com','','115.72.44.225','2025-07-15 06:26:51','2025-07-15 06:26:51','Become our affiliate—tap into unlimited earning potential! <a href=\"https://shorturl.fm/ehoQK\" rel=\"nofollow ugc\">https://shorturl.fm/ehoQK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(732,159,'Kendall4894','Kendall4894@gmail.com','','115.72.44.225','2025-07-15 06:27:16','2025-07-15 06:27:16','Share your unique link and cash in—join now! <a href=\"https://shorturl.fm/Xddpi\" rel=\"nofollow ugc\">https://shorturl.fm/Xddpi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(733,160,'Bella314','Bella314@gmail.com','','115.72.44.225','2025-07-15 06:27:37','2025-07-15 06:27:37','Join our affiliate program and start earning commissions today—sign up now! <a href=\"https://shorturl.fm/f21ow\" rel=\"nofollow ugc\">https://shorturl.fm/f21ow</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(734,161,'Clarence2226','Clarence2226@gmail.com','','115.72.44.225','2025-07-15 06:27:58','2025-07-15 06:27:58','Share our products, reap the rewards—apply to our affiliate program! <a href=\"https://shorturl.fm/zE1YK\" rel=\"nofollow ugc\">https://shorturl.fm/zE1YK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(735,162,'Neil3267','Neil3267@gmail.com','','115.72.44.225','2025-07-15 06:28:19','2025-07-15 06:28:19','Your audience, your profits—become an affiliate today! <a href=\"https://shorturl.fm/0liVT\" rel=\"nofollow ugc\">https://shorturl.fm/0liVT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(736,163,'Brandon90','Brandon90@gmail.com','','115.72.44.225','2025-07-15 06:28:42','2025-07-15 06:28:42','Become our partner and turn referrals into revenue—join now! <a href=\"https://shorturl.fm/Is5V2\" rel=\"nofollow ugc\">https://shorturl.fm/Is5V2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(737,1,'Caitlin3791','Caitlin3791@gmail.com','','115.72.169.255','2025-07-15 13:57:19','2025-07-15 13:57:19','Promote our products—get paid for every sale you generate! <a href=\"https://shorturl.fm/221q4\" rel=\"nofollow ugc\">https://shorturl.fm/221q4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(738,159,'Aiden992','Aiden992@gmail.com','','115.72.169.255','2025-07-15 13:57:34','2025-07-15 13:57:34','Share your link and rake in rewards—join our affiliate team! <a href=\"https://shorturl.fm/pN1ef\" rel=\"nofollow ugc\">https://shorturl.fm/pN1ef</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(739,163,'Annette1550','Annette1550@gmail.com','','115.72.169.255','2025-07-15 13:57:49','2025-07-15 13:57:49','Invite your network, boost your income—sign up for our affiliate program now! <a href=\"https://shorturl.fm/bRXbh\" rel=\"nofollow ugc\">https://shorturl.fm/bRXbh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(740,1,'Joyce307','Joyce307@gmail.com','','118.68.241.234','2025-07-15 14:54:29','2025-07-15 14:54:29','Turn your network into income—apply to our affiliate program! <a href=\"https://shorturl.fm/AYhyN\" rel=\"nofollow ugc\">https://shorturl.fm/AYhyN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(741,156,'Ellen903','Ellen903@gmail.com','','118.68.241.234','2025-07-15 14:54:56','2025-07-15 14:54:56','Start earning passive income—join our affiliate network today! <a href=\"https://shorturl.fm/nQWWV\" rel=\"nofollow ugc\">https://shorturl.fm/nQWWV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(742,157,'Weston4105','Weston4105@gmail.com','','118.68.241.234','2025-07-15 14:55:24','2025-07-15 14:55:24','Maximize your earnings with top-tier offers—apply now! <a href=\"https://shorturl.fm/8ootA\" rel=\"nofollow ugc\">https://shorturl.fm/8ootA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(743,158,'Lucia4593','Lucia4593@gmail.com','','118.68.241.234','2025-07-15 14:55:51','2025-07-15 14:55:51','Get started instantly—earn on every referral you make! <a href=\"https://shorturl.fm/bnw7D\" rel=\"nofollow ugc\">https://shorturl.fm/bnw7D</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(744,159,'Zoe2912','Zoe2912@gmail.com','','118.68.241.234','2025-07-15 14:56:20','2025-07-15 14:56:20','Earn passive income this month—become an affiliate partner and get paid! <a href=\"https://shorturl.fm/SdY9U\" rel=\"nofollow ugc\">https://shorturl.fm/SdY9U</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(745,160,'Tomas3890','Tomas3890@gmail.com','','118.68.241.234','2025-07-15 14:56:47','2025-07-15 14:56:47','Earn up to 40% commission per sale—join our affiliate program now! <a href=\"https://shorturl.fm/RJJ4i\" rel=\"nofollow ugc\">https://shorturl.fm/RJJ4i</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(746,161,'Freddie4952','Freddie4952@gmail.com','','118.68.241.234','2025-07-15 14:57:15','2025-07-15 14:57:15','Tap into unlimited earning potential—become our affiliate partner! <a href=\"https://shorturl.fm/36XOn\" rel=\"nofollow ugc\">https://shorturl.fm/36XOn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(747,162,'Grant4427','Grant4427@gmail.com','','118.68.241.234','2025-07-15 14:57:44','2025-07-15 14:57:44','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/cPcLJ\" rel=\"nofollow ugc\">https://shorturl.fm/cPcLJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(748,163,'Emery1856','Emery1856@gmail.com','','118.68.241.234','2025-07-15 14:58:13','2025-07-15 14:58:13','Get started instantly—earn on every referral you make! <a href=\"https://shorturl.fm/bnw7D\" rel=\"nofollow ugc\">https://shorturl.fm/bnw7D</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(749,1,'Will3243','Will3243@gmail.com','','193.95.53.131','2025-07-15 16:04:22','2025-07-15 16:04:22','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/cPcLJ\" rel=\"nofollow ugc\">https://shorturl.fm/cPcLJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(750,158,'Ralph4032','Ralph4032@gmail.com','','193.95.53.131','2025-07-15 16:05:05','2025-07-15 16:05:05','Refer and earn up to 50% commission—join now! <a href=\"https://shorturl.fm/Mee7M\" rel=\"nofollow ugc\">https://shorturl.fm/Mee7M</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(751,159,'Amira3795','Amira3795@gmail.com','','193.95.53.131','2025-07-15 16:05:33','2025-07-15 16:05:33','Start earning passive income—join our affiliate network today! <a href=\"https://shorturl.fm/nQWWV\" rel=\"nofollow ugc\">https://shorturl.fm/nQWWV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(752,160,'Jasper1834','Jasper1834@gmail.com','','193.95.53.131','2025-07-15 16:05:56','2025-07-15 16:05:56','Join our affiliate community and maximize your profits—sign up now! <a href=\"https://shorturl.fm/9flbs\" rel=\"nofollow ugc\">https://shorturl.fm/9flbs</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(753,161,'Debbie3841','Debbie3841@gmail.com','','193.95.53.131','2025-07-15 16:06:20','2025-07-15 16:06:20','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/EGn4U\" rel=\"nofollow ugc\">https://shorturl.fm/EGn4U</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(754,1,'Brenda1242','Brenda1242@gmail.com','','183.80.206.29','2025-07-16 06:59:51','2025-07-16 06:59:51','Your network, your earnings—apply to our affiliate program now! <a href=\"https://shorturl.fm/hm5wU\" rel=\"nofollow ugc\">https://shorturl.fm/hm5wU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(755,160,'Aaliyah4962','Aaliyah4962@gmail.com','','183.80.206.29','2025-07-16 07:00:06','2025-07-16 07:00:06','Promote our products—get paid for every sale you generate! <a href=\"https://shorturl.fm/kqquv\" rel=\"nofollow ugc\">https://shorturl.fm/kqquv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(756,1,'Jada2056','Jada2056@gmail.com','','103.193.145.5','2025-07-16 23:08:31','2025-07-16 23:08:31','Get paid for every referral—enroll in our affiliate program! <a href=\"https://shorturl.fm/TeBJV\" rel=\"nofollow ugc\">https://shorturl.fm/TeBJV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(757,156,'Brent2704','Brent2704@gmail.com','','103.193.145.5','2025-07-16 23:08:56','2025-07-16 23:08:56','Start earning passive income—join our affiliate network today! <a href=\"https://shorturl.fm/XmyDf\" rel=\"nofollow ugc\">https://shorturl.fm/XmyDf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(758,157,'Denise772','Denise772@gmail.com','','103.193.145.5','2025-07-16 23:09:23','2025-07-16 23:09:23','Earn passive income with every click—sign up today! <a href=\"https://shorturl.fm/L0hkp\" rel=\"nofollow ugc\">https://shorturl.fm/L0hkp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(759,158,'Chandler3096','Chandler3096@gmail.com','','103.193.145.5','2025-07-16 23:09:48','2025-07-16 23:09:48','Share our offers and watch your wallet grow—become an affiliate! <a href=\"https://shorturl.fm/orZ2L\" rel=\"nofollow ugc\">https://shorturl.fm/orZ2L</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(760,159,'Camille1667','Camille1667@gmail.com','','103.193.145.5','2025-07-16 23:10:15','2025-07-16 23:10:15','Earn passive income this month—become an affiliate partner and get paid! <a href=\"https://shorturl.fm/QHaGt\" rel=\"nofollow ugc\">https://shorturl.fm/QHaGt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(761,160,'Sadie1009','Sadie1009@gmail.com','','103.193.145.5','2025-07-16 23:10:41','2025-07-16 23:10:41','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/Mfdgr\" rel=\"nofollow ugc\">https://shorturl.fm/Mfdgr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(762,161,'Theo1352','Theo1352@gmail.com','','103.193.145.5','2025-07-16 23:11:06','2025-07-16 23:11:06','Start earning passive income—join our affiliate network today! <a href=\"https://shorturl.fm/XmyDf\" rel=\"nofollow ugc\">https://shorturl.fm/XmyDf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(763,162,'Brody1753','Brody1753@gmail.com','','103.193.145.5','2025-07-16 23:11:32','2025-07-16 23:11:32','Boost your income—enroll in our affiliate program today! <a href=\"https://shorturl.fm/ZBlkR\" rel=\"nofollow ugc\">https://shorturl.fm/ZBlkR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(764,163,'Damon4072','Damon4072@gmail.com','','103.193.145.5','2025-07-16 23:11:57','2025-07-16 23:11:57','Earn passive income with every click—sign up today! <a href=\"https://shorturl.fm/L0hkp\" rel=\"nofollow ugc\">https://shorturl.fm/L0hkp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(765,1,'Lilly4471','Lilly4471@gmail.com','','58.136.170.157','2025-07-17 00:28:05','2025-07-17 00:28:05','Boost your income—enroll in our affiliate program today! <a href=\"https://shorturl.fm/ZBlkR\" rel=\"nofollow ugc\">https://shorturl.fm/ZBlkR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(766,156,'Ebony1369','Ebony1369@gmail.com','','58.136.170.157','2025-07-17 00:28:31','2025-07-17 00:28:31','Boost your income—enroll in our affiliate program today! <a href=\"https://shorturl.fm/ZBlkR\" rel=\"nofollow ugc\">https://shorturl.fm/ZBlkR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(767,157,'Reid3414','Reid3414@gmail.com','','58.136.170.157','2025-07-17 00:28:54','2025-07-17 00:28:54','Your audience, your profits—become an affiliate today! <a href=\"https://shorturl.fm/UmK3m\" rel=\"nofollow ugc\">https://shorturl.fm/UmK3m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(768,158,'Shirley2058','Shirley2058@gmail.com','','58.136.170.157','2025-07-17 00:29:18','2025-07-17 00:29:18','Earn passive income this month—become an affiliate partner and get paid! <a href=\"https://shorturl.fm/QHaGt\" rel=\"nofollow ugc\">https://shorturl.fm/QHaGt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(769,159,'Beryl1728','Beryl1728@gmail.com','','58.136.170.157','2025-07-17 00:29:42','2025-07-17 00:29:42','Become our partner and turn referrals into revenue—join now! <a href=\"https://shorturl.fm/IBipA\" rel=\"nofollow ugc\">https://shorturl.fm/IBipA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(770,160,'Mark4203','Mark4203@gmail.com','','58.136.170.157','2025-07-17 00:30:06','2025-07-17 00:30:06','Start earning passive income—join our affiliate network today! <a href=\"https://shorturl.fm/XmyDf\" rel=\"nofollow ugc\">https://shorturl.fm/XmyDf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(771,161,'Angelica63','Angelica63@gmail.com','','58.136.170.157','2025-07-17 00:30:31','2025-07-17 00:30:31','Sign up now and access top-converting affiliate offers! <a href=\"https://shorturl.fm/AtuW3\" rel=\"nofollow ugc\">https://shorturl.fm/AtuW3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(772,162,'Kaitlyn1239','Kaitlyn1239@gmail.com','','58.136.170.157','2025-07-17 00:30:55','2025-07-17 00:30:55','Refer friends and colleagues—get paid for every signup! <a href=\"https://shorturl.fm/I7qL4\" rel=\"nofollow ugc\">https://shorturl.fm/I7qL4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(773,1,'Connor2488','Connor2488@gmail.com','','103.242.105.70','2025-07-17 01:38:45','2025-07-17 01:38:45','Tap into unlimited earnings—sign up for our affiliate program! <a href=\"https://shorturl.fm/0MsOe\" rel=\"nofollow ugc\">https://shorturl.fm/0MsOe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(774,156,'Maximilian225','Maximilian225@gmail.com','','103.242.105.70','2025-07-17 01:39:11','2025-07-17 01:39:11','Sign up for our affiliate program and watch your earnings grow! <a href=\"https://shorturl.fm/groc8\" rel=\"nofollow ugc\">https://shorturl.fm/groc8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(775,157,'Amelia2898','Amelia2898@gmail.com','','103.242.105.70','2025-07-17 01:39:38','2025-07-17 01:39:38','Be rewarded for every click—join our affiliate program today! <a href=\"https://shorturl.fm/zehso\" rel=\"nofollow ugc\">https://shorturl.fm/zehso</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(776,159,'Haleigh4823','Haleigh4823@gmail.com','','103.242.105.70','2025-07-17 01:40:14','2025-07-17 01:40:14','Drive sales and watch your affiliate earnings soar! <a href=\"https://shorturl.fm/SfvBl\" rel=\"nofollow ugc\">https://shorturl.fm/SfvBl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(777,160,'Ramona554','Ramona554@gmail.com','','103.242.105.70','2025-07-17 01:40:40','2025-07-17 01:40:40','Get paid for every referral—enroll in our affiliate program! <a href=\"https://shorturl.fm/TeBJV\" rel=\"nofollow ugc\">https://shorturl.fm/TeBJV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(778,162,'Spencer3463','Spencer3463@gmail.com','','103.242.105.70','2025-07-17 01:41:16','2025-07-17 01:41:16','Get paid for every referral—enroll in our affiliate program! <a href=\"https://shorturl.fm/TeBJV\" rel=\"nofollow ugc\">https://shorturl.fm/TeBJV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(779,163,'Payton2049','Payton2049@gmail.com','','103.242.105.70','2025-07-17 01:41:44','2025-07-17 01:41:44','Drive sales, earn commissions—apply now! <a href=\"https://shorturl.fm/O4afZ\" rel=\"nofollow ugc\">https://shorturl.fm/O4afZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(780,1,'Alexa3348','Alexa3348@gmail.com','','182.253.143.107','2025-07-17 14:57:19','2025-07-17 14:57:19','Share our offers and watch your wallet grow—become an affiliate! <a href=\"https://shorturl.fm/mzI4E\" rel=\"nofollow ugc\">https://shorturl.fm/mzI4E</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(781,156,'Albert1455','Albert1455@gmail.com','','182.253.143.107','2025-07-17 14:57:43','2025-07-17 14:57:43','Sign up for our affiliate program and watch your earnings grow! <a href=\"https://shorturl.fm/XdjLO\" rel=\"nofollow ugc\">https://shorturl.fm/XdjLO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(782,157,'Lynda3276','Lynda3276@gmail.com','','182.253.143.107','2025-07-17 14:58:08','2025-07-17 14:58:08','Tap into unlimited earning potential—become our affiliate partner! <a href=\"https://shorturl.fm/ghJQz\" rel=\"nofollow ugc\">https://shorturl.fm/ghJQz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(783,158,'Anabel4315','Anabel4315@gmail.com','','182.253.143.107','2025-07-17 14:58:33','2025-07-17 14:58:33','Sign up and turn your connections into cash—join our affiliate program! <a href=\"https://shorturl.fm/IUgbT\" rel=\"nofollow ugc\">https://shorturl.fm/IUgbT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(784,160,'Ryan1383','Ryan1383@gmail.com','','182.253.143.107','2025-07-17 14:59:09','2025-07-17 14:59:09','Promote our products and earn real money—apply today! <a href=\"https://shorturl.fm/7OIGC\" rel=\"nofollow ugc\">https://shorturl.fm/7OIGC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(785,161,'Chance1177','Chance1177@gmail.com','','182.253.143.107','2025-07-17 14:59:35','2025-07-17 14:59:35','Partner with us and enjoy high payouts—apply now! <a href=\"https://shorturl.fm/DK4ig\" rel=\"nofollow ugc\">https://shorturl.fm/DK4ig</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(786,162,'Marissa3377','Marissa3377@gmail.com','','182.253.143.107','2025-07-17 15:00:01','2025-07-17 15:00:01','Monetize your traffic instantly—enroll in our affiliate network! <a href=\"https://shorturl.fm/wEnzk\" rel=\"nofollow ugc\">https://shorturl.fm/wEnzk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(787,1,'Adam1861','Adam1861@gmail.com','','103.107.78.192','2025-07-17 23:29:37','2025-07-17 23:29:37','Boost your income—enroll in our affiliate program today! <a href=\"https://shorturl.fm/kJsUO\" rel=\"nofollow ugc\">https://shorturl.fm/kJsUO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(788,156,'Ella4392','Ella4392@gmail.com','','103.107.78.192','2025-07-17 23:30:06','2025-07-17 23:30:06','Join our affiliate program today and start earning up to 30% commission—sign up now! <a href=\"https://shorturl.fm/n5ovP\" rel=\"nofollow ugc\">https://shorturl.fm/n5ovP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(789,158,'Mila54','Mila54@gmail.com','','103.107.78.192','2025-07-17 23:30:44','2025-07-17 23:30:44','Earn recurring commissions with each referral—enroll today! <a href=\"https://shorturl.fm/lDyPP\" rel=\"nofollow ugc\">https://shorturl.fm/lDyPP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(790,159,'Walter830','Walter830@gmail.com','','103.107.78.192','2025-07-17 23:31:12','2025-07-17 23:31:12','Join our affiliate community and start earning instantly! <a href=\"https://shorturl.fm/XcC2c\" rel=\"nofollow ugc\">https://shorturl.fm/XcC2c</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(791,160,'Lana3981','Lana3981@gmail.com','','103.107.78.192','2025-07-17 23:31:42','2025-07-17 23:31:42','Maximize your income with our high-converting offers—join as an affiliate! <a href=\"https://shorturl.fm/8gctp\" rel=\"nofollow ugc\">https://shorturl.fm/8gctp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(792,161,'Heather4896','Heather4896@gmail.com','','103.107.78.192','2025-07-17 23:32:08','2025-07-17 23:32:08','Apply now and unlock exclusive affiliate rewards! <a href=\"https://shorturl.fm/2Uqzg\" rel=\"nofollow ugc\">https://shorturl.fm/2Uqzg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(793,162,'Gloria3243','Gloria3243@gmail.com','','103.107.78.192','2025-07-17 23:32:34','2025-07-17 23:32:34','Get paid for every click—join our affiliate network now! <a href=\"https://shorturl.fm/nyXbU\" rel=\"nofollow ugc\">https://shorturl.fm/nyXbU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(794,163,'Clifton4754','Clifton4754@gmail.com','','103.107.78.192','2025-07-17 23:33:01','2025-07-17 23:33:01','Get paid for every click—join our affiliate network now! <a href=\"https://shorturl.fm/nyXbU\" rel=\"nofollow ugc\">https://shorturl.fm/nyXbU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(795,156,'Marco3690','Marco3690@gmail.com','','58.136.170.157','2025-07-18 06:45:16','2025-07-18 06:45:16','Turn your network into income—apply to our affiliate program! <a href=\"https://shorturl.fm/QDnl5\" rel=\"nofollow ugc\">https://shorturl.fm/QDnl5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(796,159,'Ken469','Ken469@gmail.com','','58.136.170.157','2025-07-18 06:46:14','2025-07-18 06:46:14','Tap into unlimited earning potential—become our affiliate partner! <a href=\"https://shorturl.fm/yQcqp\" rel=\"nofollow ugc\">https://shorturl.fm/yQcqp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(797,1,'Mia1813','Mia1813@gmail.com','','118.71.170.122','2025-07-18 14:16:33','2025-07-18 14:16:33','Become our partner and turn referrals into revenue—join now! <a href=\"https://shorturl.fm/xEdYb\" rel=\"nofollow ugc\">https://shorturl.fm/xEdYb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(798,1,'Billie3846','Billie3846@gmail.com','','207.166.178.139','2025-07-18 14:45:30','2025-07-18 14:45:30','Become our partner and turn referrals into revenue—join now! <a href=\"https://shorturl.fm/xEdYb\" rel=\"nofollow ugc\">https://shorturl.fm/xEdYb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(799,156,'Gail2572','Gail2572@gmail.com','','207.166.178.139','2025-07-18 14:45:56','2025-07-18 14:45:56','Boost your income effortlessly—join our affiliate network now! <a href=\"https://shorturl.fm/eTjds\" rel=\"nofollow ugc\">https://shorturl.fm/eTjds</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(800,157,'Bella4956','Bella4956@gmail.com','','207.166.178.139','2025-07-18 14:46:22','2025-07-18 14:46:22','Monetize your traffic with our affiliate program—sign up now! <a href=\"https://shorturl.fm/Gtcbt\" rel=\"nofollow ugc\">https://shorturl.fm/Gtcbt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(801,158,'Gemma346','Gemma346@gmail.com','','207.166.178.139','2025-07-18 14:46:46','2025-07-18 14:46:46','Monetize your traffic with our affiliate program—sign up now! <a href=\"https://shorturl.fm/Gtcbt\" rel=\"nofollow ugc\">https://shorturl.fm/Gtcbt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(802,1,'Bridget1266','Bridget1266@gmail.com','','207.166.178.234','2025-07-18 15:01:39','2025-07-18 15:01:39','Start earning passive income—join our affiliate network today! <a href=\"https://shorturl.fm/wloIK\" rel=\"nofollow ugc\">https://shorturl.fm/wloIK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(803,156,'Abram672','Abram672@gmail.com','','207.166.178.234','2025-07-18 15:02:02','2025-07-18 15:02:02','Share our products, earn up to 40% per sale—apply today! <a href=\"https://shorturl.fm/rAjUH\" rel=\"nofollow ugc\">https://shorturl.fm/rAjUH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(804,157,'Derrick1749','Derrick1749@gmail.com','','207.166.178.234','2025-07-18 15:02:30','2025-07-18 15:02:30','Monetize your traffic with our affiliate program—sign up now! <a href=\"https://shorturl.fm/Gtcbt\" rel=\"nofollow ugc\">https://shorturl.fm/Gtcbt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(805,158,'Jordyn2582','Jordyn2582@gmail.com','','207.166.178.234','2025-07-18 15:02:54','2025-07-18 15:02:54','Partner with us and enjoy high payouts—apply now! <a href=\"https://shorturl.fm/LzhZm\" rel=\"nofollow ugc\">https://shorturl.fm/LzhZm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(806,159,'Dennis3502','Dennis3502@gmail.com','','207.166.178.234','2025-07-18 15:03:16','2025-07-18 15:03:16','Start profiting from your network—sign up today! <a href=\"https://shorturl.fm/gvR7d\" rel=\"nofollow ugc\">https://shorturl.fm/gvR7d</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(807,160,'Marco2111','Marco2111@gmail.com','','207.166.178.234','2025-07-18 15:03:38','2025-07-18 15:03:38','Monetize your traffic with our affiliate program—sign up now! <a href=\"https://shorturl.fm/9UAbs\" rel=\"nofollow ugc\">https://shorturl.fm/9UAbs</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(808,161,'Pedro1179','Pedro1179@gmail.com','','207.166.178.234','2025-07-18 15:04:01','2025-07-18 15:04:01','Start earning instantly—become our affiliate and earn on every sale! <a href=\"https://shorturl.fm/F7RCf\" rel=\"nofollow ugc\">https://shorturl.fm/F7RCf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(809,162,'Gideon769','Gideon769@gmail.com','','207.166.178.234','2025-07-18 15:04:25','2025-07-18 15:04:25','Monetize your traffic with our affiliate program—sign up now! <a href=\"https://shorturl.fm/Gtcbt\" rel=\"nofollow ugc\">https://shorturl.fm/Gtcbt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(810,163,'Micah2984','Micah2984@gmail.com','','207.166.178.234','2025-07-18 15:04:48','2025-07-18 15:04:48','Start profiting from your network—sign up today! <a href=\"https://shorturl.fm/Di0VC\" rel=\"nofollow ugc\">https://shorturl.fm/Di0VC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(811,157,'Craig2433','Craig2433@gmail.com','','114.237.77.253','2025-07-18 16:44:20','2025-07-18 16:44:20','Refer friends and colleagues—get paid for every signup! <a href=\"https://shorturl.fm/vOvRb\" rel=\"nofollow ugc\">https://shorturl.fm/vOvRb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(812,158,'Hector2446','Hector2446@gmail.com','','117.92.244.46','2025-07-18 16:44:58','2025-07-18 16:44:58','Start profiting from your network—sign up today! <a href=\"https://shorturl.fm/Di0VC\" rel=\"nofollow ugc\">https://shorturl.fm/Di0VC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(813,159,'Karina4688','Karina4688@gmail.com','','114.237.77.253','2025-07-18 16:45:05','2025-07-18 16:45:05','Boost your income effortlessly—join our affiliate network now! <a href=\"https://shorturl.fm/eTjds\" rel=\"nofollow ugc\">https://shorturl.fm/eTjds</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(814,1,'Franklin2316','Franklin2316@gmail.com','','116.212.109.141','2025-07-18 19:00:57','2025-07-18 19:00:57','Boost your earnings effortlessly—become our affiliate! <a href=\"https://shorturl.fm/oQv8z\" rel=\"nofollow ugc\">https://shorturl.fm/oQv8z</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(815,156,'Elizabeth1303','Elizabeth1303@gmail.com','','116.212.109.141','2025-07-18 19:01:26','2025-07-18 19:01:26','Join our affiliate community and maximize your profits! <a href=\"https://shorturl.fm/01O0H\" rel=\"nofollow ugc\">https://shorturl.fm/01O0H</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(816,157,'Crystal4789','Crystal4789@gmail.com','','116.212.109.141','2025-07-18 19:01:53','2025-07-18 19:01:53','Tap into unlimited earnings—sign up for our affiliate program! <a href=\"https://shorturl.fm/1Yvdd\" rel=\"nofollow ugc\">https://shorturl.fm/1Yvdd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(817,158,'Christopher2500','Christopher2500@gmail.com','','116.212.109.141','2025-07-18 19:02:19','2025-07-18 19:02:19','Become our partner and turn referrals into revenue—join now! <a href=\"https://shorturl.fm/rdzLA\" rel=\"nofollow ugc\">https://shorturl.fm/rdzLA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(818,159,'Norman3285','Norman3285@gmail.com','','116.212.109.141','2025-07-18 19:02:48','2025-07-18 19:02:48','Join our affiliate community and maximize your profits! <a href=\"https://shorturl.fm/01O0H\" rel=\"nofollow ugc\">https://shorturl.fm/01O0H</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(819,160,'Dorian2445','Dorian2445@gmail.com','','116.212.109.141','2025-07-18 19:03:15','2025-07-18 19:03:15','Promote, refer, earn—join our affiliate program now! <a href=\"https://shorturl.fm/NyQ1m\" rel=\"nofollow ugc\">https://shorturl.fm/NyQ1m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(820,161,'Erik2813','Erik2813@gmail.com','','116.212.109.141','2025-07-18 19:03:46','2025-07-18 19:03:46','Join our affiliate program today and earn generous commissions! <a href=\"https://shorturl.fm/mIQZX\" rel=\"nofollow ugc\">https://shorturl.fm/mIQZX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(821,162,'Savannah2976','Savannah2976@gmail.com','','116.212.109.141','2025-07-18 19:04:14','2025-07-18 19:04:14','Boost your earnings effortlessly—become our affiliate! <a href=\"https://shorturl.fm/oQv8z\" rel=\"nofollow ugc\">https://shorturl.fm/oQv8z</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(822,1,'Alonzo2073','Alonzo2073@gmail.com','','221.208.71.225','2025-07-18 20:53:16','2025-07-18 20:53:16','Start profiting from your network—sign up today! <a href=\"https://shorturl.fm/DZsqK\" rel=\"nofollow ugc\">https://shorturl.fm/DZsqK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(823,156,'Darryl692','Darryl692@gmail.com','','221.208.71.225','2025-07-18 20:53:44','2025-07-18 20:53:44','Share our products and watch your earnings grow—join our affiliate program! <a href=\"https://shorturl.fm/AzSvY\" rel=\"nofollow ugc\">https://shorturl.fm/AzSvY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(824,157,'Karen3118','Karen3118@gmail.com','','221.208.71.225','2025-07-18 20:54:11','2025-07-18 20:54:11','Partner with us and enjoy high payouts—apply now! <a href=\"https://shorturl.fm/m7UPh\" rel=\"nofollow ugc\">https://shorturl.fm/m7UPh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(825,158,'Erin1735','Erin1735@gmail.com','','221.208.71.225','2025-07-18 20:54:40','2025-07-18 20:54:40','Join our affiliate program today and earn generous commissions! <a href=\"https://shorturl.fm/lRFIO\" rel=\"nofollow ugc\">https://shorturl.fm/lRFIO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(826,159,'Hendrix1621','Hendrix1621@gmail.com','','221.208.71.225','2025-07-18 20:55:05','2025-07-18 20:55:05','Partner with us and enjoy high payouts—apply now! <a href=\"https://shorturl.fm/m7UPh\" rel=\"nofollow ugc\">https://shorturl.fm/m7UPh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(827,160,'McKenzie930','McKenzie930@gmail.com','','221.208.71.225','2025-07-18 20:55:32','2025-07-18 20:55:32','Unlock exclusive affiliate perks—register now! <a href=\"https://shorturl.fm/7EGD5\" rel=\"nofollow ugc\">https://shorturl.fm/7EGD5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(828,161,'Eliza2071','Eliza2071@gmail.com','','221.208.71.225','2025-07-18 20:56:00','2025-07-18 20:56:00','Monetize your audience—become an affiliate partner now! <a href=\"https://shorturl.fm/QoUsW\" rel=\"nofollow ugc\">https://shorturl.fm/QoUsW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(829,162,'Dominique1386','Dominique1386@gmail.com','','221.208.71.225','2025-07-18 20:56:34','2025-07-18 20:56:34','Turn your audience into earnings—become an affiliate partner today! <a href=\"https://shorturl.fm/Qv950\" rel=\"nofollow ugc\">https://shorturl.fm/Qv950</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(830,163,'Mona2430','Mona2430@gmail.com','','221.208.71.225','2025-07-18 20:57:01','2025-07-18 20:57:01','Refer customers, collect commissions—join our affiliate program! <a href=\"https://shorturl.fm/91I0F\" rel=\"nofollow ugc\">https://shorturl.fm/91I0F</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(831,1,'Kiera3216','Kiera3216@gmail.com','','115.225.60.190','2025-07-19 02:29:58','2025-07-19 02:29:58','Start earning passive income—join our affiliate network today! <a href=\"https://shorturl.fm/ZL0aX\" rel=\"nofollow ugc\">https://shorturl.fm/ZL0aX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(832,156,'Adam1179','Adam1179@gmail.com','','115.225.60.190','2025-07-19 02:30:31','2025-07-19 02:30:31','Tap into unlimited earnings—sign up for our affiliate program! <a href=\"https://shorturl.fm/UOupU\" rel=\"nofollow ugc\">https://shorturl.fm/UOupU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(833,157,'Hailee3439','Hailee3439@gmail.com','','115.225.60.190','2025-07-19 02:31:06','2025-07-19 02:31:06','Turn your network into income—apply to our affiliate program! <a href=\"https://shorturl.fm/xZ9BQ\" rel=\"nofollow ugc\">https://shorturl.fm/xZ9BQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(834,158,'Beth289','Beth289@gmail.com','','115.225.60.190','2025-07-19 02:31:34','2025-07-19 02:31:34','Tap into unlimited earnings—sign up for our affiliate program! <a href=\"https://shorturl.fm/UOupU\" rel=\"nofollow ugc\">https://shorturl.fm/UOupU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(835,156,'Linda419','Linda419@gmail.com','','77.110.114.19','2025-07-19 18:05:59','2025-07-19 18:05:59','Share our link, earn real money—signup for our affiliate program! <a href=\"https://shorturl.fm/qvoKL\" rel=\"nofollow ugc\">https://shorturl.fm/qvoKL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(836,157,'Nicholas3766','Nicholas3766@gmail.com','','77.110.114.19','2025-07-19 18:06:24','2025-07-19 18:06:24','Earn passive income on autopilot—become our affiliate! <a href=\"https://shorturl.fm/5oiNL\" rel=\"nofollow ugc\">https://shorturl.fm/5oiNL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(837,158,'Brinley88','Brinley88@gmail.com','','77.110.114.19','2025-07-19 18:06:48','2025-07-19 18:06:48','Drive sales, earn big—enroll in our affiliate program! <a href=\"https://shorturl.fm/15bBO\" rel=\"nofollow ugc\">https://shorturl.fm/15bBO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(838,159,'Dorothy1506','Dorothy1506@gmail.com','','77.110.114.19','2025-07-19 18:07:13','2025-07-19 18:07:13','Promote our brand, reap the rewards—apply to our affiliate program today! <a href=\"https://shorturl.fm/wlZSn\" rel=\"nofollow ugc\">https://shorturl.fm/wlZSn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(839,160,'Geoffrey2619','Geoffrey2619@gmail.com','','77.110.114.19','2025-07-19 18:07:37','2025-07-19 18:07:37','Share our products and watch your earnings grow—join our affiliate program! <a href=\"https://shorturl.fm/yZvkE\" rel=\"nofollow ugc\">https://shorturl.fm/yZvkE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(840,1,'Finn3642','Finn3642@gmail.com','','41.97.53.84','2025-07-19 19:32:27','2025-07-19 19:32:27','Drive sales, earn big—enroll in our affiliate program! <a href=\"https://shorturl.fm/15bBO\" rel=\"nofollow ugc\">https://shorturl.fm/15bBO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(841,156,'Erik4805','Erik4805@gmail.com','','41.97.53.84','2025-07-19 19:32:49','2025-07-19 19:32:49','Earn big by sharing our offers—become an affiliate today! <a href=\"https://shorturl.fm/xA601\" rel=\"nofollow ugc\">https://shorturl.fm/xA601</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(842,157,'Julian2873','Julian2873@gmail.com','','41.97.53.84','2025-07-19 19:33:13','2025-07-19 19:33:13','Sign up for our affiliate program and watch your earnings grow! <a href=\"https://shorturl.fm/g9bVT\" rel=\"nofollow ugc\">https://shorturl.fm/g9bVT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(843,158,'Anthony2638','Anthony2638@gmail.com','','41.97.53.84','2025-07-19 19:33:36','2025-07-19 19:33:36','Start earning on autopilot—become our affiliate partner! <a href=\"https://shorturl.fm/iQbxM\" rel=\"nofollow ugc\">https://shorturl.fm/iQbxM</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(844,159,'Gus1903','Gus1903@gmail.com','','41.97.53.84','2025-07-19 19:33:59','2025-07-19 19:33:59','Get paid for every referral—enroll in our affiliate program! <a href=\"https://shorturl.fm/4MDN1\" rel=\"nofollow ugc\">https://shorturl.fm/4MDN1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(845,160,'Lindsey1835','Lindsey1835@gmail.com','','41.97.53.84','2025-07-19 19:34:22','2025-07-19 19:34:22','Promote our brand and watch your income grow—join today! <a href=\"https://shorturl.fm/1FYcv\" rel=\"nofollow ugc\">https://shorturl.fm/1FYcv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(846,162,'Ray846','Ray846@gmail.com','','41.97.53.84','2025-07-19 19:34:56','2025-07-19 19:34:56','Partner with us and enjoy high payouts—apply now! <a href=\"https://shorturl.fm/b9zL0\" rel=\"nofollow ugc\">https://shorturl.fm/b9zL0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(847,1,'Jaime846','Jaime846@gmail.com','','42.113.98.241','2025-07-19 20:54:45','2025-07-19 20:54:45','Join our affiliate community and earn more—register now! <a href=\"https://shorturl.fm/Gc7SE\" rel=\"nofollow ugc\">https://shorturl.fm/Gc7SE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(848,156,'Trent3738','Trent3738@gmail.com','','42.113.98.241','2025-07-19 20:55:12','2025-07-19 20:55:12','Monetize your influence—become an affiliate today! <a href=\"https://shorturl.fm/jP0DU\" rel=\"nofollow ugc\">https://shorturl.fm/jP0DU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(849,157,'Andrea1901','Andrea1901@gmail.com','','42.113.98.241','2025-07-19 20:55:37','2025-07-19 20:55:37','Turn referrals into revenue—sign up for our affiliate program today! <a href=\"https://shorturl.fm/lOuIt\" rel=\"nofollow ugc\">https://shorturl.fm/lOuIt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(850,158,'Diego1641','Diego1641@gmail.com','','42.113.98.241','2025-07-19 20:56:02','2025-07-19 20:56:02','Drive sales, earn commissions—apply now! <a href=\"https://shorturl.fm/kiNSX\" rel=\"nofollow ugc\">https://shorturl.fm/kiNSX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(851,159,'Aisha4715','Aisha4715@gmail.com','','42.113.98.241','2025-07-19 20:56:28','2025-07-19 20:56:28','Join our affiliate community and earn more—register now! <a href=\"https://shorturl.fm/aLIgr\" rel=\"nofollow ugc\">https://shorturl.fm/aLIgr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(852,160,'Hannah433','Hannah433@gmail.com','','42.113.98.241','2025-07-19 20:56:54','2025-07-19 20:56:54','Join our affiliate community and earn more—register now! <a href=\"https://shorturl.fm/Gc7SE\" rel=\"nofollow ugc\">https://shorturl.fm/Gc7SE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(853,161,'Lacey989','Lacey989@gmail.com','','42.113.98.241','2025-07-19 20:57:20','2025-07-19 20:57:20','Unlock exclusive affiliate perks—register now! <a href=\"https://shorturl.fm/rlMEK\" rel=\"nofollow ugc\">https://shorturl.fm/rlMEK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(854,162,'Carolina3123','Carolina3123@gmail.com','','42.113.98.241','2025-07-19 20:57:45','2025-07-19 20:57:45','Sign up for our affiliate program and watch your earnings grow! <a href=\"https://shorturl.fm/3BsqR\" rel=\"nofollow ugc\">https://shorturl.fm/3BsqR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(855,163,'Ivan3602','Ivan3602@gmail.com','','42.113.98.241','2025-07-19 20:58:11','2025-07-19 20:58:11','Unlock exclusive rewards with every referral—apply to our affiliate program now! <a href=\"https://shorturl.fm/SudZe\" rel=\"nofollow ugc\">https://shorturl.fm/SudZe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(856,1,'Leonardo3836','Leonardo3836@gmail.com','','43.224.168.27','2025-07-20 04:22:37','2025-07-20 04:22:37','Earn big by sharing our offers—become an affiliate today! <a href=\"https://shorturl.fm/bo9uH\" rel=\"nofollow ugc\">https://shorturl.fm/bo9uH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(857,156,'Campbell2019','Campbell2019@gmail.com','','43.224.168.27','2025-07-20 04:23:06','2025-07-20 04:23:06','Share our products and watch your earnings grow—join our affiliate program! <a href=\"https://shorturl.fm/uFs3I\" rel=\"nofollow ugc\">https://shorturl.fm/uFs3I</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(858,157,'Alissa1818','Alissa1818@gmail.com','','43.224.168.27','2025-07-20 04:23:34','2025-07-20 04:23:34','Drive sales, collect commissions—join our affiliate team! <a href=\"https://shorturl.fm/xUI1k\" rel=\"nofollow ugc\">https://shorturl.fm/xUI1k</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(859,158,'Felicity4234','Felicity4234@gmail.com','','43.224.168.27','2025-07-20 04:24:02','2025-07-20 04:24:02','Partner with us and enjoy recurring commission payouts! <a href=\"https://shorturl.fm/tWAfL\" rel=\"nofollow ugc\">https://shorturl.fm/tWAfL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(860,159,'Leanne4514','Leanne4514@gmail.com','','43.224.168.27','2025-07-20 04:24:31','2025-07-20 04:24:31','Earn big by sharing our offers—become an affiliate today! <a href=\"https://shorturl.fm/VvyHe\" rel=\"nofollow ugc\">https://shorturl.fm/VvyHe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(861,160,'Samuel3783','Samuel3783@gmail.com','','43.224.168.27','2025-07-20 04:24:58','2025-07-20 04:24:58','Be rewarded for every click—join our affiliate program today! <a href=\"https://shorturl.fm/xsBki\" rel=\"nofollow ugc\">https://shorturl.fm/xsBki</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(862,161,'Dallas443','Dallas443@gmail.com','','43.224.168.27','2025-07-20 04:25:28','2025-07-20 04:25:28','Join our affiliate community and maximize your profits—sign up now! <a href=\"https://shorturl.fm/UOmpz\" rel=\"nofollow ugc\">https://shorturl.fm/UOmpz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(863,162,'Jaden533','Jaden533@gmail.com','','43.224.168.27','2025-07-20 04:25:56','2025-07-20 04:25:56','Drive sales, collect commissions—join our affiliate team! <a href=\"https://shorturl.fm/xUI1k\" rel=\"nofollow ugc\">https://shorturl.fm/xUI1k</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(864,163,'Gareth2775','Gareth2775@gmail.com','','43.224.168.27','2025-07-20 04:26:26','2025-07-20 04:26:26','Share our products and watch your earnings grow—join our affiliate program! <a href=\"https://shorturl.fm/uFs3I\" rel=\"nofollow ugc\">https://shorturl.fm/uFs3I</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(865,1,'Maya3836','Maya3836@gmail.com','','222.127.153.135','2025-07-20 15:53:56','2025-07-20 15:53:56','Promote, refer, earn—join our affiliate program now! <a href=\"https://shorturl.fm/PNOoA\" rel=\"nofollow ugc\">https://shorturl.fm/PNOoA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(866,156,'Pat567','Pat567@gmail.com','','222.127.153.135','2025-07-20 15:54:20','2025-07-20 15:54:20','Share your unique link and earn up to 40% commission! <a href=\"https://shorturl.fm/Lv2jt\" rel=\"nofollow ugc\">https://shorturl.fm/Lv2jt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(867,158,'Alex4370','Alex4370@gmail.com','','222.127.153.135','2025-07-20 15:54:56','2025-07-20 15:54:56','Tap into unlimited earnings—sign up for our affiliate program! <a href=\"https://shorturl.fm/XKlUH\" rel=\"nofollow ugc\">https://shorturl.fm/XKlUH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(868,159,'Alana11','Alana11@gmail.com','','222.127.153.135','2025-07-20 15:55:21','2025-07-20 15:55:21','Monetize your audience with our high-converting offers—apply today! <a href=\"https://shorturl.fm/2E4kV\" rel=\"nofollow ugc\">https://shorturl.fm/2E4kV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(869,160,'Annie1420','Annie1420@gmail.com','','222.127.153.135','2025-07-20 15:55:50','2025-07-20 15:55:50','Drive sales, earn big—enroll in our affiliate program! <a href=\"https://shorturl.fm/XQFnC\" rel=\"nofollow ugc\">https://shorturl.fm/XQFnC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(870,161,'Skylar3698','Skylar3698@gmail.com','','222.127.153.135','2025-07-20 15:56:17','2025-07-20 15:56:17','Partner with us and enjoy recurring commission payouts! <a href=\"https://shorturl.fm/tOsO3\" rel=\"nofollow ugc\">https://shorturl.fm/tOsO3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(871,162,'Agnes4291','Agnes4291@gmail.com','','222.127.153.135','2025-07-20 15:56:44','2025-07-20 15:56:44','Share your link and rake in rewards—join our affiliate team! <a href=\"https://shorturl.fm/YjwPR\" rel=\"nofollow ugc\">https://shorturl.fm/YjwPR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(872,163,'Evie4212','Evie4212@gmail.com','','222.127.153.135','2025-07-20 15:57:11','2025-07-20 15:57:11','Share your unique link and earn up to 40% commission! <a href=\"https://shorturl.fm/Lv2jt\" rel=\"nofollow ugc\">https://shorturl.fm/Lv2jt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(873,1,'Payton709','Payton709@gmail.com','','125.25.216.194','2025-07-20 19:24:38','2025-07-20 19:24:38','<a href=\"https://shorturl.fm/AXVEg\" rel=\"nofollow ugc\">https://shorturl.fm/AXVEg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(874,156,'Halle2670','Halle2670@gmail.com','','125.25.216.194','2025-07-20 19:25:12','2025-07-20 19:25:12','<a href=\"https://shorturl.fm/DL1Km\" rel=\"nofollow ugc\">https://shorturl.fm/DL1Km</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(875,161,'Imelda1813','Imelda1813@gmail.com','','125.25.216.194','2025-07-20 19:25:27','2025-07-20 19:25:27','<a href=\"https://shorturl.fm/XlFWV\" rel=\"nofollow ugc\">https://shorturl.fm/XlFWV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(876,1,'Elmer3029','Elmer3029@gmail.com','','223.204.127.185','2025-07-20 19:56:24','2025-07-20 19:56:24','<a href=\"https://shorturl.fm/Oh8so\" rel=\"nofollow ugc\">https://shorturl.fm/Oh8so</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(877,156,'Nathan1027','Nathan1027@gmail.com','','223.204.127.185','2025-07-20 19:56:52','2025-07-20 19:56:52','<a href=\"https://shorturl.fm/AwZKz\" rel=\"nofollow ugc\">https://shorturl.fm/AwZKz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(878,1,'Dwight637','Dwight637@gmail.com','','101.109.63.47','2025-07-20 19:57:16','2025-07-20 19:57:16','<a href=\"https://shorturl.fm/n5tvH\" rel=\"nofollow ugc\">https://shorturl.fm/n5tvH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(879,159,'Arabella3800','Arabella3800@gmail.com','','223.204.127.185','2025-07-20 19:57:47','2025-07-20 19:57:47','<a href=\"https://shorturl.fm/8B5KD\" rel=\"nofollow ugc\">https://shorturl.fm/8B5KD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(880,157,'Clinton2204','Clinton2204@gmail.com','','116.103.141.186','2025-07-20 21:15:48','2025-07-20 21:15:48','<a href=\"https://shorturl.fm/ZBmjt\" rel=\"nofollow ugc\">https://shorturl.fm/ZBmjt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(881,158,'Cheyenne3690','Cheyenne3690@gmail.com','','116.103.141.186','2025-07-20 21:16:13','2025-07-20 21:16:13','<a href=\"https://shorturl.fm/Y6gTi\" rel=\"nofollow ugc\">https://shorturl.fm/Y6gTi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(882,160,'Tracy4673','Tracy4673@gmail.com','','116.103.141.186','2025-07-20 21:16:37','2025-07-20 21:16:37','<a href=\"https://shorturl.fm/Y6gTi\" rel=\"nofollow ugc\">https://shorturl.fm/Y6gTi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(883,161,'Roland1001','Roland1001@gmail.com','','116.103.141.186','2025-07-20 21:17:00','2025-07-20 21:17:00','<a href=\"https://shorturl.fm/vhmru\" rel=\"nofollow ugc\">https://shorturl.fm/vhmru</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(884,162,'Brooks1577','Brooks1577@gmail.com','','116.103.141.186','2025-07-20 21:17:26','2025-07-20 21:17:26','<a href=\"https://shorturl.fm/hYmTk\" rel=\"nofollow ugc\">https://shorturl.fm/hYmTk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(885,163,'Molly2014','Molly2014@gmail.com','','116.103.141.186','2025-07-20 21:17:51','2025-07-20 21:17:51','<a href=\"https://shorturl.fm/kThk0\" rel=\"nofollow ugc\">https://shorturl.fm/kThk0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(886,1,'Mark761','Mark761@gmail.com','','36.50.92.109','2025-07-21 01:38:29','2025-07-21 01:38:29','<a href=\"https://shorturl.fm/Y0o18\" rel=\"nofollow ugc\">https://shorturl.fm/Y0o18</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(887,156,'Harry7','Harry7@gmail.com','','36.50.92.109','2025-07-21 01:38:55','2025-07-21 01:38:55','<a href=\"https://shorturl.fm/48e71\" rel=\"nofollow ugc\">https://shorturl.fm/48e71</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(888,157,'Jackson489','Jackson489@gmail.com','','36.50.92.109','2025-07-21 01:39:22','2025-07-21 01:39:22','<a href=\"https://shorturl.fm/DCQgy\" rel=\"nofollow ugc\">https://shorturl.fm/DCQgy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(889,158,'Junior2862','Junior2862@gmail.com','','36.50.92.109','2025-07-21 01:39:48','2025-07-21 01:39:48','<a href=\"https://shorturl.fm/vRNA5\" rel=\"nofollow ugc\">https://shorturl.fm/vRNA5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(890,159,'Kingston4842','Kingston4842@gmail.com','','36.50.92.109','2025-07-21 01:40:16','2025-07-21 01:40:16','<a href=\"https://shorturl.fm/GxQok\" rel=\"nofollow ugc\">https://shorturl.fm/GxQok</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(891,160,'Victor1329','Victor1329@gmail.com','','36.50.92.109','2025-07-21 01:40:42','2025-07-21 01:40:42','<a href=\"https://shorturl.fm/fMf9z\" rel=\"nofollow ugc\">https://shorturl.fm/fMf9z</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(892,161,'Angelo60','Angelo60@gmail.com','','36.50.92.109','2025-07-21 01:41:07','2025-07-21 01:41:07','<a href=\"https://shorturl.fm/IUKuN\" rel=\"nofollow ugc\">https://shorturl.fm/IUKuN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(893,162,'Aylin3586','Aylin3586@gmail.com','','36.50.92.109','2025-07-21 01:41:33','2025-07-21 01:41:33','<a href=\"https://shorturl.fm/d5UIa\" rel=\"nofollow ugc\">https://shorturl.fm/d5UIa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(894,163,'Blake832','Blake832@gmail.com','','36.50.92.109','2025-07-21 01:41:59','2025-07-21 01:41:59','<a href=\"https://shorturl.fm/mZThu\" rel=\"nofollow ugc\">https://shorturl.fm/mZThu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(895,1,'Nathaniel4434','Nathaniel4434@gmail.com','','183.228.37.245','2025-07-21 12:34:43','2025-07-21 12:34:43','<a href=\"https://shorturl.fm/hmGIy\" rel=\"nofollow ugc\">https://shorturl.fm/hmGIy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(896,159,'Rosa1355','Rosa1355@gmail.com','','183.228.37.245','2025-07-21 12:34:59','2025-07-21 12:34:59','<a href=\"https://shorturl.fm/iWDlT\" rel=\"nofollow ugc\">https://shorturl.fm/iWDlT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(897,163,'Andrew4046','Andrew4046@gmail.com','','183.228.37.245','2025-07-21 12:35:15','2025-07-21 12:35:15','<a href=\"https://shorturl.fm/sKezm\" rel=\"nofollow ugc\">https://shorturl.fm/sKezm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(898,1,'Roland3544','Roland3544@gmail.com','','171.228.131.9','2025-07-21 14:53:44','2025-07-21 14:53:44','<a href=\"https://shorturl.fm/plSeC\" rel=\"nofollow ugc\">https://shorturl.fm/plSeC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(899,161,'Debbie3902','Debbie3902@gmail.com','','113.192.31.34','2025-07-21 22:54:48','2025-07-21 22:54:48','<a href=\"https://shorturl.fm/qtwpa\" rel=\"nofollow ugc\">https://shorturl.fm/qtwpa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(900,1,'Sydney4567','Sydney4567@gmail.com','','171.7.6.218','2025-07-22 03:07:57','2025-07-22 03:07:57','<a href=\"https://shorturl.fm/v2bKy\" rel=\"nofollow ugc\">https://shorturl.fm/v2bKy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(901,162,'Isla3233','Isla3233@gmail.com','','101.109.164.94','2025-07-22 05:26:10','2025-07-22 05:26:10','<a href=\"https://shorturl.fm/qbowY\" rel=\"nofollow ugc\">https://shorturl.fm/qbowY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(902,1,'Barret3007','Barret3007@gmail.com','','1.55.53.126','2025-07-22 08:41:20','2025-07-22 08:41:20','<a href=\"https://shorturl.fm/syF06\" rel=\"nofollow ugc\">https://shorturl.fm/syF06</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(903,159,'Britney1444','Britney1444@gmail.com','','1.55.53.126','2025-07-22 08:41:35','2025-07-22 08:41:35','<a href=\"https://shorturl.fm/RV4vH\" rel=\"nofollow ugc\">https://shorturl.fm/RV4vH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(904,1,'Marina1685','Marina1685@gmail.com','','58.187.70.65','2025-07-22 13:02:32','2025-07-22 13:02:32','<a href=\"https://shorturl.fm/JD7ui\" rel=\"nofollow ugc\">https://shorturl.fm/JD7ui</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(905,158,'Briley3339','Briley3339@gmail.com','','58.187.70.65','2025-07-22 13:02:47','2025-07-22 13:02:47','<a href=\"https://shorturl.fm/05gZV\" rel=\"nofollow ugc\">https://shorturl.fm/05gZV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(906,161,'Maya2978','Maya2978@gmail.com','','58.187.70.65','2025-07-22 13:03:02','2025-07-22 13:03:02','<a href=\"https://shorturl.fm/45ujB\" rel=\"nofollow ugc\">https://shorturl.fm/45ujB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(907,156,'Imelda1781','Imelda1781@gmail.com','','45.133.74.101','2025-07-22 15:09:34','2025-07-22 15:09:34','<a href=\"https://shorturl.fm/gwsZj\" rel=\"nofollow ugc\">https://shorturl.fm/gwsZj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(908,158,'Serena127','Serena127@gmail.com','','45.133.74.101','2025-07-22 15:09:51','2025-07-22 15:09:51','<a href=\"https://shorturl.fm/0GUFv\" rel=\"nofollow ugc\">https://shorturl.fm/0GUFv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(909,160,'Louis2265','Louis2265@gmail.com','','45.133.74.101','2025-07-22 15:10:10','2025-07-22 15:10:10','<a href=\"https://shorturl.fm/y1yV6\" rel=\"nofollow ugc\">https://shorturl.fm/y1yV6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(910,162,'Gabriel1246','Gabriel1246@gmail.com','','45.133.74.101','2025-07-22 15:10:32','2025-07-22 15:10:32','<a href=\"https://shorturl.fm/02o28\" rel=\"nofollow ugc\">https://shorturl.fm/02o28</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(911,1,'Leslie3530','Leslie3530@gmail.com','','123.20.7.139','2025-07-22 20:56:29','2025-07-22 20:56:29','<a href=\"https://shorturl.fm/IU9jE\" rel=\"nofollow ugc\">https://shorturl.fm/IU9jE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(912,161,'Jayla4982','Jayla4982@gmail.com','','123.20.7.139','2025-07-22 20:56:44','2025-07-22 20:56:44','<a href=\"https://shorturl.fm/fX8vC\" rel=\"nofollow ugc\">https://shorturl.fm/fX8vC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(913,1,'Charles711','Charles711@gmail.com','','118.68.212.83','2025-07-23 01:59:45','2025-07-23 01:59:45','<a href=\"https://shorturl.fm/Q3oBS\" rel=\"nofollow ugc\">https://shorturl.fm/Q3oBS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(914,1,'Briley200','Briley200@gmail.com','','118.68.212.83','2025-07-23 08:30:17','2025-07-23 08:30:17','<a href=\"https://shorturl.fm/kJpQJ\" rel=\"nofollow ugc\">https://shorturl.fm/kJpQJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(915,163,'Laila1115','Laila1115@gmail.com','','118.68.212.83','2025-07-23 08:30:32','2025-07-23 08:30:32','<a href=\"https://shorturl.fm/SaDXt\" rel=\"nofollow ugc\">https://shorturl.fm/SaDXt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(916,1,'Francesco387','Francesco387@gmail.com','','223.205.72.191','2025-07-23 15:56:40','2025-07-23 15:56:40','<a href=\"https://shorturl.fm/Eyoqe\" rel=\"nofollow ugc\">https://shorturl.fm/Eyoqe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(917,158,'King3792','King3792@gmail.com','','223.205.72.191','2025-07-23 15:57:05','2025-07-23 15:57:05','<a href=\"https://shorturl.fm/2objB\" rel=\"nofollow ugc\">https://shorturl.fm/2objB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(918,163,'Hailee148','Hailee148@gmail.com','','223.205.72.191','2025-07-23 15:57:48','2025-07-23 15:57:48','<a href=\"https://shorturl.fm/NOu47\" rel=\"nofollow ugc\">https://shorturl.fm/NOu47</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(919,1,'Bernice2901','Bernice2901@gmail.com','','77.110.123.32','2025-07-23 16:41:20','2025-07-23 16:41:20','<a href=\"https://shorturl.fm/NOu47\" rel=\"nofollow ugc\">https://shorturl.fm/NOu47</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(920,156,'Abigail4401','Abigail4401@gmail.com','','115.72.163.17','2025-07-23 16:49:18','2025-07-23 16:49:18','<a href=\"https://shorturl.fm/HETGj\" rel=\"nofollow ugc\">https://shorturl.fm/HETGj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(921,160,'Jesus3179','Jesus3179@gmail.com','','115.72.163.17','2025-07-23 16:49:38','2025-07-23 16:49:38','<a href=\"https://shorturl.fm/81t3r\" rel=\"nofollow ugc\">https://shorturl.fm/81t3r</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(922,1,'Marisa22','Marisa22@gmail.com','','101.108.106.205','2025-07-23 20:00:29','2025-07-23 20:00:29','<a href=\"https://shorturl.fm/o1LTN\" rel=\"nofollow ugc\">https://shorturl.fm/o1LTN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(923,156,'Gwendolyn2021','Gwendolyn2021@gmail.com','','101.108.106.205','2025-07-23 20:03:25','2025-07-23 20:03:25','<a href=\"https://shorturl.fm/1eswY\" rel=\"nofollow ugc\">https://shorturl.fm/1eswY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(924,158,'Hayes846','Hayes846@gmail.com','','101.108.106.205','2025-07-23 20:05:08','2025-07-23 20:05:08','<a href=\"https://shorturl.fm/o1LTN\" rel=\"nofollow ugc\">https://shorturl.fm/o1LTN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(925,163,'Marcus2109','Marcus2109@gmail.com','','101.108.106.205','2025-07-23 20:05:47','2025-07-23 20:05:47','<a href=\"https://shorturl.fm/oMgUy\" rel=\"nofollow ugc\">https://shorturl.fm/oMgUy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(926,1,'Rory2212','Rory2212@gmail.com','','58.187.162.201','2025-07-24 00:24:44','2025-07-24 00:24:44','<a href=\"https://shorturl.fm/ZB8QB\" rel=\"nofollow ugc\">https://shorturl.fm/ZB8QB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(927,156,'Natalie2913','Natalie2913@gmail.com','','58.187.162.201','2025-07-24 00:25:04','2025-07-24 00:25:04','<a href=\"https://shorturl.fm/iALy4\" rel=\"nofollow ugc\">https://shorturl.fm/iALy4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(928,157,'Katie3251','Katie3251@gmail.com','','58.187.162.201','2025-07-24 00:25:26','2025-07-24 00:25:26','<a href=\"https://shorturl.fm/YEOux\" rel=\"nofollow ugc\">https://shorturl.fm/YEOux</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(929,158,'Franklin3501','Franklin3501@gmail.com','','58.187.162.201','2025-07-24 00:25:46','2025-07-24 00:25:46','<a href=\"https://shorturl.fm/lzVXO\" rel=\"nofollow ugc\">https://shorturl.fm/lzVXO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(930,159,'Mark249','Mark249@gmail.com','','58.187.162.201','2025-07-24 00:26:05','2025-07-24 00:26:05','<a href=\"https://shorturl.fm/eSzWH\" rel=\"nofollow ugc\">https://shorturl.fm/eSzWH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(931,160,'Derrick4270','Derrick4270@gmail.com','','58.187.162.201','2025-07-24 00:26:25','2025-07-24 00:26:25','<a href=\"https://shorturl.fm/D68SZ\" rel=\"nofollow ugc\">https://shorturl.fm/D68SZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(932,161,'Isaac3964','Isaac3964@gmail.com','','58.187.162.201','2025-07-24 00:26:44','2025-07-24 00:26:44','<a href=\"https://shorturl.fm/LTAHK\" rel=\"nofollow ugc\">https://shorturl.fm/LTAHK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(933,162,'Linda3186','Linda3186@gmail.com','','58.187.162.201','2025-07-24 00:27:03','2025-07-24 00:27:03','<a href=\"https://shorturl.fm/SEbvv\" rel=\"nofollow ugc\">https://shorturl.fm/SEbvv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(934,163,'Elsa2417','Elsa2417@gmail.com','','58.187.162.201','2025-07-24 00:27:21','2025-07-24 00:27:21','<a href=\"https://shorturl.fm/SEbvv\" rel=\"nofollow ugc\">https://shorturl.fm/SEbvv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(935,1,'Destiny1453','Destiny1453@gmail.com','','49.146.240.111','2025-07-24 12:44:29','2025-07-24 12:44:29','<a href=\"https://shorturl.fm/gfW9u\" rel=\"nofollow ugc\">https://shorturl.fm/gfW9u</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(936,161,'Duncan2272','Duncan2272@gmail.com','','49.146.240.111','2025-07-24 12:44:45','2025-07-24 12:44:45','<a href=\"https://shorturl.fm/2w6sW\" rel=\"nofollow ugc\">https://shorturl.fm/2w6sW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(937,1,'Mason3616','Mason3616@gmail.com','','27.79.187.126','2025-07-24 14:03:28','2025-07-24 14:03:28','<a href=\"https://shorturl.fm/UpkjM\" rel=\"nofollow ugc\">https://shorturl.fm/UpkjM</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(938,156,'Summer730','Summer730@gmail.com','','27.79.187.126','2025-07-24 14:03:50','2025-07-24 14:03:50','<a href=\"https://shorturl.fm/yMqy2\" rel=\"nofollow ugc\">https://shorturl.fm/yMqy2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(939,157,'Christine4115','Christine4115@gmail.com','','27.79.187.126','2025-07-24 14:04:10','2025-07-24 14:04:10','<a href=\"https://shorturl.fm/146z0\" rel=\"nofollow ugc\">https://shorturl.fm/146z0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(940,158,'Brenda2932','Brenda2932@gmail.com','','27.79.187.126','2025-07-24 14:04:32','2025-07-24 14:04:32','<a href=\"https://shorturl.fm/V8nHL\" rel=\"nofollow ugc\">https://shorturl.fm/V8nHL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(941,159,'Nova2147','Nova2147@gmail.com','','27.79.187.126','2025-07-24 14:04:53','2025-07-24 14:04:53','<a href=\"https://shorturl.fm/Akbb1\" rel=\"nofollow ugc\">https://shorturl.fm/Akbb1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(942,161,'Faye1779','Faye1779@gmail.com','','27.79.187.126','2025-07-24 14:05:24','2025-07-24 14:05:24','<a href=\"https://shorturl.fm/gLRJ0\" rel=\"nofollow ugc\">https://shorturl.fm/gLRJ0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(943,162,'Ana4839','Ana4839@gmail.com','','27.79.187.126','2025-07-24 14:05:46','2025-07-24 14:05:46','<a href=\"https://shorturl.fm/qMyW8\" rel=\"nofollow ugc\">https://shorturl.fm/qMyW8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(944,163,'Abbie3945','Abbie3945@gmail.com','','27.79.187.126','2025-07-24 14:06:07','2025-07-24 14:06:07','<a href=\"https://shorturl.fm/W2JbL\" rel=\"nofollow ugc\">https://shorturl.fm/W2JbL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(945,1,'Damon96','Damon96@gmail.com','','78.47.219.204','2025-07-25 02:41:38','2025-07-25 02:41:38','<a href=\"https://shorturl.fm/5dy6t\" rel=\"nofollow ugc\">https://shorturl.fm/5dy6t</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(946,156,'Philip1139','Philip1139@gmail.com','','78.47.219.204','2025-07-25 02:42:00','2025-07-25 02:42:00','<a href=\"https://shorturl.fm/DtuEA\" rel=\"nofollow ugc\">https://shorturl.fm/DtuEA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(947,157,'Aaliyah1322','Aaliyah1322@gmail.com','','78.47.219.204','2025-07-25 02:42:21','2025-07-25 02:42:21','<a href=\"https://shorturl.fm/YSicD\" rel=\"nofollow ugc\">https://shorturl.fm/YSicD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(948,158,'Mark3080','Mark3080@gmail.com','','78.47.219.204','2025-07-25 02:42:43','2025-07-25 02:42:43','<a href=\"https://shorturl.fm/57QaF\" rel=\"nofollow ugc\">https://shorturl.fm/57QaF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(949,159,'Lauren1848','Lauren1848@gmail.com','','78.47.219.204','2025-07-25 02:43:04','2025-07-25 02:43:04','<a href=\"https://shorturl.fm/wYist\" rel=\"nofollow ugc\">https://shorturl.fm/wYist</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(950,160,'Jenna1021','Jenna1021@gmail.com','','78.47.219.204','2025-07-25 02:43:25','2025-07-25 02:43:25','<a href=\"https://shorturl.fm/YSicD\" rel=\"nofollow ugc\">https://shorturl.fm/YSicD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(951,161,'Luca2145','Luca2145@gmail.com','','78.47.219.204','2025-07-25 02:43:46','2025-07-25 02:43:46','<a href=\"https://shorturl.fm/Vh6NC\" rel=\"nofollow ugc\">https://shorturl.fm/Vh6NC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(952,162,'Bridget3428','Bridget3428@gmail.com','','78.47.219.204','2025-07-25 02:44:06','2025-07-25 02:44:06','<a href=\"https://shorturl.fm/AlCmW\" rel=\"nofollow ugc\">https://shorturl.fm/AlCmW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(953,163,'Teresa1933','Teresa1933@gmail.com','','78.47.219.204','2025-07-25 02:44:28','2025-07-25 02:44:28','<a href=\"https://shorturl.fm/bezzQ\" rel=\"nofollow ugc\">https://shorturl.fm/bezzQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(954,1,'Damian2394','Damian2394@gmail.com','','42.118.173.126','2025-07-25 07:30:33','2025-07-25 07:30:33','<a href=\"https://shorturl.fm/EJ04T\" rel=\"nofollow ugc\">https://shorturl.fm/EJ04T</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(955,156,'Alejandro105','Alejandro105@gmail.com','','42.118.173.126','2025-07-25 07:31:00','2025-07-25 07:31:00','<a href=\"https://shorturl.fm/pw6Wp\" rel=\"nofollow ugc\">https://shorturl.fm/pw6Wp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(956,157,'Gage3754','Gage3754@gmail.com','','42.118.173.126','2025-07-25 07:31:25','2025-07-25 07:31:25','<a href=\"https://shorturl.fm/pZfTU\" rel=\"nofollow ugc\">https://shorturl.fm/pZfTU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(957,158,'Serenity4369','Serenity4369@gmail.com','','42.118.173.126','2025-07-25 07:31:50','2025-07-25 07:31:50','<a href=\"https://shorturl.fm/QIWDU\" rel=\"nofollow ugc\">https://shorturl.fm/QIWDU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(958,159,'Adelyn4617','Adelyn4617@gmail.com','','42.118.173.126','2025-07-25 07:32:12','2025-07-25 07:32:12','<a href=\"https://shorturl.fm/uiveA\" rel=\"nofollow ugc\">https://shorturl.fm/uiveA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(959,160,'Gwen803','Gwen803@gmail.com','','42.118.173.126','2025-07-25 07:32:31','2025-07-25 07:32:31','<a href=\"https://shorturl.fm/MYqox\" rel=\"nofollow ugc\">https://shorturl.fm/MYqox</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(960,161,'Virginia2754','Virginia2754@gmail.com','','42.118.173.126','2025-07-25 07:32:49','2025-07-25 07:32:49','<a href=\"https://shorturl.fm/bqe3q\" rel=\"nofollow ugc\">https://shorturl.fm/bqe3q</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(961,162,'Josie941','Josie941@gmail.com','','42.118.173.126','2025-07-25 07:33:10','2025-07-25 07:33:10','<a href=\"https://shorturl.fm/NoKXR\" rel=\"nofollow ugc\">https://shorturl.fm/NoKXR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(962,163,'Mona2338','Mona2338@gmail.com','','42.118.173.126','2025-07-25 07:33:35','2025-07-25 07:33:35','<a href=\"https://shorturl.fm/G74qJ\" rel=\"nofollow ugc\">https://shorturl.fm/G74qJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(963,1,'Trevor2827','Trevor2827@gmail.com','','66.231.65.133','2025-07-25 23:00:51','2025-07-25 23:00:51','<a href=\"https://shorturl.fm/uxiJp\" rel=\"nofollow ugc\">https://shorturl.fm/uxiJp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(964,156,'Dorothy244','Dorothy244@gmail.com','','66.231.65.133','2025-07-25 23:01:18','2025-07-25 23:01:18','<a href=\"https://shorturl.fm/19As6\" rel=\"nofollow ugc\">https://shorturl.fm/19As6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(965,157,'Elsa1232','Elsa1232@gmail.com','','66.231.65.133','2025-07-25 23:01:45','2025-07-25 23:01:45','<a href=\"https://shorturl.fm/f6Tt8\" rel=\"nofollow ugc\">https://shorturl.fm/f6Tt8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(966,158,'Adeline4658','Adeline4658@gmail.com','','66.231.65.133','2025-07-25 23:02:13','2025-07-25 23:02:13','<a href=\"https://shorturl.fm/cztET\" rel=\"nofollow ugc\">https://shorturl.fm/cztET</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(967,159,'Conrad2872','Conrad2872@gmail.com','','66.231.65.133','2025-07-25 23:02:41','2025-07-25 23:02:41','<a href=\"https://shorturl.fm/Rf0ac\" rel=\"nofollow ugc\">https://shorturl.fm/Rf0ac</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(968,160,'Will2642','Will2642@gmail.com','','66.231.65.133','2025-07-25 23:03:08','2025-07-25 23:03:08','<a href=\"https://shorturl.fm/QetyG\" rel=\"nofollow ugc\">https://shorturl.fm/QetyG</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(969,161,'Guillermo963','Guillermo963@gmail.com','','66.231.65.133','2025-07-25 23:03:36','2025-07-25 23:03:36','<a href=\"https://shorturl.fm/19As6\" rel=\"nofollow ugc\">https://shorturl.fm/19As6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(970,162,'Jaxon4820','Jaxon4820@gmail.com','','66.231.65.133','2025-07-25 23:04:06','2025-07-25 23:04:06','<a href=\"https://shorturl.fm/19As6\" rel=\"nofollow ugc\">https://shorturl.fm/19As6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(971,163,'Deirdre2845','Deirdre2845@gmail.com','','66.231.65.133','2025-07-25 23:04:36','2025-07-25 23:04:36','<a href=\"https://shorturl.fm/sQIP4\" rel=\"nofollow ugc\">https://shorturl.fm/sQIP4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(972,1,'Hunter927','Hunter927@gmail.com','','119.14.30.35','2025-07-26 01:18:35','2025-07-26 01:18:35','<a href=\"https://shorturl.fm/vkian\" rel=\"nofollow ugc\">https://shorturl.fm/vkian</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(973,160,'Carmen4801','Carmen4801@gmail.com','','119.14.30.35','2025-07-26 01:18:51','2025-07-26 01:18:51','<a href=\"https://shorturl.fm/cHB2x\" rel=\"nofollow ugc\">https://shorturl.fm/cHB2x</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(974,1,'Esperanza4189','Esperanza4189@gmail.com','','35.149.227.22','2025-07-26 03:01:44','2025-07-26 03:01:44','<a href=\"https://shorturl.fm/sHL4n\" rel=\"nofollow ugc\">https://shorturl.fm/sHL4n</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(975,156,'Allison4078','Allison4078@gmail.com','','35.149.227.22','2025-07-26 03:02:14','2025-07-26 03:02:14','<a href=\"https://shorturl.fm/pxjbc\" rel=\"nofollow ugc\">https://shorturl.fm/pxjbc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(976,157,'Marian504','Marian504@gmail.com','','35.149.227.22','2025-07-26 03:02:43','2025-07-26 03:02:43','<a href=\"https://shorturl.fm/sYo2L\" rel=\"nofollow ugc\">https://shorturl.fm/sYo2L</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(977,159,'Angelica4910','Angelica4910@gmail.com','','35.149.227.22','2025-07-26 03:03:22','2025-07-26 03:03:22','<a href=\"https://shorturl.fm/gMsH0\" rel=\"nofollow ugc\">https://shorturl.fm/gMsH0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(978,160,'Max2036','Max2036@gmail.com','','35.149.227.22','2025-07-26 03:03:50','2025-07-26 03:03:50','<a href=\"https://shorturl.fm/sYo2L\" rel=\"nofollow ugc\">https://shorturl.fm/sYo2L</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(979,161,'Paige108','Paige108@gmail.com','','35.149.227.22','2025-07-26 03:04:18','2025-07-26 03:04:18','<a href=\"https://shorturl.fm/gMsH0\" rel=\"nofollow ugc\">https://shorturl.fm/gMsH0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(980,162,'Kane2870','Kane2870@gmail.com','','35.149.227.22','2025-07-26 03:04:45','2025-07-26 03:04:45','<a href=\"https://shorturl.fm/86yho\" rel=\"nofollow ugc\">https://shorturl.fm/86yho</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(981,163,'Jesse3113','Jesse3113@gmail.com','','35.149.227.22','2025-07-26 03:05:13','2025-07-26 03:05:13','<a href=\"https://shorturl.fm/CbsCD\" rel=\"nofollow ugc\">https://shorturl.fm/CbsCD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(982,156,'Ellis3258','Ellis3258@gmail.com','','159.2.26.56','2025-07-26 03:42:57','2025-07-26 03:42:57','<a href=\"https://shorturl.fm/sYo2L\" rel=\"nofollow ugc\">https://shorturl.fm/sYo2L</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(983,157,'Arabella3572','Arabella3572@gmail.com','','159.2.26.56','2025-07-26 03:43:27','2025-07-26 03:43:27','<a href=\"https://shorturl.fm/mTdqB\" rel=\"nofollow ugc\">https://shorturl.fm/mTdqB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(984,158,'Molly4454','Molly4454@gmail.com','','159.2.26.56','2025-07-26 03:43:56','2025-07-26 03:43:56','<a href=\"https://shorturl.fm/9Mxdn\" rel=\"nofollow ugc\">https://shorturl.fm/9Mxdn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(985,159,'Kevin4550','Kevin4550@gmail.com','','159.2.26.56','2025-07-26 03:44:26','2025-07-26 03:44:26','<a href=\"https://shorturl.fm/9VRbe\" rel=\"nofollow ugc\">https://shorturl.fm/9VRbe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(986,160,'Craig3258','Craig3258@gmail.com','','159.2.26.56','2025-07-26 03:44:55','2025-07-26 03:44:55','<a href=\"https://shorturl.fm/gMsH0\" rel=\"nofollow ugc\">https://shorturl.fm/gMsH0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(987,161,'Savannah1501','Savannah1501@gmail.com','','159.2.26.56','2025-07-26 03:45:30','2025-07-26 03:45:30','<a href=\"https://shorturl.fm/9VRbe\" rel=\"nofollow ugc\">https://shorturl.fm/9VRbe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(988,1,'Clifford4697','Clifford4697@gmail.com','','223.205.74.139','2025-07-26 08:15:52','2025-07-26 08:15:52','<a href=\"https://shorturl.fm/GxJtH\" rel=\"nofollow ugc\">https://shorturl.fm/GxJtH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(989,156,'Garrett4578','Garrett4578@gmail.com','','223.205.74.139','2025-07-26 08:16:13','2025-07-26 08:16:13','<a href=\"https://shorturl.fm/HbV97\" rel=\"nofollow ugc\">https://shorturl.fm/HbV97</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(990,157,'Ryder2665','Ryder2665@gmail.com','','223.205.74.139','2025-07-26 08:16:38','2025-07-26 08:16:38','<a href=\"https://shorturl.fm/hE8BS\" rel=\"nofollow ugc\">https://shorturl.fm/hE8BS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(991,158,'Easton4154','Easton4154@gmail.com','','223.205.74.139','2025-07-26 08:17:03','2025-07-26 08:17:03','<a href=\"https://shorturl.fm/Jjw5z\" rel=\"nofollow ugc\">https://shorturl.fm/Jjw5z</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(992,159,'Allen3224','Allen3224@gmail.com','','223.205.74.139','2025-07-26 08:17:29','2025-07-26 08:17:29','<a href=\"https://shorturl.fm/hE8BS\" rel=\"nofollow ugc\">https://shorturl.fm/hE8BS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(993,160,'Tristan3650','Tristan3650@gmail.com','','223.205.74.139','2025-07-26 08:17:58','2025-07-26 08:17:58','<a href=\"https://shorturl.fm/WV4ud\" rel=\"nofollow ugc\">https://shorturl.fm/WV4ud</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(994,162,'Angelina4053','Angelina4053@gmail.com','','223.205.74.139','2025-07-26 08:18:30','2025-07-26 08:18:30','<a href=\"https://shorturl.fm/9M701\" rel=\"nofollow ugc\">https://shorturl.fm/9M701</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(995,163,'Agnes2802','Agnes2802@gmail.com','','223.205.74.139','2025-07-26 08:18:52','2025-07-26 08:18:52','<a href=\"https://shorturl.fm/oqyGw\" rel=\"nofollow ugc\">https://shorturl.fm/oqyGw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(996,1,'Channing197','Channing197@gmail.com','','190.97.227.165','2025-07-26 19:44:09','2025-07-26 19:44:09','<a href=\"https://shorturl.fm/iGknL\" rel=\"nofollow ugc\">https://shorturl.fm/iGknL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(997,156,'Ernest4996','Ernest4996@gmail.com','','190.97.227.165','2025-07-26 19:44:42','2025-07-26 19:44:42','<a href=\"https://shorturl.fm/qXSIi\" rel=\"nofollow ugc\">https://shorturl.fm/qXSIi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(998,157,'Juliet4967','Juliet4967@gmail.com','','190.97.227.165','2025-07-26 19:45:16','2025-07-26 19:45:16','<a href=\"https://shorturl.fm/GdB2x\" rel=\"nofollow ugc\">https://shorturl.fm/GdB2x</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(999,158,'Gabriel3667','Gabriel3667@gmail.com','','190.97.227.165','2025-07-26 19:45:49','2025-07-26 19:45:49','<a href=\"https://shorturl.fm/2ENpX\" rel=\"nofollow ugc\">https://shorturl.fm/2ENpX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1000,161,'Kane3470','Kane3470@gmail.com','','190.97.227.165','2025-07-26 19:46:05','2025-07-26 19:46:05','<a href=\"https://shorturl.fm/qXSIi\" rel=\"nofollow ugc\">https://shorturl.fm/qXSIi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1001,162,'Lorenzo1539','Lorenzo1539@gmail.com','','190.97.227.165','2025-07-26 19:46:38','2025-07-26 19:46:38','<a href=\"https://shorturl.fm/PCmFw\" rel=\"nofollow ugc\">https://shorturl.fm/PCmFw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1002,163,'Alden1923','Alden1923@gmail.com','','190.97.227.165','2025-07-26 19:47:06','2025-07-26 19:47:06','<a href=\"https://shorturl.fm/bt05f\" rel=\"nofollow ugc\">https://shorturl.fm/bt05f</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1003,1,'Lydia1473','Lydia1473@gmail.com','','212.113.112.84','2025-07-26 21:07:45','2025-07-26 21:07:45','<a href=\"https://shorturl.fm/vB6VN\" rel=\"nofollow ugc\">https://shorturl.fm/vB6VN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1004,160,'Beryl2590','Beryl2590@gmail.com','','212.113.112.84','2025-07-26 21:08:02','2025-07-26 21:08:02','<a href=\"https://shorturl.fm/iuiDE\" rel=\"nofollow ugc\">https://shorturl.fm/iuiDE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1005,1,'Edward4291','Edward4291@gmail.com','','171.251.108.35','2025-07-26 22:39:38','2025-07-26 22:39:38','<a href=\"https://shorturl.fm/JQZAn\" rel=\"nofollow ugc\">https://shorturl.fm/JQZAn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1006,157,'Kiera2469','Kiera2469@gmail.com','','171.251.108.35','2025-07-26 22:40:16','2025-07-26 22:40:16','<a href=\"https://shorturl.fm/1pn8P\" rel=\"nofollow ugc\">https://shorturl.fm/1pn8P</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1007,158,'Mira2853','Mira2853@gmail.com','','171.251.108.35','2025-07-26 22:40:44','2025-07-26 22:40:44','<a href=\"https://shorturl.fm/IUaOu\" rel=\"nofollow ugc\">https://shorturl.fm/IUaOu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1008,159,'Melody4593','Melody4593@gmail.com','','171.251.108.35','2025-07-26 22:41:11','2025-07-26 22:41:11','<a href=\"https://shorturl.fm/kWb2t\" rel=\"nofollow ugc\">https://shorturl.fm/kWb2t</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1009,160,'Madison2099','Madison2099@gmail.com','','171.251.108.35','2025-07-26 22:41:40','2025-07-26 22:41:40','<a href=\"https://shorturl.fm/t5AZn\" rel=\"nofollow ugc\">https://shorturl.fm/t5AZn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1010,161,'Douglas1241','Douglas1241@gmail.com','','171.251.108.35','2025-07-26 22:42:08','2025-07-26 22:42:08','<a href=\"https://shorturl.fm/uwqfQ\" rel=\"nofollow ugc\">https://shorturl.fm/uwqfQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1011,162,'Cadence1487','Cadence1487@gmail.com','','171.251.108.35','2025-07-26 22:42:37','2025-07-26 22:42:37','<a href=\"https://shorturl.fm/45riq\" rel=\"nofollow ugc\">https://shorturl.fm/45riq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1012,163,'Casey1765','Casey1765@gmail.com','','171.251.108.35','2025-07-26 22:43:03','2025-07-26 22:43:03','<a href=\"https://shorturl.fm/vB6VN\" rel=\"nofollow ugc\">https://shorturl.fm/vB6VN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1013,1,'Gus3020','Gus3020@gmail.com','','34.142.215.211','2025-07-27 05:11:28','2025-07-27 05:11:28','<a href=\"https://shorturl.fm/G1KDi\" rel=\"nofollow ugc\">https://shorturl.fm/G1KDi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1014,156,'Addison2989','Addison2989@gmail.com','','34.142.215.211','2025-07-27 05:11:53','2025-07-27 05:11:53','<a href=\"https://shorturl.fm/pMywQ\" rel=\"nofollow ugc\">https://shorturl.fm/pMywQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1015,157,'Israel4942','Israel4942@gmail.com','','34.142.215.211','2025-07-27 05:12:18','2025-07-27 05:12:18','<a href=\"https://shorturl.fm/0lxp8\" rel=\"nofollow ugc\">https://shorturl.fm/0lxp8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1016,158,'Allison203','Allison203@gmail.com','','34.142.215.211','2025-07-27 05:12:46','2025-07-27 05:12:46','<a href=\"https://shorturl.fm/sAKRs\" rel=\"nofollow ugc\">https://shorturl.fm/sAKRs</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1017,159,'Phyllis1096','Phyllis1096@gmail.com','','34.142.215.211','2025-07-27 05:13:12','2025-07-27 05:13:12','<a href=\"https://shorturl.fm/hbfl1\" rel=\"nofollow ugc\">https://shorturl.fm/hbfl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1018,160,'Reagan2336','Reagan2336@gmail.com','','34.142.215.211','2025-07-27 05:13:39','2025-07-27 05:13:39','<a href=\"https://shorturl.fm/XJMXy\" rel=\"nofollow ugc\">https://shorturl.fm/XJMXy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1019,161,'Christian124','Christian124@gmail.com','','34.142.215.211','2025-07-27 05:14:08','2025-07-27 05:14:08','<a href=\"https://shorturl.fm/sJvoB\" rel=\"nofollow ugc\">https://shorturl.fm/sJvoB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1020,162,'Leah2105','Leah2105@gmail.com','','34.142.215.211','2025-07-27 05:14:33','2025-07-27 05:14:33','<a href=\"https://shorturl.fm/8Y0y7\" rel=\"nofollow ugc\">https://shorturl.fm/8Y0y7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1021,163,'Dalton879','Dalton879@gmail.com','','34.142.215.211','2025-07-27 05:15:00','2025-07-27 05:15:00','<a href=\"https://shorturl.fm/2V2xE\" rel=\"nofollow ugc\">https://shorturl.fm/2V2xE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1022,1,'Esperanza148','Esperanza148@gmail.com','','76.104.141.254','2025-07-27 05:18:25','2025-07-27 05:18:25','<a href=\"https://shorturl.fm/1lNtc\" rel=\"nofollow ugc\">https://shorturl.fm/1lNtc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1023,156,'Cadence565','Cadence565@gmail.com','','76.104.141.254','2025-07-27 05:18:53','2025-07-27 05:18:53','<a href=\"https://shorturl.fm/1lNtc\" rel=\"nofollow ugc\">https://shorturl.fm/1lNtc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1024,157,'Carmen1820','Carmen1820@gmail.com','','76.104.141.254','2025-07-27 05:19:22','2025-07-27 05:19:22','<a href=\"https://shorturl.fm/LrMOE\" rel=\"nofollow ugc\">https://shorturl.fm/LrMOE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1025,158,'Aniya2803','Aniya2803@gmail.com','','76.104.141.254','2025-07-27 05:19:50','2025-07-27 05:19:50','<a href=\"https://shorturl.fm/Jmawq\" rel=\"nofollow ugc\">https://shorturl.fm/Jmawq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1026,159,'Evie1574','Evie1574@gmail.com','','76.104.141.254','2025-07-27 05:20:30','2025-07-27 05:20:30','<a href=\"https://shorturl.fm/J1koR\" rel=\"nofollow ugc\">https://shorturl.fm/J1koR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1027,1,'Felix2383','Felix2383@gmail.com','','120.29.110.160','2025-07-27 11:04:16','2025-07-27 11:04:16','<a href=\"https://shorturl.fm/7HfSX\" rel=\"nofollow ugc\">https://shorturl.fm/7HfSX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1028,156,'Heather849','Heather849@gmail.com','','120.29.110.160','2025-07-27 11:04:40','2025-07-27 11:04:40','<a href=\"https://shorturl.fm/kmtCF\" rel=\"nofollow ugc\">https://shorturl.fm/kmtCF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1029,157,'Aylin749','Aylin749@gmail.com','','120.29.110.160','2025-07-27 11:05:06','2025-07-27 11:05:06','<a href=\"https://shorturl.fm/WgVTN\" rel=\"nofollow ugc\">https://shorturl.fm/WgVTN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1030,158,'Madelyn3115','Madelyn3115@gmail.com','','120.29.110.160','2025-07-27 11:05:29','2025-07-27 11:05:29','<a href=\"https://shorturl.fm/zleKH\" rel=\"nofollow ugc\">https://shorturl.fm/zleKH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1031,159,'Lily1178','Lily1178@gmail.com','','120.29.110.160','2025-07-27 11:05:54','2025-07-27 11:05:54','<a href=\"https://shorturl.fm/WdjDZ\" rel=\"nofollow ugc\">https://shorturl.fm/WdjDZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1032,160,'Martha4889','Martha4889@gmail.com','','120.29.110.160','2025-07-27 11:06:25','2025-07-27 11:06:25','<a href=\"https://shorturl.fm/u5Xqe\" rel=\"nofollow ugc\">https://shorturl.fm/u5Xqe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1033,161,'Jocelyn2801','Jocelyn2801@gmail.com','','120.29.110.160','2025-07-27 11:06:58','2025-07-27 11:06:58','<a href=\"https://shorturl.fm/kpaLA\" rel=\"nofollow ugc\">https://shorturl.fm/kpaLA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1034,162,'Keegan2331','Keegan2331@gmail.com','','120.29.110.160','2025-07-27 11:07:24','2025-07-27 11:07:24','<a href=\"https://shorturl.fm/7HfSX\" rel=\"nofollow ugc\">https://shorturl.fm/7HfSX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1035,163,'Brenda4522','Brenda4522@gmail.com','','120.29.110.160','2025-07-27 11:07:51','2025-07-27 11:07:51','<a href=\"https://shorturl.fm/04D9i\" rel=\"nofollow ugc\">https://shorturl.fm/04D9i</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1036,1,'Spencer107','Spencer107@gmail.com','','136.53.95.211','2025-07-28 01:00:45','2025-07-28 01:00:45','<a href=\"https://shorturl.fm/AlRqq\" rel=\"nofollow ugc\">https://shorturl.fm/AlRqq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1037,156,'Cornelius924','Cornelius924@gmail.com','','136.53.95.211','2025-07-28 01:01:13','2025-07-28 01:01:13','<a href=\"https://shorturl.fm/2L7yf\" rel=\"nofollow ugc\">https://shorturl.fm/2L7yf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1038,157,'Kimberly2008','Kimberly2008@gmail.com','','136.53.95.211','2025-07-28 01:01:39','2025-07-28 01:01:39','<a href=\"https://shorturl.fm/WtOGJ\" rel=\"nofollow ugc\">https://shorturl.fm/WtOGJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1039,158,'Harlan2176','Harlan2176@gmail.com','','136.53.95.211','2025-07-28 01:02:05','2025-07-28 01:02:05','<a href=\"https://shorturl.fm/REHzy\" rel=\"nofollow ugc\">https://shorturl.fm/REHzy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1040,159,'Amelia3109','Amelia3109@gmail.com','','136.53.95.211','2025-07-28 01:02:32','2025-07-28 01:02:32','<a href=\"https://shorturl.fm/5KMrf\" rel=\"nofollow ugc\">https://shorturl.fm/5KMrf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1041,160,'Joseph2265','Joseph2265@gmail.com','','136.53.95.211','2025-07-28 01:02:58','2025-07-28 01:02:58','<a href=\"https://shorturl.fm/G5yKV\" rel=\"nofollow ugc\">https://shorturl.fm/G5yKV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1042,161,'Larry217','Larry217@gmail.com','','136.53.95.211','2025-07-28 01:03:25','2025-07-28 01:03:25','<a href=\"https://shorturl.fm/AWB6U\" rel=\"nofollow ugc\">https://shorturl.fm/AWB6U</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1043,162,'Carolyn4733','Carolyn4733@gmail.com','','136.53.95.211','2025-07-28 01:03:50','2025-07-28 01:03:50','<a href=\"https://shorturl.fm/2L7yf\" rel=\"nofollow ugc\">https://shorturl.fm/2L7yf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1044,163,'Pearl4079','Pearl4079@gmail.com','','136.53.95.211','2025-07-28 01:04:16','2025-07-28 01:04:16','<a href=\"https://shorturl.fm/8wYqS\" rel=\"nofollow ugc\">https://shorturl.fm/8wYqS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1045,1,'Renee505','Renee505@gmail.com','','181.91.85.106','2025-07-28 14:36:11','2025-07-28 14:36:11','<a href=\"https://shorturl.fm/xmqSw\" rel=\"nofollow ugc\">https://shorturl.fm/xmqSw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1046,156,'Addison4511','Addison4511@gmail.com','','181.91.85.106','2025-07-28 14:36:41','2025-07-28 14:36:41','<a href=\"https://shorturl.fm/mtfjy\" rel=\"nofollow ugc\">https://shorturl.fm/mtfjy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1047,157,'Beryl1370','Beryl1370@gmail.com','','181.91.85.106','2025-07-28 14:37:12','2025-07-28 14:37:12','<a href=\"https://shorturl.fm/c94FV\" rel=\"nofollow ugc\">https://shorturl.fm/c94FV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1048,158,'Skylar44','Skylar44@gmail.com','','181.91.85.106','2025-07-28 14:37:40','2025-07-28 14:37:40','<a href=\"https://shorturl.fm/z9rfb\" rel=\"nofollow ugc\">https://shorturl.fm/z9rfb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1049,159,'Charles268','Charles268@gmail.com','','181.91.85.106','2025-07-28 14:38:08','2025-07-28 14:38:08','<a href=\"https://shorturl.fm/9nnv9\" rel=\"nofollow ugc\">https://shorturl.fm/9nnv9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1050,160,'Carolyn4112','Carolyn4112@gmail.com','','181.91.85.106','2025-07-28 14:38:38','2025-07-28 14:38:38','<a href=\"https://shorturl.fm/9hOSZ\" rel=\"nofollow ugc\">https://shorturl.fm/9hOSZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1051,161,'Layla2882','Layla2882@gmail.com','','181.91.85.106','2025-07-28 14:39:06','2025-07-28 14:39:06','<a href=\"https://shorturl.fm/J6NFo\" rel=\"nofollow ugc\">https://shorturl.fm/J6NFo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1052,162,'Angelo3065','Angelo3065@gmail.com','','181.91.85.106','2025-07-28 14:39:36','2025-07-28 14:39:36','<a href=\"https://shorturl.fm/vpPqm\" rel=\"nofollow ugc\">https://shorturl.fm/vpPqm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1053,163,'Ralph3356','Ralph3356@gmail.com','','181.91.85.106','2025-07-28 14:40:04','2025-07-28 14:40:04','<a href=\"https://shorturl.fm/pqMzI\" rel=\"nofollow ugc\">https://shorturl.fm/pqMzI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1054,1,'Elmer1138','Elmer1138@gmail.com','','207.174.30.91','2025-07-28 16:54:23','2025-07-28 16:54:23','<a href=\"https://shorturl.fm/n0e5T\" rel=\"nofollow ugc\">https://shorturl.fm/n0e5T</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1055,1,'Elijah3297','Elijah3297@gmail.com','','124.180.16.226','2025-07-28 18:58:15','2025-07-28 18:58:15','<a href=\"https://shorturl.fm/aiezY\" rel=\"nofollow ugc\">https://shorturl.fm/aiezY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1056,156,'Asher98','Asher98@gmail.com','','124.180.16.226','2025-07-28 18:58:44','2025-07-28 18:58:44','<a href=\"https://shorturl.fm/IxnPL\" rel=\"nofollow ugc\">https://shorturl.fm/IxnPL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1057,157,'Kaden3705','Kaden3705@gmail.com','','124.180.16.226','2025-07-28 18:59:16','2025-07-28 18:59:16','<a href=\"https://shorturl.fm/LUrUe\" rel=\"nofollow ugc\">https://shorturl.fm/LUrUe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1058,158,'Quentin1168','Quentin1168@gmail.com','','124.180.16.226','2025-07-28 18:59:43','2025-07-28 18:59:43','<a href=\"https://shorturl.fm/IxnPL\" rel=\"nofollow ugc\">https://shorturl.fm/IxnPL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1059,159,'Reed4991','Reed4991@gmail.com','','124.180.16.226','2025-07-28 19:00:07','2025-07-28 19:00:07','<a href=\"https://shorturl.fm/QsQ1T\" rel=\"nofollow ugc\">https://shorturl.fm/QsQ1T</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1060,160,'Gabriella4045','Gabriella4045@gmail.com','','124.180.16.226','2025-07-28 19:00:33','2025-07-28 19:00:33','<a href=\"https://shorturl.fm/AwTlw\" rel=\"nofollow ugc\">https://shorturl.fm/AwTlw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1061,161,'Blair2578','Blair2578@gmail.com','','124.180.16.226','2025-07-28 19:00:58','2025-07-28 19:00:58','<a href=\"https://shorturl.fm/z7NnJ\" rel=\"nofollow ugc\">https://shorturl.fm/z7NnJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1062,162,'Eva1448','Eva1448@gmail.com','','124.180.16.226','2025-07-28 19:01:22','2025-07-28 19:01:22','<a href=\"https://shorturl.fm/Qahjh\" rel=\"nofollow ugc\">https://shorturl.fm/Qahjh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1063,163,'Hugh1295','Hugh1295@gmail.com','','124.180.16.226','2025-07-28 19:01:50','2025-07-28 19:01:50','<a href=\"https://shorturl.fm/LUrUe\" rel=\"nofollow ugc\">https://shorturl.fm/LUrUe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1064,1,'Marion1998','Marion1998@gmail.com','','49.48.59.100','2025-07-28 21:42:16','2025-07-28 21:42:16','<a href=\"https://shorturl.fm/JRtxP\" rel=\"nofollow ugc\">https://shorturl.fm/JRtxP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1065,156,'Jasmine4813','Jasmine4813@gmail.com','','49.48.59.100','2025-07-28 21:42:40','2025-07-28 21:42:40','<a href=\"https://shorturl.fm/jpVSh\" rel=\"nofollow ugc\">https://shorturl.fm/jpVSh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1066,157,'Hayes2834','Hayes2834@gmail.com','','49.48.59.100','2025-07-28 21:43:02','2025-07-28 21:43:02','<a href=\"https://shorturl.fm/fBF9S\" rel=\"nofollow ugc\">https://shorturl.fm/fBF9S</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1067,158,'Devon4257','Devon4257@gmail.com','','49.48.59.100','2025-07-28 21:43:26','2025-07-28 21:43:26','<a href=\"https://shorturl.fm/vvakl\" rel=\"nofollow ugc\">https://shorturl.fm/vvakl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1068,159,'August2247','August2247@gmail.com','','49.48.59.100','2025-07-28 21:43:50','2025-07-28 21:43:50','<a href=\"https://shorturl.fm/mPj4S\" rel=\"nofollow ugc\">https://shorturl.fm/mPj4S</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1069,160,'Arabella444','Arabella444@gmail.com','','49.48.59.100','2025-07-28 21:44:13','2025-07-28 21:44:13','<a href=\"https://shorturl.fm/vvakl\" rel=\"nofollow ugc\">https://shorturl.fm/vvakl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1070,161,'Rick1207','Rick1207@gmail.com','','49.48.59.100','2025-07-28 21:44:37','2025-07-28 21:44:37','<a href=\"https://shorturl.fm/aH68r\" rel=\"nofollow ugc\">https://shorturl.fm/aH68r</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1071,162,'Lilian3145','Lilian3145@gmail.com','','49.48.59.100','2025-07-28 21:45:02','2025-07-28 21:45:02','<a href=\"https://shorturl.fm/gT0gw\" rel=\"nofollow ugc\">https://shorturl.fm/gT0gw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1072,163,'Alyssa4161','Alyssa4161@gmail.com','','49.48.59.100','2025-07-28 21:45:26','2025-07-28 21:45:26','<a href=\"https://shorturl.fm/rbXgp\" rel=\"nofollow ugc\">https://shorturl.fm/rbXgp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1073,1,'Miles2781','Miles2781@gmail.com','','116.108.34.114','2025-07-29 13:34:45','2025-07-29 13:34:45','<a href=\"https://shorturl.fm/hKeNC\" rel=\"nofollow ugc\">https://shorturl.fm/hKeNC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1074,158,'Jaiden1862','Jaiden1862@gmail.com','','116.108.34.114','2025-07-29 13:35:02','2025-07-29 13:35:02','<a href=\"https://shorturl.fm/hKeNC\" rel=\"nofollow ugc\">https://shorturl.fm/hKeNC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1075,159,'Fiona600','Fiona600@gmail.com','','116.108.34.114','2025-07-29 13:35:33','2025-07-29 13:35:33','<a href=\"https://shorturl.fm/AwqMm\" rel=\"nofollow ugc\">https://shorturl.fm/AwqMm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1076,160,'Kirsten1925','Kirsten1925@gmail.com','','116.108.34.114','2025-07-29 13:36:02','2025-07-29 13:36:02','<a href=\"https://shorturl.fm/ycdpe\" rel=\"nofollow ugc\">https://shorturl.fm/ycdpe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1077,161,'Marshall4477','Marshall4477@gmail.com','','116.108.34.114','2025-07-29 13:36:31','2025-07-29 13:36:31','<a href=\"https://shorturl.fm/hnOFm\" rel=\"nofollow ugc\">https://shorturl.fm/hnOFm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1078,162,'Luis4407','Luis4407@gmail.com','','116.108.34.114','2025-07-29 13:36:57','2025-07-29 13:36:57','<a href=\"https://shorturl.fm/7CwxL\" rel=\"nofollow ugc\">https://shorturl.fm/7CwxL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1079,163,'Cornelius3871','Cornelius3871@gmail.com','','116.108.34.114','2025-07-29 13:37:32','2025-07-29 13:37:32','<a href=\"https://shorturl.fm/hgz3L\" rel=\"nofollow ugc\">https://shorturl.fm/hgz3L</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1080,1,'Katelyn936','Katelyn936@gmail.com','','4.197.237.28','2025-07-29 18:17:31','2025-07-29 18:17:31','<a href=\"https://shorturl.fm/maDIZ\" rel=\"nofollow ugc\">https://shorturl.fm/maDIZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1081,156,'Sara2110','Sara2110@gmail.com','','4.197.237.28','2025-07-29 18:17:53','2025-07-29 18:17:53','<a href=\"https://shorturl.fm/w8YMp\" rel=\"nofollow ugc\">https://shorturl.fm/w8YMp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1082,157,'Maggie4069','Maggie4069@gmail.com','','4.197.237.28','2025-07-29 18:18:15','2025-07-29 18:18:15','<a href=\"https://shorturl.fm/2fjI0\" rel=\"nofollow ugc\">https://shorturl.fm/2fjI0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1083,160,'Francis357','Francis357@gmail.com','','4.197.237.28','2025-07-29 18:19:06','2025-07-29 18:19:06','<a href=\"https://shorturl.fm/Fn5yn\" rel=\"nofollow ugc\">https://shorturl.fm/Fn5yn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1084,161,'Gracie3605','Gracie3605@gmail.com','','4.197.237.28','2025-07-29 18:19:28','2025-07-29 18:19:28','<a href=\"https://shorturl.fm/qQtkL\" rel=\"nofollow ugc\">https://shorturl.fm/qQtkL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1085,162,'Agnes661','Agnes661@gmail.com','','4.197.237.28','2025-07-29 18:19:51','2025-07-29 18:19:51','<a href=\"https://shorturl.fm/4Hiud\" rel=\"nofollow ugc\">https://shorturl.fm/4Hiud</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1086,1,'Imelda490','Imelda490@gmail.com','','211.251.167.71','2025-07-30 02:49:35','2025-07-30 02:49:35','<a href=\"https://shorturl.fm/nLaFp\" rel=\"nofollow ugc\">https://shorturl.fm/nLaFp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1087,156,'Ashley4496','Ashley4496@gmail.com','','211.251.167.71','2025-07-30 02:50:03','2025-07-30 02:50:03','<a href=\"https://shorturl.fm/OpYc0\" rel=\"nofollow ugc\">https://shorturl.fm/OpYc0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1088,157,'Erika1087','Erika1087@gmail.com','','211.251.167.71','2025-07-30 02:50:33','2025-07-30 02:50:33','<a href=\"https://shorturl.fm/myHra\" rel=\"nofollow ugc\">https://shorturl.fm/myHra</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1089,158,'Robin2488','Robin2488@gmail.com','','211.251.167.71','2025-07-30 02:50:59','2025-07-30 02:50:59','<a href=\"https://shorturl.fm/ATqPE\" rel=\"nofollow ugc\">https://shorturl.fm/ATqPE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1090,159,'Leanne1781','Leanne1781@gmail.com','','211.251.167.71','2025-07-30 02:51:25','2025-07-30 02:51:25','<a href=\"https://shorturl.fm/PitMh\" rel=\"nofollow ugc\">https://shorturl.fm/PitMh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1091,160,'Dallas2218','Dallas2218@gmail.com','','211.251.167.71','2025-07-30 02:51:50','2025-07-30 02:51:50','<a href=\"https://shorturl.fm/WEKIr\" rel=\"nofollow ugc\">https://shorturl.fm/WEKIr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1092,161,'Josephine1686','Josephine1686@gmail.com','','211.251.167.71','2025-07-30 02:52:16','2025-07-30 02:52:16','<a href=\"https://shorturl.fm/ATqPE\" rel=\"nofollow ugc\">https://shorturl.fm/ATqPE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1093,162,'Lydia2280','Lydia2280@gmail.com','','211.251.167.71','2025-07-30 02:52:42','2025-07-30 02:52:42','<a href=\"https://shorturl.fm/yHsEH\" rel=\"nofollow ugc\">https://shorturl.fm/yHsEH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1094,163,'Freddie1367','Freddie1367@gmail.com','','211.251.167.71','2025-07-30 02:53:08','2025-07-30 02:53:08','<a href=\"https://shorturl.fm/TFSrE\" rel=\"nofollow ugc\">https://shorturl.fm/TFSrE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1095,1,'Barbara2201','Barbara2201@gmail.com','','27.79.206.122','2025-07-30 02:53:09','2025-07-30 02:53:09','<a href=\"https://shorturl.fm/pR9Bd\" rel=\"nofollow ugc\">https://shorturl.fm/pR9Bd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1096,156,'Kayla2827','Kayla2827@gmail.com','','27.79.206.122','2025-07-30 02:53:35','2025-07-30 02:53:35','<a href=\"https://shorturl.fm/JjsrX\" rel=\"nofollow ugc\">https://shorturl.fm/JjsrX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1097,157,'Lyla3603','Lyla3603@gmail.com','','27.79.206.122','2025-07-30 02:54:01','2025-07-30 02:54:01','<a href=\"https://shorturl.fm/8D7cj\" rel=\"nofollow ugc\">https://shorturl.fm/8D7cj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1098,158,'Jaime1183','Jaime1183@gmail.com','','27.79.206.122','2025-07-30 02:54:27','2025-07-30 02:54:27','<a href=\"https://shorturl.fm/MoiYp\" rel=\"nofollow ugc\">https://shorturl.fm/MoiYp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1099,159,'Margaret424','Margaret424@gmail.com','','27.79.206.122','2025-07-30 02:54:53','2025-07-30 02:54:53','<a href=\"https://shorturl.fm/yHsEH\" rel=\"nofollow ugc\">https://shorturl.fm/yHsEH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1100,160,'Diana2474','Diana2474@gmail.com','','27.79.206.122','2025-07-30 02:55:20','2025-07-30 02:55:20','<a href=\"https://shorturl.fm/lTPfE\" rel=\"nofollow ugc\">https://shorturl.fm/lTPfE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1101,161,'Harry461','Harry461@gmail.com','','27.79.206.122','2025-07-30 02:55:45','2025-07-30 02:55:45','<a href=\"https://shorturl.fm/8D7cj\" rel=\"nofollow ugc\">https://shorturl.fm/8D7cj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1102,162,'Aisha1209','Aisha1209@gmail.com','','27.79.206.122','2025-07-30 02:56:09','2025-07-30 02:56:09','<a href=\"https://shorturl.fm/bSzn8\" rel=\"nofollow ugc\">https://shorturl.fm/bSzn8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1103,163,'Everett2863','Everett2863@gmail.com','','27.79.206.122','2025-07-30 02:56:35','2025-07-30 02:56:35','<a href=\"https://shorturl.fm/VSmqf\" rel=\"nofollow ugc\">https://shorturl.fm/VSmqf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1104,1,'Nora3835','Nora3835@gmail.com','','85.135.221.102','2025-07-30 04:43:09','2025-07-30 04:43:09','<a href=\"https://shorturl.fm/MoiYp\" rel=\"nofollow ugc\">https://shorturl.fm/MoiYp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1105,156,'Beau4738','Beau4738@gmail.com','','85.135.221.102','2025-07-30 04:43:34','2025-07-30 04:43:34','<a href=\"https://shorturl.fm/5yyKG\" rel=\"nofollow ugc\">https://shorturl.fm/5yyKG</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1106,157,'Aliyah4823','Aliyah4823@gmail.com','','85.135.221.102','2025-07-30 04:44:01','2025-07-30 04:44:01','<a href=\"https://shorturl.fm/A7K0k\" rel=\"nofollow ugc\">https://shorturl.fm/A7K0k</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1107,158,'Hannah1716','Hannah1716@gmail.com','','85.135.221.102','2025-07-30 04:44:28','2025-07-30 04:44:28','<a href=\"https://shorturl.fm/8BQnJ\" rel=\"nofollow ugc\">https://shorturl.fm/8BQnJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1108,159,'Chase3006','Chase3006@gmail.com','','85.135.221.102','2025-07-30 04:44:52','2025-07-30 04:44:52','<a href=\"https://shorturl.fm/8BQnJ\" rel=\"nofollow ugc\">https://shorturl.fm/8BQnJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1109,160,'Megan88','Megan88@gmail.com','','85.135.221.102','2025-07-30 04:45:16','2025-07-30 04:45:16','<a href=\"https://shorturl.fm/yHsEH\" rel=\"nofollow ugc\">https://shorturl.fm/yHsEH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1110,161,'Harlan2327','Harlan2327@gmail.com','','85.135.221.102','2025-07-30 04:45:40','2025-07-30 04:45:40','<a href=\"https://shorturl.fm/nLaFp\" rel=\"nofollow ugc\">https://shorturl.fm/nLaFp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1111,162,'Claire4635','Claire4635@gmail.com','','85.135.221.102','2025-07-30 04:46:04','2025-07-30 04:46:04','<a href=\"https://shorturl.fm/T1NME\" rel=\"nofollow ugc\">https://shorturl.fm/T1NME</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1112,163,'Joshua3971','Joshua3971@gmail.com','','85.135.221.102','2025-07-30 04:46:29','2025-07-30 04:46:29','<a href=\"https://shorturl.fm/ATqPE\" rel=\"nofollow ugc\">https://shorturl.fm/ATqPE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1113,1,'Angel2624','Angel2624@gmail.com','','119.94.69.170','2025-07-30 05:12:28','2025-07-30 05:12:28','<a href=\"https://shorturl.fm/9fWK7\" rel=\"nofollow ugc\">https://shorturl.fm/9fWK7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1114,156,'Brett651','Brett651@gmail.com','','119.94.69.170','2025-07-30 05:12:55','2025-07-30 05:12:55','<a href=\"https://shorturl.fm/RLJJY\" rel=\"nofollow ugc\">https://shorturl.fm/RLJJY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1115,157,'Eugene2177','Eugene2177@gmail.com','','119.94.69.170','2025-07-30 05:13:23','2025-07-30 05:13:23','<a href=\"https://shorturl.fm/O79WZ\" rel=\"nofollow ugc\">https://shorturl.fm/O79WZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1116,158,'Felicity3909','Felicity3909@gmail.com','','119.94.69.170','2025-07-30 05:13:57','2025-07-30 05:13:57','<a href=\"https://shorturl.fm/2ErdK\" rel=\"nofollow ugc\">https://shorturl.fm/2ErdK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1117,159,'Edwin4927','Edwin4927@gmail.com','','119.94.69.170','2025-07-30 05:14:24','2025-07-30 05:14:24','<a href=\"https://shorturl.fm/2ErdK\" rel=\"nofollow ugc\">https://shorturl.fm/2ErdK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1118,160,'Junior297','Junior297@gmail.com','','119.94.69.170','2025-07-30 05:14:48','2025-07-30 05:14:48','<a href=\"https://shorturl.fm/21xPC\" rel=\"nofollow ugc\">https://shorturl.fm/21xPC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1119,161,'Carla2662','Carla2662@gmail.com','','119.94.69.170','2025-07-30 05:15:16','2025-07-30 05:15:16','<a href=\"https://shorturl.fm/IL4a3\" rel=\"nofollow ugc\">https://shorturl.fm/IL4a3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1120,162,'Jolene4739','Jolene4739@gmail.com','','119.94.69.170','2025-07-30 05:15:42','2025-07-30 05:15:42','<a href=\"https://shorturl.fm/1mues\" rel=\"nofollow ugc\">https://shorturl.fm/1mues</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1121,1,'Cleo87','Cleo87@gmail.com','','115.72.47.191','2025-07-30 10:10:15','2025-07-30 10:10:15','<a href=\"https://shorturl.fm/M3oGf\" rel=\"nofollow ugc\">https://shorturl.fm/M3oGf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1122,156,'Allen2572','Allen2572@gmail.com','','115.72.47.191','2025-07-30 10:10:39','2025-07-30 10:10:39','<a href=\"https://shorturl.fm/vCYsz\" rel=\"nofollow ugc\">https://shorturl.fm/vCYsz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1123,157,'Richard1976','Richard1976@gmail.com','','115.72.47.191','2025-07-30 10:11:03','2025-07-30 10:11:03','<a href=\"https://shorturl.fm/rVcDw\" rel=\"nofollow ugc\">https://shorturl.fm/rVcDw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1124,158,'Emmett858','Emmett858@gmail.com','','115.72.47.191','2025-07-30 10:11:27','2025-07-30 10:11:27','<a href=\"https://shorturl.fm/fvfEz\" rel=\"nofollow ugc\">https://shorturl.fm/fvfEz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1125,159,'London3607','London3607@gmail.com','','115.72.47.191','2025-07-30 10:11:50','2025-07-30 10:11:50','<a href=\"https://shorturl.fm/tVB7K\" rel=\"nofollow ugc\">https://shorturl.fm/tVB7K</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1126,160,'Stanley4774','Stanley4774@gmail.com','','115.72.47.191','2025-07-30 10:12:17','2025-07-30 10:12:17','<a href=\"https://shorturl.fm/kXPub\" rel=\"nofollow ugc\">https://shorturl.fm/kXPub</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1127,161,'Cassandra4875','Cassandra4875@gmail.com','','115.72.47.191','2025-07-30 10:12:46','2025-07-30 10:12:46','<a href=\"https://shorturl.fm/F4BDQ\" rel=\"nofollow ugc\">https://shorturl.fm/F4BDQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1128,162,'Liam4828','Liam4828@gmail.com','','115.72.47.191','2025-07-30 10:13:11','2025-07-30 10:13:11','<a href=\"https://shorturl.fm/bAm5Y\" rel=\"nofollow ugc\">https://shorturl.fm/bAm5Y</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1129,163,'Hendrix4034','Hendrix4034@gmail.com','','115.72.47.191','2025-07-30 10:13:38','2025-07-30 10:13:38','<a href=\"https://shorturl.fm/Zh4d2\" rel=\"nofollow ugc\">https://shorturl.fm/Zh4d2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1130,156,'Ingrid3818','Ingrid3818@gmail.com','','134.35.9.159','2025-07-30 13:34:51','2025-07-30 13:34:51','<a href=\"https://shorturl.fm/rAlN7\" rel=\"nofollow ugc\">https://shorturl.fm/rAlN7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1131,157,'Samantha1963','Samantha1963@gmail.com','','134.35.9.159','2025-07-30 13:35:16','2025-07-30 13:35:16','<a href=\"https://shorturl.fm/rp4AL\" rel=\"nofollow ugc\">https://shorturl.fm/rp4AL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1132,159,'Aline3902','Aline3902@gmail.com','','134.35.9.159','2025-07-30 13:35:44','2025-07-30 13:35:44','<a href=\"https://shorturl.fm/jhILm\" rel=\"nofollow ugc\">https://shorturl.fm/jhILm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1133,160,'Juliana4584','Juliana4584@gmail.com','','134.35.9.159','2025-07-30 13:36:10','2025-07-30 13:36:10','<a href=\"https://shorturl.fm/tbLWx\" rel=\"nofollow ugc\">https://shorturl.fm/tbLWx</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1134,161,'Frederick2477','Frederick2477@gmail.com','','134.35.9.159','2025-07-30 13:36:32','2025-07-30 13:36:32','<a href=\"https://shorturl.fm/rAlN7\" rel=\"nofollow ugc\">https://shorturl.fm/rAlN7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1135,163,'Jessica4445','Jessica4445@gmail.com','','134.35.9.159','2025-07-30 13:37:09','2025-07-30 13:37:09','<a href=\"https://shorturl.fm/BZxpc\" rel=\"nofollow ugc\">https://shorturl.fm/BZxpc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1136,1,'Ingrid1751','Ingrid1751@gmail.com','','186.114.236.151','2025-07-30 13:39:28','2025-07-30 13:39:28','<a href=\"https://shorturl.fm/rp4AL\" rel=\"nofollow ugc\">https://shorturl.fm/rp4AL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1137,156,'Jasper3859','Jasper3859@gmail.com','','186.114.236.151','2025-07-30 13:39:55','2025-07-30 13:39:55','<a href=\"https://shorturl.fm/tuR5s\" rel=\"nofollow ugc\">https://shorturl.fm/tuR5s</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1138,157,'Mary522','Mary522@gmail.com','','186.114.236.151','2025-07-30 13:40:27','2025-07-30 13:40:27','<a href=\"https://shorturl.fm/BZxpc\" rel=\"nofollow ugc\">https://shorturl.fm/BZxpc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1139,158,'Nova1613','Nova1613@gmail.com','','186.114.236.151','2025-07-30 13:40:50','2025-07-30 13:40:50','<a href=\"https://shorturl.fm/rnQQE\" rel=\"nofollow ugc\">https://shorturl.fm/rnQQE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1140,159,'Hector3170','Hector3170@gmail.com','','186.114.236.151','2025-07-30 13:41:15','2025-07-30 13:41:15','<a href=\"https://shorturl.fm/KYxNc\" rel=\"nofollow ugc\">https://shorturl.fm/KYxNc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1141,160,'Carmen382','Carmen382@gmail.com','','186.114.236.151','2025-07-30 13:41:36','2025-07-30 13:41:36','<a href=\"https://shorturl.fm/YTKSy\" rel=\"nofollow ugc\">https://shorturl.fm/YTKSy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1142,161,'Priscilla2267','Priscilla2267@gmail.com','','186.114.236.151','2025-07-30 13:41:59','2025-07-30 13:41:59','<a href=\"https://shorturl.fm/UXJw4\" rel=\"nofollow ugc\">https://shorturl.fm/UXJw4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1143,162,'Ashley2632','Ashley2632@gmail.com','','186.114.236.151','2025-07-30 13:42:24','2025-07-30 13:42:24','<a href=\"https://shorturl.fm/Pzukb\" rel=\"nofollow ugc\">https://shorturl.fm/Pzukb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1144,163,'Aiden3072','Aiden3072@gmail.com','','186.114.236.151','2025-07-30 13:42:47','2025-07-30 13:42:47','<a href=\"https://shorturl.fm/iA6Gq\" rel=\"nofollow ugc\">https://shorturl.fm/iA6Gq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1145,1,'Jayden3474','Jayden3474@gmail.com','','112.208.176.149','2025-07-30 16:12:06','2025-07-30 16:12:06','<a href=\"https://shorturl.fm/Bxvob\" rel=\"nofollow ugc\">https://shorturl.fm/Bxvob</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1146,156,'Cheryl914','Cheryl914@gmail.com','','112.208.176.149','2025-07-30 16:12:31','2025-07-30 16:12:31','<a href=\"https://shorturl.fm/axH9n\" rel=\"nofollow ugc\">https://shorturl.fm/axH9n</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1147,157,'Ken1978','Ken1978@gmail.com','','112.208.176.149','2025-07-30 16:12:54','2025-07-30 16:12:54','<a href=\"https://shorturl.fm/KnoqL\" rel=\"nofollow ugc\">https://shorturl.fm/KnoqL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1148,158,'Declan1517','Declan1517@gmail.com','','112.208.176.149','2025-07-30 16:13:19','2025-07-30 16:13:19','<a href=\"https://shorturl.fm/2fVRN\" rel=\"nofollow ugc\">https://shorturl.fm/2fVRN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1149,159,'Alaina2305','Alaina2305@gmail.com','','112.208.176.149','2025-07-30 16:13:44','2025-07-30 16:13:44','<a href=\"https://shorturl.fm/NqfsD\" rel=\"nofollow ugc\">https://shorturl.fm/NqfsD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1150,160,'Maliyah4905','Maliyah4905@gmail.com','','112.208.176.149','2025-07-30 16:14:10','2025-07-30 16:14:10','<a href=\"https://shorturl.fm/JxWZT\" rel=\"nofollow ugc\">https://shorturl.fm/JxWZT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1151,161,'Nigel1337','Nigel1337@gmail.com','','112.208.176.149','2025-07-30 16:14:37','2025-07-30 16:14:37','<a href=\"https://shorturl.fm/JxWZT\" rel=\"nofollow ugc\">https://shorturl.fm/JxWZT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1152,162,'Martha3958','Martha3958@gmail.com','','112.208.176.149','2025-07-30 16:15:01','2025-07-30 16:15:01','<a href=\"https://shorturl.fm/DbXOS\" rel=\"nofollow ugc\">https://shorturl.fm/DbXOS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1153,163,'Ginger4498','Ginger4498@gmail.com','','112.208.176.149','2025-07-30 16:15:26','2025-07-30 16:15:26','<a href=\"https://shorturl.fm/mQvau\" rel=\"nofollow ugc\">https://shorturl.fm/mQvau</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1154,1,'Gerald1370','Gerald1370@gmail.com','','106.219.231.79','2025-07-31 11:13:10','2025-07-31 11:13:10','<a href=\"https://shorturl.fm/4eXH2\" rel=\"nofollow ugc\">https://shorturl.fm/4eXH2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1155,156,'Colleen4159','Colleen4159@gmail.com','','106.219.231.79','2025-07-31 11:13:35','2025-07-31 11:13:35','<a href=\"https://shorturl.fm/eqcQL\" rel=\"nofollow ugc\">https://shorturl.fm/eqcQL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1156,157,'Claire3071','Claire3071@gmail.com','','106.219.231.79','2025-07-31 11:14:02','2025-07-31 11:14:02','<a href=\"https://shorturl.fm/vHrRo\" rel=\"nofollow ugc\">https://shorturl.fm/vHrRo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1157,158,'Miguel45','Miguel45@gmail.com','','106.219.231.79','2025-07-31 11:14:28','2025-07-31 11:14:28','<a href=\"https://shorturl.fm/Ixiin\" rel=\"nofollow ugc\">https://shorturl.fm/Ixiin</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1158,159,'Loren4029','Loren4029@gmail.com','','106.219.231.79','2025-07-31 11:14:53','2025-07-31 11:14:53','<a href=\"https://shorturl.fm/Ixiin\" rel=\"nofollow ugc\">https://shorturl.fm/Ixiin</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1159,160,'Desirae3392','Desirae3392@gmail.com','','106.219.231.79','2025-07-31 11:15:17','2025-07-31 11:15:17','<a href=\"https://shorturl.fm/8dI5c\" rel=\"nofollow ugc\">https://shorturl.fm/8dI5c</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1160,161,'Heather2443','Heather2443@gmail.com','','106.219.231.79','2025-07-31 11:15:41','2025-07-31 11:15:41','<a href=\"https://shorturl.fm/rIwUp\" rel=\"nofollow ugc\">https://shorturl.fm/rIwUp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1161,162,'Alonzo2192','Alonzo2192@gmail.com','','106.219.231.79','2025-07-31 11:16:06','2025-07-31 11:16:06','<a href=\"https://shorturl.fm/3bVYe\" rel=\"nofollow ugc\">https://shorturl.fm/3bVYe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1162,163,'Chase4393','Chase4393@gmail.com','','106.219.231.79','2025-07-31 11:16:32','2025-07-31 11:16:32','<a href=\"https://shorturl.fm/3bVYe\" rel=\"nofollow ugc\">https://shorturl.fm/3bVYe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1163,1,'Trent4768','Trent4768@gmail.com','','171.6.208.123','2025-07-31 11:21:21','2025-07-31 11:21:21','<a href=\"https://shorturl.fm/mrvpz\" rel=\"nofollow ugc\">https://shorturl.fm/mrvpz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1164,156,'Aileen3130','Aileen3130@gmail.com','','171.6.208.123','2025-07-31 11:21:48','2025-07-31 11:21:48','<a href=\"https://shorturl.fm/ah5jA\" rel=\"nofollow ugc\">https://shorturl.fm/ah5jA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1165,157,'Nelson1962','Nelson1962@gmail.com','','171.6.208.123','2025-07-31 11:22:11','2025-07-31 11:22:11','<a href=\"https://shorturl.fm/AtuF8\" rel=\"nofollow ugc\">https://shorturl.fm/AtuF8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1166,158,'Julia1741','Julia1741@gmail.com','','171.6.208.123','2025-07-31 11:22:39','2025-07-31 11:22:39','<a href=\"https://shorturl.fm/ofDLS\" rel=\"nofollow ugc\">https://shorturl.fm/ofDLS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1167,159,'Asher4911','Asher4911@gmail.com','','171.6.208.123','2025-07-31 11:23:03','2025-07-31 11:23:03','<a href=\"https://shorturl.fm/fjO90\" rel=\"nofollow ugc\">https://shorturl.fm/fjO90</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1168,160,'Isabel949','Isabel949@gmail.com','','171.6.208.123','2025-07-31 11:23:30','2025-07-31 11:23:30','<a href=\"https://shorturl.fm/rIwUp\" rel=\"nofollow ugc\">https://shorturl.fm/rIwUp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1169,161,'Zane2015','Zane2015@gmail.com','','171.6.208.123','2025-07-31 11:23:54','2025-07-31 11:23:54','<a href=\"https://shorturl.fm/ah5jA\" rel=\"nofollow ugc\">https://shorturl.fm/ah5jA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1170,162,'Arabella2798','Arabella2798@gmail.com','','171.6.208.123','2025-07-31 11:24:22','2025-07-31 11:24:22','<a href=\"https://shorturl.fm/3bVYe\" rel=\"nofollow ugc\">https://shorturl.fm/3bVYe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1171,163,'Nadia4489','Nadia4489@gmail.com','','171.6.208.123','2025-07-31 11:24:47','2025-07-31 11:24:47','<a href=\"https://shorturl.fm/bX6jY\" rel=\"nofollow ugc\">https://shorturl.fm/bX6jY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1172,1,'film izle','elenapobletecampos@hotmail.com','https://filmekseni.net/','51.159.37.34','2025-07-31 13:49:52','2025-07-31 13:49:52','Can I just claim what an alleviation to find somebody that really knows what theyre speaking about on the web. You certainly know just how to bring a problem to light as well as make it vital. Even more individuals need to read this and also comprehend this side of the story. I cant think youre not extra preferred due to the fact that you absolutely have the gift. Garret Ngoun',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(1173,1,'film izle','contadorabc@chile.com','https://filmekseni.net/','51.159.37.21','2025-07-31 18:05:41','2025-07-31 18:05:41','Can I simply just say what a comfort to discover someone that truly knows what they are discussing on the web. You definitely understand how to bring a problem to light and make it important. A lot more people should read this and understand this side of your story. I was surprised you are not more popular given that you surely have the gift. Nick Scherb',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(1174,1,'Aisha2670','Aisha2670@gmail.com','','113.23.38.26','2025-07-31 19:58:43','2025-07-31 19:58:43','<a href=\"https://shorturl.fm/XTddD\" rel=\"nofollow ugc\">https://shorturl.fm/XTddD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1175,1,'Clifford2618','Clifford2618@gmail.com','','181.62.53.66','2025-07-31 20:24:25','2025-07-31 20:24:25','<a href=\"https://shorturl.fm/0rEk7\" rel=\"nofollow ugc\">https://shorturl.fm/0rEk7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1176,156,'Jocelyn3059','Jocelyn3059@gmail.com','','181.62.53.66','2025-07-31 20:24:51','2025-07-31 20:24:51','<a href=\"https://shorturl.fm/OJhGg\" rel=\"nofollow ugc\">https://shorturl.fm/OJhGg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1177,157,'Marshall4374','Marshall4374@gmail.com','','181.62.53.66','2025-07-31 20:25:16','2025-07-31 20:25:16','<a href=\"https://shorturl.fm/d0mMe\" rel=\"nofollow ugc\">https://shorturl.fm/d0mMe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1178,158,'Hazel4650','Hazel4650@gmail.com','','181.62.53.66','2025-07-31 20:25:42','2025-07-31 20:25:42','<a href=\"https://shorturl.fm/GhSxH\" rel=\"nofollow ugc\">https://shorturl.fm/GhSxH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1179,159,'Gwen2855','Gwen2855@gmail.com','','181.62.53.66','2025-07-31 20:26:07','2025-07-31 20:26:07','<a href=\"https://shorturl.fm/0gnJI\" rel=\"nofollow ugc\">https://shorturl.fm/0gnJI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1180,160,'Gabriel1462','Gabriel1462@gmail.com','','181.62.53.66','2025-07-31 20:26:41','2025-07-31 20:26:41','<a href=\"https://shorturl.fm/xtrs4\" rel=\"nofollow ugc\">https://shorturl.fm/xtrs4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1181,1,'hd film','hyndrapalma@gmail.com','https://www.fullhdfilmizlesene.so/film','51.159.37.21','2025-07-31 21:40:02','2025-07-31 21:40:02','Yes! Finally something about have a peek at this web-site. Jordon Kersting',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','comment',0,0),(1182,1,'Channing4706','Channing4706@gmail.com','','185.129.114.29','2025-08-01 11:16:58','2025-08-01 11:16:58','<a href=\"https://shorturl.fm/LVfEK\" rel=\"nofollow ugc\">https://shorturl.fm/LVfEK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1183,156,'Andre4833','Andre4833@gmail.com','','185.129.114.29','2025-08-01 11:17:27','2025-08-01 11:17:27','<a href=\"https://shorturl.fm/ubfmE\" rel=\"nofollow ugc\">https://shorturl.fm/ubfmE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1184,157,'Wyatt432','Wyatt432@gmail.com','','185.129.114.29','2025-08-01 11:17:53','2025-08-01 11:17:53','<a href=\"https://shorturl.fm/K9X2X\" rel=\"nofollow ugc\">https://shorturl.fm/K9X2X</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1185,158,'Bernard138','Bernard138@gmail.com','','185.129.114.29','2025-08-01 11:18:20','2025-08-01 11:18:20','<a href=\"https://shorturl.fm/Z5HL0\" rel=\"nofollow ugc\">https://shorturl.fm/Z5HL0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1186,159,'Carol2413','Carol2413@gmail.com','','185.129.114.29','2025-08-01 11:18:47','2025-08-01 11:18:47','<a href=\"https://shorturl.fm/W3QuC\" rel=\"nofollow ugc\">https://shorturl.fm/W3QuC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1187,160,'Isla2246','Isla2246@gmail.com','','185.129.114.29','2025-08-01 11:19:15','2025-08-01 11:19:15','<a href=\"https://shorturl.fm/XzQM4\" rel=\"nofollow ugc\">https://shorturl.fm/XzQM4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1188,161,'Roman4695','Roman4695@gmail.com','','185.129.114.29','2025-08-01 11:19:42','2025-08-01 11:19:42','<a href=\"https://shorturl.fm/LscNR\" rel=\"nofollow ugc\">https://shorturl.fm/LscNR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1189,162,'Camille155','Camille155@gmail.com','','185.129.114.29','2025-08-01 11:20:09','2025-08-01 11:20:09','<a href=\"https://shorturl.fm/ubfmE\" rel=\"nofollow ugc\">https://shorturl.fm/ubfmE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1190,163,'Eleanor1034','Eleanor1034@gmail.com','','185.129.114.29','2025-08-01 11:20:36','2025-08-01 11:20:36','<a href=\"https://shorturl.fm/ljC14\" rel=\"nofollow ugc\">https://shorturl.fm/ljC14</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1191,1,'Roland3306','Roland3306@gmail.com','','42.112.96.97','2025-08-01 12:59:08','2025-08-01 12:59:08','<a href=\"https://shorturl.fm/XzQM4\" rel=\"nofollow ugc\">https://shorturl.fm/XzQM4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1192,160,'Beatrice3437','Beatrice3437@gmail.com','','42.112.96.97','2025-08-01 12:59:23','2025-08-01 12:59:23','<a href=\"https://shorturl.fm/8lGcu\" rel=\"nofollow ugc\">https://shorturl.fm/8lGcu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1193,1,'Jonah183','Jonah183@gmail.com','','24.251.62.188','2025-08-01 21:09:29','2025-08-01 21:09:29','<a href=\"https://shorturl.fm/9ymYE\" rel=\"nofollow ugc\">https://shorturl.fm/9ymYE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1194,156,'Florence145','Florence145@gmail.com','','24.251.62.188','2025-08-01 21:09:58','2025-08-01 21:09:58','<a href=\"https://shorturl.fm/09w0b\" rel=\"nofollow ugc\">https://shorturl.fm/09w0b</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1195,157,'Aliyah3895','Aliyah3895@gmail.com','','24.251.62.188','2025-08-01 21:10:27','2025-08-01 21:10:27','<a href=\"https://shorturl.fm/9ymYE\" rel=\"nofollow ugc\">https://shorturl.fm/9ymYE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1196,158,'Daphne1323','Daphne1323@gmail.com','','24.251.62.188','2025-08-01 21:10:54','2025-08-01 21:10:54','<a href=\"https://shorturl.fm/weIvx\" rel=\"nofollow ugc\">https://shorturl.fm/weIvx</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1197,159,'Christine4723','Christine4723@gmail.com','','24.251.62.188','2025-08-01 21:11:22','2025-08-01 21:11:22','<a href=\"https://shorturl.fm/ANswp\" rel=\"nofollow ugc\">https://shorturl.fm/ANswp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1198,160,'Irene2455','Irene2455@gmail.com','','24.251.62.188','2025-08-01 21:11:50','2025-08-01 21:11:50','<a href=\"https://shorturl.fm/weIvx\" rel=\"nofollow ugc\">https://shorturl.fm/weIvx</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1199,161,'Josiah2266','Josiah2266@gmail.com','','24.251.62.188','2025-08-01 21:12:18','2025-08-01 21:12:18','<a href=\"https://shorturl.fm/bIJor\" rel=\"nofollow ugc\">https://shorturl.fm/bIJor</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1200,162,'Russell1716','Russell1716@gmail.com','','24.251.62.188','2025-08-01 21:12:44','2025-08-01 21:12:44','<a href=\"https://shorturl.fm/Q5hKZ\" rel=\"nofollow ugc\">https://shorturl.fm/Q5hKZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1201,163,'Billie4025','Billie4025@gmail.com','','24.251.62.188','2025-08-01 21:13:09','2025-08-01 21:13:09','<a href=\"https://shorturl.fm/bIJor\" rel=\"nofollow ugc\">https://shorturl.fm/bIJor</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1202,1,'Bailey2726','Bailey2726@gmail.com','','182.253.109.107','2025-08-02 05:39:42','2025-08-02 05:39:42','<a href=\"https://shorturl.fm/ZzJb1\" rel=\"nofollow ugc\">https://shorturl.fm/ZzJb1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1203,156,'Leo2261','Leo2261@gmail.com','','182.253.109.107','2025-08-02 05:40:00','2025-08-02 05:40:00','<a href=\"https://shorturl.fm/ZzJb1\" rel=\"nofollow ugc\">https://shorturl.fm/ZzJb1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1204,157,'Alexia65','Alexia65@gmail.com','','182.253.109.107','2025-08-02 05:40:17','2025-08-02 05:40:17','<a href=\"https://shorturl.fm/tLwRo\" rel=\"nofollow ugc\">https://shorturl.fm/tLwRo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1205,158,'Stanley3161','Stanley3161@gmail.com','','182.253.109.107','2025-08-02 05:40:36','2025-08-02 05:40:36','<a href=\"https://shorturl.fm/vb3Wg\" rel=\"nofollow ugc\">https://shorturl.fm/vb3Wg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1206,159,'Alonzo3631','Alonzo3631@gmail.com','','182.253.109.107','2025-08-02 05:40:54','2025-08-02 05:40:54','<a href=\"https://shorturl.fm/tLwRo\" rel=\"nofollow ugc\">https://shorturl.fm/tLwRo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1207,160,'Audrey221','Audrey221@gmail.com','','182.253.109.107','2025-08-02 05:41:12','2025-08-02 05:41:12','<a href=\"https://shorturl.fm/oKWo7\" rel=\"nofollow ugc\">https://shorturl.fm/oKWo7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1208,161,'Atticus2683','Atticus2683@gmail.com','','182.253.109.107','2025-08-02 05:41:32','2025-08-02 05:41:32','<a href=\"https://shorturl.fm/kt23w\" rel=\"nofollow ugc\">https://shorturl.fm/kt23w</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1209,162,'Elijah7','Elijah7@gmail.com','','182.253.109.107','2025-08-02 05:41:52','2025-08-02 05:41:52','<a href=\"https://shorturl.fm/ASSfH\" rel=\"nofollow ugc\">https://shorturl.fm/ASSfH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1210,163,'Amira2914','Amira2914@gmail.com','','182.253.109.107','2025-08-02 05:42:14','2025-08-02 05:42:14','<a href=\"https://shorturl.fm/lBYPm\" rel=\"nofollow ugc\">https://shorturl.fm/lBYPm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1211,1,'Cole2324','Cole2324@gmail.com','','83.211.150.226','2025-08-02 14:35:16','2025-08-02 14:35:16','<a href=\"https://shorturl.fm/sQ40M\" rel=\"nofollow ugc\">https://shorturl.fm/sQ40M</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1212,157,'Brenda257','Brenda257@gmail.com','','83.211.150.226','2025-08-02 14:35:58','2025-08-02 14:35:58','<a href=\"https://shorturl.fm/oihhX\" rel=\"nofollow ugc\">https://shorturl.fm/oihhX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1213,158,'Norma1379','Norma1379@gmail.com','','83.211.150.226','2025-08-02 14:36:23','2025-08-02 14:36:23','<a href=\"https://shorturl.fm/czAcU\" rel=\"nofollow ugc\">https://shorturl.fm/czAcU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1214,159,'Jocelyn1212','Jocelyn1212@gmail.com','','83.211.150.226','2025-08-02 14:36:49','2025-08-02 14:36:49','<a href=\"https://shorturl.fm/sQ40M\" rel=\"nofollow ugc\">https://shorturl.fm/sQ40M</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1215,160,'Rose3415','Rose3415@gmail.com','','83.211.150.226','2025-08-02 14:37:17','2025-08-02 14:37:17','<a href=\"https://shorturl.fm/vPunI\" rel=\"nofollow ugc\">https://shorturl.fm/vPunI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1216,1,'Landon4840','Landon4840@gmail.com','','79.116.226.109','2025-08-02 16:02:45','2025-08-02 16:02:45','<a href=\"https://shorturl.fm/sQ40M\" rel=\"nofollow ugc\">https://shorturl.fm/sQ40M</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1217,156,'Lorelei277','Lorelei277@gmail.com','','79.116.226.109','2025-08-02 16:03:12','2025-08-02 16:03:12','<a href=\"https://shorturl.fm/MhJbf\" rel=\"nofollow ugc\">https://shorturl.fm/MhJbf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1218,1,'Dwight1919','Dwight1919@gmail.com','','200.121.42.61','2025-08-02 16:03:34','2025-08-02 16:03:34','<a href=\"https://shorturl.fm/DtLEE\" rel=\"nofollow ugc\">https://shorturl.fm/DtLEE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1219,157,'Jeannette74','Jeannette74@gmail.com','','79.116.226.109','2025-08-02 16:03:41','2025-08-02 16:03:41','<a href=\"https://shorturl.fm/L3kMb\" rel=\"nofollow ugc\">https://shorturl.fm/L3kMb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1220,158,'Dina2692','Dina2692@gmail.com','','79.116.226.109','2025-08-02 16:04:08','2025-08-02 16:04:08','<a href=\"https://shorturl.fm/3LIOB\" rel=\"nofollow ugc\">https://shorturl.fm/3LIOB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1221,159,'Alexandra3343','Alexandra3343@gmail.com','','79.116.226.109','2025-08-02 16:04:36','2025-08-02 16:04:36','<a href=\"https://shorturl.fm/RrD3X\" rel=\"nofollow ugc\">https://shorturl.fm/RrD3X</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1222,156,'Beckett1121','Beckett1121@gmail.com','','200.121.42.61','2025-08-02 16:04:39','2025-08-02 16:04:39','<a href=\"https://shorturl.fm/FKRjm\" rel=\"nofollow ugc\">https://shorturl.fm/FKRjm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1223,160,'Gary52','Gary52@gmail.com','','79.116.226.109','2025-08-02 16:05:21','2025-08-02 16:05:21','<a href=\"https://shorturl.fm/mQGa0\" rel=\"nofollow ugc\">https://shorturl.fm/mQGa0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1224,162,'Jeffrey2836','Jeffrey2836@gmail.com','','79.116.226.109','2025-08-02 16:05:38','2025-08-02 16:05:38','<a href=\"https://shorturl.fm/D9tDQ\" rel=\"nofollow ugc\">https://shorturl.fm/D9tDQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1225,1,'Noah3642','Noah3642@gmail.com','','49.228.178.252','2025-08-02 18:32:25','2025-08-02 18:32:25','<a href=\"https://shorturl.fm/0LuFv\" rel=\"nofollow ugc\">https://shorturl.fm/0LuFv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1226,156,'Serenity2355','Serenity2355@gmail.com','','49.228.178.252','2025-08-02 18:32:55','2025-08-02 18:32:55','<a href=\"https://shorturl.fm/Bjv9E\" rel=\"nofollow ugc\">https://shorturl.fm/Bjv9E</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1227,157,'Lachlan1040','Lachlan1040@gmail.com','','49.228.178.252','2025-08-02 18:33:25','2025-08-02 18:33:25','<a href=\"https://shorturl.fm/iDKnJ\" rel=\"nofollow ugc\">https://shorturl.fm/iDKnJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1228,158,'Meagan528','Meagan528@gmail.com','','49.228.178.252','2025-08-02 18:33:55','2025-08-02 18:33:55','<a href=\"https://shorturl.fm/vlKX6\" rel=\"nofollow ugc\">https://shorturl.fm/vlKX6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1229,159,'Brody1032','Brody1032@gmail.com','','49.228.178.252','2025-08-02 18:34:23','2025-08-02 18:34:23','<a href=\"https://shorturl.fm/N2JCJ\" rel=\"nofollow ugc\">https://shorturl.fm/N2JCJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1230,160,'Ainsley3700','Ainsley3700@gmail.com','','49.228.178.252','2025-08-02 18:34:52','2025-08-02 18:34:52','<a href=\"https://shorturl.fm/ToQiH\" rel=\"nofollow ugc\">https://shorturl.fm/ToQiH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1231,162,'Bobby1784','Bobby1784@gmail.com','','49.228.178.252','2025-08-02 18:35:32','2025-08-02 18:35:32','<a href=\"https://shorturl.fm/Ig2ny\" rel=\"nofollow ugc\">https://shorturl.fm/Ig2ny</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1232,163,'Aubrey3463','Aubrey3463@gmail.com','','49.228.178.252','2025-08-02 18:36:02','2025-08-02 18:36:02','<a href=\"https://shorturl.fm/1ZRrZ\" rel=\"nofollow ugc\">https://shorturl.fm/1ZRrZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1233,1,'Elizabeth260','Elizabeth260@gmail.com','','115.77.132.218','2025-08-03 05:07:06','2025-08-03 05:07:06','<a href=\"https://shorturl.fm/Jalxm\" rel=\"nofollow ugc\">https://shorturl.fm/Jalxm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1234,156,'Deborah4606','Deborah4606@gmail.com','','115.77.132.218','2025-08-03 05:07:29','2025-08-03 05:07:29','<a href=\"https://shorturl.fm/8FqWV\" rel=\"nofollow ugc\">https://shorturl.fm/8FqWV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1235,157,'Sara3568','Sara3568@gmail.com','','115.77.132.218','2025-08-03 05:07:54','2025-08-03 05:07:54','<a href=\"https://shorturl.fm/Jalxm\" rel=\"nofollow ugc\">https://shorturl.fm/Jalxm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1236,158,'Willow2890','Willow2890@gmail.com','','115.77.132.218','2025-08-03 05:08:20','2025-08-03 05:08:20','<a href=\"https://shorturl.fm/vPVsO\" rel=\"nofollow ugc\">https://shorturl.fm/vPVsO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1237,159,'Paisley3771','Paisley3771@gmail.com','','115.77.132.218','2025-08-03 05:08:47','2025-08-03 05:08:47','<a href=\"https://shorturl.fm/Rrfct\" rel=\"nofollow ugc\">https://shorturl.fm/Rrfct</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1238,160,'Mateo1527','Mateo1527@gmail.com','','115.77.132.218','2025-08-03 05:09:14','2025-08-03 05:09:14','<a href=\"https://shorturl.fm/vPbtb\" rel=\"nofollow ugc\">https://shorturl.fm/vPbtb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1239,161,'Dion3754','Dion3754@gmail.com','','115.77.132.218','2025-08-03 05:09:40','2025-08-03 05:09:40','<a href=\"https://shorturl.fm/nbjqD\" rel=\"nofollow ugc\">https://shorturl.fm/nbjqD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1240,162,'Kirsten3335','Kirsten3335@gmail.com','','115.77.132.218','2025-08-03 05:10:09','2025-08-03 05:10:09','<a href=\"https://shorturl.fm/TrcYR\" rel=\"nofollow ugc\">https://shorturl.fm/TrcYR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1241,163,'Emory387','Emory387@gmail.com','','115.77.132.218','2025-08-03 05:10:36','2025-08-03 05:10:36','<a href=\"https://shorturl.fm/Rrfct\" rel=\"nofollow ugc\">https://shorturl.fm/Rrfct</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1242,1,'Victoria180','Victoria180@gmail.com','','103.185.21.51','2025-08-03 10:27:48','2025-08-03 10:27:48','<a href=\"https://shorturl.fm/Medpx\" rel=\"nofollow ugc\">https://shorturl.fm/Medpx</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1243,157,'Jean1242','Jean1242@gmail.com','','103.185.21.53','2025-08-03 10:27:59','2025-08-03 10:27:59','<a href=\"https://shorturl.fm/MEvvw\" rel=\"nofollow ugc\">https://shorturl.fm/MEvvw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1244,158,'Abbie2824','Abbie2824@gmail.com','','103.185.21.51','2025-08-03 10:28:09','2025-08-03 10:28:09','<a href=\"https://shorturl.fm/bAr0L\" rel=\"nofollow ugc\">https://shorturl.fm/bAr0L</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1245,162,'Freddie4430','Freddie4430@gmail.com','','103.185.21.53','2025-08-03 10:28:24','2025-08-03 10:28:24','<a href=\"https://shorturl.fm/peUzq\" rel=\"nofollow ugc\">https://shorturl.fm/peUzq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1246,163,'Halle3279','Halle3279@gmail.com','','103.185.21.51','2025-08-03 10:28:34','2025-08-03 10:28:34','<a href=\"https://shorturl.fm/pWouG\" rel=\"nofollow ugc\">https://shorturl.fm/pWouG</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1247,1,'Hadley4652','Hadley4652@gmail.com','','119.73.189.162','2025-08-04 02:29:42','2025-08-04 02:29:42','<a href=\"https://shorturl.fm/XNk8E\" rel=\"nofollow ugc\">https://shorturl.fm/XNk8E</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1248,156,'Max1563','Max1563@gmail.com','','119.73.189.162','2025-08-04 02:30:11','2025-08-04 02:30:11','<a href=\"https://shorturl.fm/Iy40W\" rel=\"nofollow ugc\">https://shorturl.fm/Iy40W</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1249,157,'Josiah3896','Josiah3896@gmail.com','','119.73.189.162','2025-08-04 02:30:39','2025-08-04 02:30:39','<a href=\"https://shorturl.fm/2GgMW\" rel=\"nofollow ugc\">https://shorturl.fm/2GgMW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1250,158,'Victoria318','Victoria318@gmail.com','','119.73.189.162','2025-08-04 02:31:04','2025-08-04 02:31:04','<a href=\"https://shorturl.fm/2GgMW\" rel=\"nofollow ugc\">https://shorturl.fm/2GgMW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1251,159,'Carla2317','Carla2317@gmail.com','','119.73.189.162','2025-08-04 02:31:30','2025-08-04 02:31:30','<a href=\"https://shorturl.fm/Y6tnH\" rel=\"nofollow ugc\">https://shorturl.fm/Y6tnH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1252,161,'Emilia2502','Emilia2502@gmail.com','','119.73.189.162','2025-08-04 02:32:05','2025-08-04 02:32:05','<a href=\"https://shorturl.fm/3wki7\" rel=\"nofollow ugc\">https://shorturl.fm/3wki7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1253,162,'Kristen650','Kristen650@gmail.com','','119.73.189.162','2025-08-04 02:32:32','2025-08-04 02:32:32','<a href=\"https://shorturl.fm/mWdpL\" rel=\"nofollow ugc\">https://shorturl.fm/mWdpL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1254,163,'Brooks4767','Brooks4767@gmail.com','','119.73.189.162','2025-08-04 02:33:12','2025-08-04 02:33:12','<a href=\"https://shorturl.fm/eE3Po\" rel=\"nofollow ugc\">https://shorturl.fm/eE3Po</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1255,156,'Erika4286','Erika4286@gmail.com','','190.172.86.153','2025-08-04 03:36:58','2025-08-04 03:36:58','<a href=\"https://shorturl.fm/ogP0b\" rel=\"nofollow ugc\">https://shorturl.fm/ogP0b</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1256,157,'Brennan4558','Brennan4558@gmail.com','','190.172.86.153','2025-08-04 03:37:28','2025-08-04 03:37:28','<a href=\"https://shorturl.fm/CehRT\" rel=\"nofollow ugc\">https://shorturl.fm/CehRT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1257,158,'Christina2335','Christina2335@gmail.com','','190.172.86.153','2025-08-04 03:37:57','2025-08-04 03:37:57','<a href=\"https://shorturl.fm/eE3Po\" rel=\"nofollow ugc\">https://shorturl.fm/eE3Po</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1258,159,'Darren3167','Darren3167@gmail.com','','190.172.86.153','2025-08-04 03:38:25','2025-08-04 03:38:25','<a href=\"https://shorturl.fm/igyOq\" rel=\"nofollow ugc\">https://shorturl.fm/igyOq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1259,160,'Bob4314','Bob4314@gmail.com','','190.172.86.153','2025-08-04 03:38:53','2025-08-04 03:38:53','<a href=\"https://shorturl.fm/vtxl6\" rel=\"nofollow ugc\">https://shorturl.fm/vtxl6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1260,161,'Lincoln209','Lincoln209@gmail.com','','190.172.86.153','2025-08-04 03:39:22','2025-08-04 03:39:22','<a href=\"https://shorturl.fm/mWdpL\" rel=\"nofollow ugc\">https://shorturl.fm/mWdpL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1261,162,'Donna3521','Donna3521@gmail.com','','190.172.86.153','2025-08-04 03:39:52','2025-08-04 03:39:52','<a href=\"https://shorturl.fm/ogP0b\" rel=\"nofollow ugc\">https://shorturl.fm/ogP0b</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1262,163,'Cody4848','Cody4848@gmail.com','','190.172.86.153','2025-08-04 03:40:22','2025-08-04 03:40:22','<a href=\"https://shorturl.fm/XtXH8\" rel=\"nofollow ugc\">https://shorturl.fm/XtXH8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1263,1,'Grace3994','Grace3994@gmail.com','','45.244.63.103','2025-08-04 14:11:34','2025-08-04 14:11:34','<a href=\"https://shorturl.fm/aRGQq\" rel=\"nofollow ugc\">https://shorturl.fm/aRGQq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1264,156,'Hermione2871','Hermione2871@gmail.com','','45.244.63.103','2025-08-04 14:12:02','2025-08-04 14:12:02','<a href=\"https://shorturl.fm/wO6bg\" rel=\"nofollow ugc\">https://shorturl.fm/wO6bg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1265,157,'Ivy323','Ivy323@gmail.com','','45.244.63.103','2025-08-04 14:12:29','2025-08-04 14:12:29','<a href=\"https://shorturl.fm/bviK8\" rel=\"nofollow ugc\">https://shorturl.fm/bviK8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1266,158,'Lynne389','Lynne389@gmail.com','','45.244.63.103','2025-08-04 14:12:58','2025-08-04 14:12:58','<a href=\"https://shorturl.fm/gTiQg\" rel=\"nofollow ugc\">https://shorturl.fm/gTiQg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1267,159,'Alvin2119','Alvin2119@gmail.com','','45.244.63.103','2025-08-04 14:13:28','2025-08-04 14:13:28','<a href=\"https://shorturl.fm/tPGPT\" rel=\"nofollow ugc\">https://shorturl.fm/tPGPT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1268,160,'Bryant4124','Bryant4124@gmail.com','','45.244.63.103','2025-08-04 14:13:57','2025-08-04 14:13:57','<a href=\"https://shorturl.fm/gTiQg\" rel=\"nofollow ugc\">https://shorturl.fm/gTiQg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1269,161,'Shelby3569','Shelby3569@gmail.com','','45.244.63.103','2025-08-04 14:14:27','2025-08-04 14:14:27','<a href=\"https://shorturl.fm/KwpEn\" rel=\"nofollow ugc\">https://shorturl.fm/KwpEn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1270,162,'Rodney2983','Rodney2983@gmail.com','','45.244.63.103','2025-08-04 14:14:56','2025-08-04 14:14:56','<a href=\"https://shorturl.fm/sVeLF\" rel=\"nofollow ugc\">https://shorturl.fm/sVeLF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1271,163,'Cornelius719','Cornelius719@gmail.com','','45.244.63.103','2025-08-04 14:15:26','2025-08-04 14:15:26','<a href=\"https://shorturl.fm/wO6bg\" rel=\"nofollow ugc\">https://shorturl.fm/wO6bg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1272,1,'Nigel3930','Nigel3930@gmail.com','','118.174.171.74','2025-08-05 02:23:33','2025-08-05 02:23:33','<a href=\"https://shorturl.fm/Z1gzI\" rel=\"nofollow ugc\">https://shorturl.fm/Z1gzI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1273,1,'Kason3095','Kason3095@gmail.com','','182.52.205.203','2025-08-05 02:51:50','2025-08-05 02:51:50','<a href=\"https://shorturl.fm/eQETL\" rel=\"nofollow ugc\">https://shorturl.fm/eQETL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1274,162,'Lorenzo2189','Lorenzo2189@gmail.com','','182.52.205.203','2025-08-05 02:52:10','2025-08-05 02:52:10','<a href=\"https://shorturl.fm/Md2o4\" rel=\"nofollow ugc\">https://shorturl.fm/Md2o4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1275,1,'Ryder2296','Ryder2296@gmail.com','','115.72.33.200','2025-08-05 03:33:34','2025-08-05 03:33:34','<a href=\"https://shorturl.fm/7kbWX\" rel=\"nofollow ugc\">https://shorturl.fm/7kbWX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1276,1,'Cassandra4332','Cassandra4332@gmail.com','','179.62.62.142','2025-08-05 06:42:42','2025-08-05 06:42:42','<a href=\"https://shorturl.fm/gw03x\" rel=\"nofollow ugc\">https://shorturl.fm/gw03x</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1277,1,'Brynn659','Brynn659@gmail.com','','39.35.218.87','2025-08-05 08:23:35','2025-08-05 08:23:35','<a href=\"https://shorturl.fm/AHNRL\" rel=\"nofollow ugc\">https://shorturl.fm/AHNRL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1278,1,'Aiden735','Aiden735@gmail.com','','27.79.188.232','2025-08-05 19:33:19','2025-08-05 19:33:19','<a href=\"https://shorturl.fm/eENFa\" rel=\"nofollow ugc\">https://shorturl.fm/eENFa</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1279,1,'Elsie3852','Elsie3852@gmail.com','','151.47.30.90','2025-08-06 01:00:22','2025-08-06 01:00:22','<a href=\"https://shorturl.fm/C4FIA\" rel=\"nofollow ugc\">https://shorturl.fm/C4FIA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1280,156,'Sergio3655','Sergio3655@gmail.com','','93.147.37.183','2025-08-06 01:00:27','2025-08-06 01:00:27','<a href=\"https://shorturl.fm/4PzJI\" rel=\"nofollow ugc\">https://shorturl.fm/4PzJI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1281,157,'Genevieve152','Genevieve152@gmail.com','','212.43.104.33','2025-08-06 01:00:29','2025-08-06 01:00:29','<a href=\"https://shorturl.fm/mSIsz\" rel=\"nofollow ugc\">https://shorturl.fm/mSIsz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1282,158,'Ashley3423','Ashley3423@gmail.com','','93.70.184.149','2025-08-06 01:00:36','2025-08-06 01:00:36','<a href=\"https://shorturl.fm/gEup7\" rel=\"nofollow ugc\">https://shorturl.fm/gEup7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1283,159,'Felicity2564','Felicity2564@gmail.com','','151.24.21.157','2025-08-06 01:00:42','2025-08-06 01:00:42','<a href=\"https://shorturl.fm/kTHXE\" rel=\"nofollow ugc\">https://shorturl.fm/kTHXE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1284,160,'Manuel2502','Manuel2502@gmail.com','','193.207.2.25','2025-08-06 01:00:44','2025-08-06 01:00:44','<a href=\"https://shorturl.fm/mSIsz\" rel=\"nofollow ugc\">https://shorturl.fm/mSIsz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1285,161,'Brinley3612','Brinley3612@gmail.com','','185.121.100.164','2025-08-06 01:00:51','2025-08-06 01:00:51','<a href=\"https://shorturl.fm/1nncG\" rel=\"nofollow ugc\">https://shorturl.fm/1nncG</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1286,162,'Ian4714','Ian4714@gmail.com','','82.192.129.150','2025-08-06 01:00:53','2025-08-06 01:00:53','<a href=\"https://shorturl.fm/gEup7\" rel=\"nofollow ugc\">https://shorturl.fm/gEup7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1287,163,'Hailee4565','Hailee4565@gmail.com','','5.88.237.175','2025-08-06 01:01:00','2025-08-06 01:01:00','<a href=\"https://shorturl.fm/csO3u\" rel=\"nofollow ugc\">https://shorturl.fm/csO3u</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1288,1,'Bobby3841','Bobby3841@gmail.com','','140.213.202.33','2025-08-06 05:03:21','2025-08-06 05:03:21','<a href=\"https://shorturl.fm/MhPe7\" rel=\"nofollow ugc\">https://shorturl.fm/MhPe7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1289,1,'Devin3841','Devin3841@gmail.com','','181.78.20.15','2025-08-06 15:45:52','2025-08-06 15:45:52','<a href=\"https://shorturl.fm/zSN2G\" rel=\"nofollow ugc\">https://shorturl.fm/zSN2G</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1290,163,'Coraline632','Coraline632@gmail.com','','181.78.20.15','2025-08-06 15:46:07','2025-08-06 15:46:07','<a href=\"https://shorturl.fm/KFudj\" rel=\"nofollow ugc\">https://shorturl.fm/KFudj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1291,1,'Jared1095','Jared1095@gmail.com','','152.204.233.133','2025-08-06 19:38:25','2025-08-06 19:38:25','<a href=\"https://shorturl.fm/mPZAX\" rel=\"nofollow ugc\">https://shorturl.fm/mPZAX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1292,163,'Susan2309','Susan2309@gmail.com','','152.204.233.133','2025-08-06 19:38:40','2025-08-06 19:38:40','<a href=\"https://shorturl.fm/Stdeq\" rel=\"nofollow ugc\">https://shorturl.fm/Stdeq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1293,1,'Kathryn1570','Kathryn1570@gmail.com','','187.115.187.12','2025-08-06 20:11:00','2025-08-06 20:11:00','<a href=\"https://shorturl.fm/lJAgW\" rel=\"nofollow ugc\">https://shorturl.fm/lJAgW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1294,160,'Fernando1611','Fernando1611@gmail.com','','187.115.187.12','2025-08-06 20:11:16','2025-08-06 20:11:16','<a href=\"https://shorturl.fm/jbGhb\" rel=\"nofollow ugc\">https://shorturl.fm/jbGhb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1295,1,'Nova3931','Nova3931@gmail.com','','123.192.200.163','2025-08-07 02:43:48','2025-08-07 02:43:48','<a href=\"https://shorturl.fm/DxM3b\" rel=\"nofollow ugc\">https://shorturl.fm/DxM3b</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1296,163,'Lorenzo1919','Lorenzo1919@gmail.com','','123.192.200.163','2025-08-07 02:44:03','2025-08-07 02:44:03','<a href=\"https://shorturl.fm/l90qy\" rel=\"nofollow ugc\">https://shorturl.fm/l90qy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1297,1,'Hanna4747','Hanna4747@gmail.com','','190.18.22.236','2025-08-07 13:48:05','2025-08-07 13:48:05','<a href=\"https://shorturl.fm/wdGeQ\" rel=\"nofollow ugc\">https://shorturl.fm/wdGeQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1298,163,'Jared829','Jared829@gmail.com','','190.18.22.236','2025-08-07 13:48:20','2025-08-07 13:48:20','<a href=\"https://shorturl.fm/eioHx\" rel=\"nofollow ugc\">https://shorturl.fm/eioHx</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1299,1,'Guillermo2210','Guillermo2210@gmail.com','','223.206.138.139','2025-08-07 20:57:23','2025-08-07 20:57:23','<a href=\"https://shorturl.fm/uz2hy\" rel=\"nofollow ugc\">https://shorturl.fm/uz2hy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1300,1,'Mira384','Mira384@gmail.com','','180.68.84.172','2025-08-08 10:42:31','2025-08-08 10:42:31','<a href=\"https://shorturl.fm/lKwUN\" rel=\"nofollow ugc\">https://shorturl.fm/lKwUN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1301,1,'Mitchell3417','Mitchell3417@gmail.com','','200.53.19.58','2025-08-08 15:16:20','2025-08-08 15:16:20','<a href=\"https://shorturl.fm/JGiSC\" rel=\"nofollow ugc\">https://shorturl.fm/JGiSC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1302,1,'Jared4591','Jared4591@gmail.com','','5.107.121.243','2025-08-08 17:09:26','2025-08-08 17:09:26','<a href=\"https://shorturl.fm/3LlFw\" rel=\"nofollow ugc\">https://shorturl.fm/3LlFw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1303,163,'Leonel1789','Leonel1789@gmail.com','','5.107.121.243','2025-08-08 17:09:41','2025-08-08 17:09:41','<a href=\"https://shorturl.fm/OXw5J\" rel=\"nofollow ugc\">https://shorturl.fm/OXw5J</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1304,1,'Annie3730','Annie3730@gmail.com','','8.222.213.200','2025-08-08 17:58:29','2025-08-08 17:58:29','<a href=\"https://shorturl.fm/3LlFw\" rel=\"nofollow ugc\">https://shorturl.fm/3LlFw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1305,162,'Jamie3393','Jamie3393@gmail.com','','130.162.140.114','2025-08-08 17:58:45','2025-08-08 17:58:45','<a href=\"https://shorturl.fm/AsqWQ\" rel=\"nofollow ugc\">https://shorturl.fm/AsqWQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1306,163,'Jean2501','Jean2501@gmail.com','','8.222.213.200','2025-08-08 17:58:47','2025-08-08 17:58:47','<a href=\"https://shorturl.fm/YFhrH\" rel=\"nofollow ugc\">https://shorturl.fm/YFhrH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1307,1,'Terrence1101','Terrence1101@gmail.com','','42.118.173.207','2025-08-08 19:42:45','2025-08-08 19:42:45','<a href=\"https://shorturl.fm/vj8f3\" rel=\"nofollow ugc\">https://shorturl.fm/vj8f3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1308,1,'Halle2785','Halle2785@gmail.com','','1.54.54.80','2025-08-09 01:14:54','2025-08-09 01:14:54','<a href=\"https://shorturl.fm/pqti1\" rel=\"nofollow ugc\">https://shorturl.fm/pqti1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1309,160,'Dwight213','Dwight213@gmail.com','','1.54.54.80','2025-08-09 01:15:09','2025-08-09 01:15:09','<a href=\"https://shorturl.fm/ZnTrR\" rel=\"nofollow ugc\">https://shorturl.fm/ZnTrR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1310,1,'Chloe1679','Chloe1679@gmail.com','','182.52.151.49','2025-08-09 01:40:13','2025-08-09 01:40:13','<a href=\"https://shorturl.fm/Q1vGq\" rel=\"nofollow ugc\">https://shorturl.fm/Q1vGq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1311,163,'Greyson2338','Greyson2338@gmail.com','','182.52.151.49','2025-08-09 01:40:28','2025-08-09 01:40:28','<a href=\"https://shorturl.fm/pqti1\" rel=\"nofollow ugc\">https://shorturl.fm/pqti1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1312,1,'Dwight1828','Dwight1828@gmail.com','','43.245.86.112','2025-08-09 10:43:38','2025-08-09 10:43:38','<a href=\"https://shorturl.fm/BbF2T\" rel=\"nofollow ugc\">https://shorturl.fm/BbF2T</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1313,161,'Quinn149','Quinn149@gmail.com','','43.245.86.112','2025-08-09 10:43:53','2025-08-09 10:43:53','<a href=\"https://shorturl.fm/PD6P0\" rel=\"nofollow ugc\">https://shorturl.fm/PD6P0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1314,1,'Ayden2643','Ayden2643@gmail.com','','171.237.91.171','2025-08-09 21:06:18','2025-08-09 21:06:18','<a href=\"https://shorturl.fm/SyxI9\" rel=\"nofollow ugc\">https://shorturl.fm/SyxI9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1315,163,'Andrea2132','Andrea2132@gmail.com','','171.237.91.171','2025-08-09 21:06:33','2025-08-09 21:06:33','<a href=\"https://shorturl.fm/Goozh\" rel=\"nofollow ugc\">https://shorturl.fm/Goozh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1316,1,'Faye3560','Faye3560@gmail.com','','125.25.53.175','2025-08-10 10:26:34','2025-08-10 10:26:34','<a href=\"https://shorturl.fm/L8lFy\" rel=\"nofollow ugc\">https://shorturl.fm/L8lFy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1317,1,'Colton3356','Colton3356@gmail.com','','119.224.62.222','2025-08-10 11:41:14','2025-08-10 11:41:14','<a href=\"https://shorturl.fm/KLzAV\" rel=\"nofollow ugc\">https://shorturl.fm/KLzAV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1318,1,'Lily878','Lily878@gmail.com','','192.248.94.135','2025-08-10 13:30:47','2025-08-10 13:30:47','<a href=\"https://shorturl.fm/SrEvN\" rel=\"nofollow ugc\">https://shorturl.fm/SrEvN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1319,1,'Camille3214','Camille3214@gmail.com','','110.38.128.173','2025-08-10 14:28:24','2025-08-10 14:28:24','<a href=\"https://shorturl.fm/IxtGr\" rel=\"nofollow ugc\">https://shorturl.fm/IxtGr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1320,163,'Whitney2608','Whitney2608@gmail.com','','110.38.128.173','2025-08-10 14:28:40','2025-08-10 14:28:40','<a href=\"https://shorturl.fm/Ijawf\" rel=\"nofollow ugc\">https://shorturl.fm/Ijawf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1321,1,'Greg2132','Greg2132@gmail.com','','123.112.246.233','2025-08-11 15:43:01','2025-08-11 15:43:01','<a href=\"https://shorturl.fm/DxCAC\" rel=\"nofollow ugc\">https://shorturl.fm/DxCAC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1322,156,'Aria365','Aria365@gmail.com','','123.112.246.233','2025-08-11 15:43:33','2025-08-11 15:43:33','<a href=\"https://shorturl.fm/dbTYA\" rel=\"nofollow ugc\">https://shorturl.fm/dbTYA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1323,157,'Cindy751','Cindy751@gmail.com','','123.112.246.233','2025-08-11 15:44:05','2025-08-11 15:44:05','<a href=\"https://shorturl.fm/ySq9F\" rel=\"nofollow ugc\">https://shorturl.fm/ySq9F</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1324,158,'Caden2858','Caden2858@gmail.com','','123.112.246.233','2025-08-11 15:44:38','2025-08-11 15:44:38','<a href=\"https://shorturl.fm/JSuW4\" rel=\"nofollow ugc\">https://shorturl.fm/JSuW4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1325,159,'Scarlett1764','Scarlett1764@gmail.com','','123.112.246.233','2025-08-11 15:45:08','2025-08-11 15:45:08','<a href=\"https://shorturl.fm/FuBNC\" rel=\"nofollow ugc\">https://shorturl.fm/FuBNC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1326,160,'Adelyn419','Adelyn419@gmail.com','','123.112.246.233','2025-08-11 15:45:38','2025-08-11 15:45:38','<a href=\"https://shorturl.fm/ySq9F\" rel=\"nofollow ugc\">https://shorturl.fm/ySq9F</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1327,161,'Karl854','Karl854@gmail.com','','123.112.246.233','2025-08-11 15:46:08','2025-08-11 15:46:08','<a href=\"https://shorturl.fm/7xXgp\" rel=\"nofollow ugc\">https://shorturl.fm/7xXgp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1328,162,'Teresa4196','Teresa4196@gmail.com','','123.112.246.233','2025-08-11 15:46:36','2025-08-11 15:46:36','<a href=\"https://shorturl.fm/upEfy\" rel=\"nofollow ugc\">https://shorturl.fm/upEfy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1329,163,'Cheyenne995','Cheyenne995@gmail.com','','123.112.246.233','2025-08-11 15:47:05','2025-08-11 15:47:05','<a href=\"https://shorturl.fm/JEYnp\" rel=\"nofollow ugc\">https://shorturl.fm/JEYnp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1330,1,'Christian197','Christian197@gmail.com','','181.63.26.94','2025-08-11 22:06:01','2025-08-11 22:06:01','<a href=\"https://shorturl.fm/OJkeZ\" rel=\"nofollow ugc\">https://shorturl.fm/OJkeZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1331,156,'Kristin915','Kristin915@gmail.com','','181.63.26.94','2025-08-11 22:06:27','2025-08-11 22:06:27','<a href=\"https://shorturl.fm/pQZOq\" rel=\"nofollow ugc\">https://shorturl.fm/pQZOq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1332,157,'David919','David919@gmail.com','','181.63.26.94','2025-08-11 22:06:53','2025-08-11 22:06:53','<a href=\"https://shorturl.fm/UOzBL\" rel=\"nofollow ugc\">https://shorturl.fm/UOzBL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1333,158,'Cayden1740','Cayden1740@gmail.com','','181.63.26.94','2025-08-11 22:07:19','2025-08-11 22:07:19','<a href=\"https://shorturl.fm/43S60\" rel=\"nofollow ugc\">https://shorturl.fm/43S60</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1334,159,'Jude2931','Jude2931@gmail.com','','181.63.26.94','2025-08-11 22:07:47','2025-08-11 22:07:47','<a href=\"https://shorturl.fm/lRH62\" rel=\"nofollow ugc\">https://shorturl.fm/lRH62</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1335,160,'Anton1864','Anton1864@gmail.com','','181.63.26.94','2025-08-11 22:08:16','2025-08-11 22:08:16','<a href=\"https://shorturl.fm/7ks4c\" rel=\"nofollow ugc\">https://shorturl.fm/7ks4c</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1336,161,'Alexander3633','Alexander3633@gmail.com','','181.63.26.94','2025-08-11 22:08:45','2025-08-11 22:08:45','<a href=\"https://shorturl.fm/aTO1P\" rel=\"nofollow ugc\">https://shorturl.fm/aTO1P</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1337,162,'Elias2179','Elias2179@gmail.com','','181.63.26.94','2025-08-11 22:09:14','2025-08-11 22:09:14','<a href=\"https://shorturl.fm/G2nhM\" rel=\"nofollow ugc\">https://shorturl.fm/G2nhM</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1338,163,'Malcolm1239','Malcolm1239@gmail.com','','181.63.26.94','2025-08-11 22:09:44','2025-08-11 22:09:44','<a href=\"https://shorturl.fm/pQZOq\" rel=\"nofollow ugc\">https://shorturl.fm/pQZOq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1339,1,'Tom4377','Tom4377@gmail.com','','115.72.166.170','2025-08-11 22:41:36','2025-08-11 22:41:36','<a href=\"https://shorturl.fm/OJkeZ\" rel=\"nofollow ugc\">https://shorturl.fm/OJkeZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1340,156,'Ginger2042','Ginger2042@gmail.com','','115.72.166.170','2025-08-11 22:42:06','2025-08-11 22:42:06','<a href=\"https://shorturl.fm/kX6F0\" rel=\"nofollow ugc\">https://shorturl.fm/kX6F0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1341,157,'Lynne2186','Lynne2186@gmail.com','','115.72.166.170','2025-08-11 22:42:39','2025-08-11 22:42:39','<a href=\"https://shorturl.fm/8b3cz\" rel=\"nofollow ugc\">https://shorturl.fm/8b3cz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1342,159,'Julius3287','Julius3287@gmail.com','','115.72.166.170','2025-08-11 22:43:18','2025-08-11 22:43:18','<a href=\"https://shorturl.fm/JVqLZ\" rel=\"nofollow ugc\">https://shorturl.fm/JVqLZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1343,160,'Wesley1443','Wesley1443@gmail.com','','115.72.166.170','2025-08-11 22:43:48','2025-08-11 22:43:48','<a href=\"https://shorturl.fm/ZmiSh\" rel=\"nofollow ugc\">https://shorturl.fm/ZmiSh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1344,161,'Frida3285','Frida3285@gmail.com','','115.72.166.170','2025-08-11 22:44:17','2025-08-11 22:44:17','<a href=\"https://shorturl.fm/Kh4O0\" rel=\"nofollow ugc\">https://shorturl.fm/Kh4O0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1345,162,'Amber714','Amber714@gmail.com','','115.72.166.170','2025-08-11 22:44:46','2025-08-11 22:44:46','<a href=\"https://shorturl.fm/VxkIL\" rel=\"nofollow ugc\">https://shorturl.fm/VxkIL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1346,163,'Barret2011','Barret2011@gmail.com','','115.72.166.170','2025-08-11 22:45:16','2025-08-11 22:45:16','<a href=\"https://shorturl.fm/Q3ULn\" rel=\"nofollow ugc\">https://shorturl.fm/Q3ULn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1347,1,'Bonnie1677','Bonnie1677@gmail.com','','187.191.8.225','2025-08-12 01:03:46','2025-08-12 01:03:46','<a href=\"https://shorturl.fm/mGewb\" rel=\"nofollow ugc\">https://shorturl.fm/mGewb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1348,156,'Lee2442','Lee2442@gmail.com','','187.191.8.225','2025-08-12 01:04:16','2025-08-12 01:04:16','<a href=\"https://shorturl.fm/tOoS8\" rel=\"nofollow ugc\">https://shorturl.fm/tOoS8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1349,157,'Lachlan3540','Lachlan3540@gmail.com','','187.191.8.225','2025-08-12 01:04:47','2025-08-12 01:04:47','<a href=\"https://shorturl.fm/bNpkr\" rel=\"nofollow ugc\">https://shorturl.fm/bNpkr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1350,158,'Scarlett4907','Scarlett4907@gmail.com','','187.191.8.225','2025-08-12 01:05:27','2025-08-12 01:05:27','<a href=\"https://shorturl.fm/xiuIb\" rel=\"nofollow ugc\">https://shorturl.fm/xiuIb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1351,162,'Brandon2540','Brandon2540@gmail.com','','187.191.8.225','2025-08-12 01:05:42','2025-08-12 01:05:42','<a href=\"https://shorturl.fm/ZJ4OR\" rel=\"nofollow ugc\">https://shorturl.fm/ZJ4OR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1352,163,'Stella730','Stella730@gmail.com','','187.191.8.225','2025-08-12 01:06:13','2025-08-12 01:06:13','<a href=\"https://shorturl.fm/L7xvQ\" rel=\"nofollow ugc\">https://shorturl.fm/L7xvQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1353,1,'Violet352','Violet352@gmail.com','','200.229.12.26','2025-08-12 12:54:19','2025-08-12 12:54:19','<a href=\"https://shorturl.fm/YNDoV\" rel=\"nofollow ugc\">https://shorturl.fm/YNDoV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1354,156,'Kristina768','Kristina768@gmail.com','','200.229.12.26','2025-08-12 12:54:48','2025-08-12 12:54:48','<a href=\"https://shorturl.fm/SwEk4\" rel=\"nofollow ugc\">https://shorturl.fm/SwEk4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1355,157,'Frances1875','Frances1875@gmail.com','','200.229.12.26','2025-08-12 12:55:18','2025-08-12 12:55:18','<a href=\"https://shorturl.fm/EGxsr\" rel=\"nofollow ugc\">https://shorturl.fm/EGxsr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1356,158,'Skylar2615','Skylar2615@gmail.com','','200.229.12.26','2025-08-12 12:55:46','2025-08-12 12:55:46','<a href=\"https://shorturl.fm/Wee9x\" rel=\"nofollow ugc\">https://shorturl.fm/Wee9x</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1357,159,'Jessie2412','Jessie2412@gmail.com','','200.229.12.26','2025-08-12 12:56:17','2025-08-12 12:56:17','<a href=\"https://shorturl.fm/tzQCC\" rel=\"nofollow ugc\">https://shorturl.fm/tzQCC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1358,160,'Jim1659','Jim1659@gmail.com','','200.229.12.26','2025-08-12 12:56:47','2025-08-12 12:56:47','<a href=\"https://shorturl.fm/aklrV\" rel=\"nofollow ugc\">https://shorturl.fm/aklrV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1359,161,'Cyrus1960','Cyrus1960@gmail.com','','200.229.12.26','2025-08-12 12:57:16','2025-08-12 12:57:16','<a href=\"https://shorturl.fm/Wee9x\" rel=\"nofollow ugc\">https://shorturl.fm/Wee9x</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1360,162,'Erik2729','Erik2729@gmail.com','','200.229.12.26','2025-08-12 12:57:46','2025-08-12 12:57:46','<a href=\"https://shorturl.fm/XjVok\" rel=\"nofollow ugc\">https://shorturl.fm/XjVok</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1361,163,'Shannon209','Shannon209@gmail.com','','200.229.12.26','2025-08-12 12:58:15','2025-08-12 12:58:15','<a href=\"https://shorturl.fm/4av9G\" rel=\"nofollow ugc\">https://shorturl.fm/4av9G</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1362,1,'Darwin4062','Darwin4062@gmail.com','','115.72.172.80','2025-08-12 17:11:28','2025-08-12 17:11:28','<a href=\"https://shorturl.fm/RIxuT\" rel=\"nofollow ugc\">https://shorturl.fm/RIxuT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1363,162,'Ellie4898','Ellie4898@gmail.com','','115.72.172.80','2025-08-12 17:11:48','2025-08-12 17:11:48','<a href=\"https://shorturl.fm/iRWdn\" rel=\"nofollow ugc\">https://shorturl.fm/iRWdn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1364,1,'Morgan2823','Morgan2823@gmail.com','','58.186.176.117','2025-08-12 22:15:03','2025-08-12 22:15:03','<a href=\"https://shorturl.fm/wA2XH\" rel=\"nofollow ugc\">https://shorturl.fm/wA2XH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1365,1,'Gloria139','Gloria139@gmail.com','','111.95.54.218','2025-08-12 22:25:38','2025-08-12 22:25:38','<a href=\"https://shorturl.fm/wA2XH\" rel=\"nofollow ugc\">https://shorturl.fm/wA2XH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1366,158,'Alanna2370','Alanna2370@gmail.com','','111.95.54.218','2025-08-12 22:26:01','2025-08-12 22:26:01','<a href=\"https://shorturl.fm/rQGQ8\" rel=\"nofollow ugc\">https://shorturl.fm/rQGQ8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1367,160,'Cara3174','Cara3174@gmail.com','','111.95.54.218','2025-08-12 22:26:16','2025-08-12 22:26:16','<a href=\"https://shorturl.fm/ozcYU\" rel=\"nofollow ugc\">https://shorturl.fm/ozcYU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1368,1,'Anton3977','Anton3977@gmail.com','','112.135.75.111','2025-08-13 02:51:48','2025-08-13 02:51:48','<a href=\"https://shorturl.fm/izoT3\" rel=\"nofollow ugc\">https://shorturl.fm/izoT3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1369,163,'Layla3289','Layla3289@gmail.com','','112.135.75.111','2025-08-13 02:52:03','2025-08-13 02:52:03','<a href=\"https://shorturl.fm/JQn7x\" rel=\"nofollow ugc\">https://shorturl.fm/JQn7x</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1370,1,'Alexa501','Alexa501@gmail.com','','88.243.137.211','2025-08-13 19:14:42','2025-08-13 19:14:42','<a href=\"https://shorturl.fm/twKO1\" rel=\"nofollow ugc\">https://shorturl.fm/twKO1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1371,1,'Callie2549','Callie2549@gmail.com','','186.14.253.199','2025-08-13 23:56:08','2025-08-13 23:56:08','<a href=\"https://shorturl.fm/FJwCm\" rel=\"nofollow ugc\">https://shorturl.fm/FJwCm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1372,158,'Emmanuel3627','Emmanuel3627@gmail.com','','186.14.253.199','2025-08-13 23:56:24','2025-08-13 23:56:24','<a href=\"https://shorturl.fm/7Emji\" rel=\"nofollow ugc\">https://shorturl.fm/7Emji</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1373,1,'Frances3170','Frances3170@gmail.com','','41.204.44.43','2025-08-14 02:32:55','2025-08-14 02:32:55','<a href=\"https://shorturl.fm/pKCw7\" rel=\"nofollow ugc\">https://shorturl.fm/pKCw7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1374,158,'Griffin512','Griffin512@gmail.com','','41.204.44.43','2025-08-14 02:33:12','2025-08-14 02:33:12','<a href=\"https://shorturl.fm/O0eh0\" rel=\"nofollow ugc\">https://shorturl.fm/O0eh0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1375,1,'Cheryl2671','Cheryl2671@gmail.com','','101.109.10.91','2025-08-14 04:18:01','2025-08-14 04:18:01','<a href=\"https://shorturl.fm/v3zFe\" rel=\"nofollow ugc\">https://shorturl.fm/v3zFe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1376,1,'Nadia2865','Nadia2865@gmail.com','','103.30.31.196','2025-08-14 09:49:52','2025-08-14 09:49:52','<a href=\"https://shorturl.fm/4JaJT\" rel=\"nofollow ugc\">https://shorturl.fm/4JaJT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1377,158,'Kenneth663','Kenneth663@gmail.com','','103.30.31.196','2025-08-14 09:50:08','2025-08-14 09:50:08','<a href=\"https://shorturl.fm/MW8Zo\" rel=\"nofollow ugc\">https://shorturl.fm/MW8Zo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1378,163,'MyBlog','','http://mnbdaa.com','185.36.81.36','2025-08-14 12:21:29','2025-08-14 12:21:29','<strong>itstitle</strong>\n\nexcerptsa',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','trackback',0,0),(1379,1,'Javier973','Javier973@gmail.com','','186.48.106.213','2025-08-14 17:29:02','2025-08-14 17:29:02','<a href=\"https://shorturl.fm/eFUEC\" rel=\"nofollow ugc\">https://shorturl.fm/eFUEC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1380,1,'Esme2260','Esme2260@gmail.com','','70.54.53.207','2025-08-15 02:22:52','2025-08-15 02:22:52','<a href=\"https://shorturl.fm/DRUl1\" rel=\"nofollow ugc\">https://shorturl.fm/DRUl1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1381,1,'Andrea4201','Andrea4201@gmail.com','','136.158.28.247','2025-08-16 04:08:12','2025-08-16 04:08:12','<a href=\"https://shorturl.fm/JqMZH\" rel=\"nofollow ugc\">https://shorturl.fm/JqMZH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1382,163,'Richard2864','Richard2864@gmail.com','','136.158.28.247','2025-08-16 04:08:27','2025-08-16 04:08:27','<a href=\"https://shorturl.fm/y3WGY\" rel=\"nofollow ugc\">https://shorturl.fm/y3WGY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1383,1,'Marc4461','Marc4461@gmail.com','','181.142.115.4','2025-08-16 04:41:29','2025-08-16 04:41:29','<a href=\"https://shorturl.fm/wE7UE\" rel=\"nofollow ugc\">https://shorturl.fm/wE7UE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1384,1,'Tyler4290','Tyler4290@gmail.com','','120.53.24.226','2025-08-16 06:53:02','2025-08-16 06:53:02','<a href=\"https://shorturl.fm/z8Cvm\" rel=\"nofollow ugc\">https://shorturl.fm/z8Cvm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1385,161,'Jocelyn1772','Jocelyn1772@gmail.com','','120.53.24.226','2025-08-16 06:53:17','2025-08-16 06:53:17','<a href=\"https://shorturl.fm/OYjwH\" rel=\"nofollow ugc\">https://shorturl.fm/OYjwH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1386,1,'Jaiden339','Jaiden339@gmail.com','','223.123.7.90','2025-08-16 09:56:41','2025-08-16 09:56:41','<a href=\"https://shorturl.fm/1ci1P\" rel=\"nofollow ugc\">https://shorturl.fm/1ci1P</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1387,163,'Dorothy3570','Dorothy3570@gmail.com','','223.123.7.90','2025-08-16 09:56:56','2025-08-16 09:56:56','<a href=\"https://shorturl.fm/qxvaU\" rel=\"nofollow ugc\">https://shorturl.fm/qxvaU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1388,1,'Anika3844','Anika3844@gmail.com','','171.5.37.141','2025-08-16 11:28:45','2025-08-16 11:28:45','<a href=\"https://shorturl.fm/DYPL9\" rel=\"nofollow ugc\">https://shorturl.fm/DYPL9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1389,1,'Ivy605','Ivy605@gmail.com','','103.119.53.29','2025-08-17 00:26:42','2025-08-17 00:26:42','<a href=\"https://shorturl.fm/wtOPt\" rel=\"nofollow ugc\">https://shorturl.fm/wtOPt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1390,1,'Elise1612','Elise1612@gmail.com','','115.72.164.210','2025-08-17 05:16:12','2025-08-17 05:16:12','<a href=\"https://shorturl.fm/878LX\" rel=\"nofollow ugc\">https://shorturl.fm/878LX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1391,162,'Raphael2655','Raphael2655@gmail.com','','115.72.164.210','2025-08-17 05:16:27','2025-08-17 05:16:27','<a href=\"https://shorturl.fm/03V2U\" rel=\"nofollow ugc\">https://shorturl.fm/03V2U</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1392,156,'Cadence483','Cadence483@gmail.com','','117.201.136.61','2025-08-17 16:55:28','2025-08-17 16:55:28','<a href=\"https://shorturl.fm/LL6vV\" rel=\"nofollow ugc\">https://shorturl.fm/LL6vV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1393,1,'Carey1489','Carey1489@gmail.com','','27.79.206.225','2025-08-17 17:40:28','2025-08-17 17:40:28','<a href=\"https://shorturl.fm/kdxnw\" rel=\"nofollow ugc\">https://shorturl.fm/kdxnw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1394,1,'Sabrina2915','Sabrina2915@gmail.com','','171.239.234.85','2025-08-17 17:48:58','2025-08-17 17:48:58','<a href=\"https://shorturl.fm/b6OkP\" rel=\"nofollow ugc\">https://shorturl.fm/b6OkP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1395,1,'Levi3878','Levi3878@gmail.com','','180.244.129.108','2025-08-17 20:43:52','2025-08-17 20:43:52','<a href=\"https://shorturl.fm/85zH3\" rel=\"nofollow ugc\">https://shorturl.fm/85zH3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1396,160,'Toby4801','Toby4801@gmail.com','','180.244.129.108','2025-08-17 20:44:07','2025-08-17 20:44:07','<a href=\"https://shorturl.fm/J8Neo\" rel=\"nofollow ugc\">https://shorturl.fm/J8Neo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1397,1,'Bill3767','Bill3767@gmail.com','','103.187.94.216','2025-08-18 08:24:26','2025-08-18 08:24:26','<a href=\"https://shorturl.fm/EILlA\" rel=\"nofollow ugc\">https://shorturl.fm/EILlA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1398,161,'Rhys4740','Rhys4740@gmail.com','','103.187.94.216','2025-08-18 08:24:42','2025-08-18 08:24:42','<a href=\"https://shorturl.fm/PxFFq\" rel=\"nofollow ugc\">https://shorturl.fm/PxFFq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1399,1,'Clifford224','Clifford224@gmail.com','','27.79.208.40','2025-08-18 10:55:58','2025-08-18 10:55:58','<a href=\"https://shorturl.fm/pTx0F\" rel=\"nofollow ugc\">https://shorturl.fm/pTx0F</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1400,1,'Gretchen2521','Gretchen2521@gmail.com','','216.249.145.242','2025-08-18 18:28:58','2025-08-18 18:28:58','<a href=\"https://shorturl.fm/03Z4h\" rel=\"nofollow ugc\">https://shorturl.fm/03Z4h</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1401,162,'Janice3538','Janice3538@gmail.com','','216.249.145.242','2025-08-18 18:29:26','2025-08-18 18:29:26','<a href=\"https://shorturl.fm/SE3m0\" rel=\"nofollow ugc\">https://shorturl.fm/SE3m0</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1402,1,'Ron2634','Ron2634@gmail.com','','129.224.203.24','2025-08-19 03:01:59','2025-08-19 03:01:59','<a href=\"https://shorturl.fm/f6RJg\" rel=\"nofollow ugc\">https://shorturl.fm/f6RJg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1403,157,'June1188','June1188@gmail.com','','129.224.203.24','2025-08-19 03:02:19','2025-08-19 03:02:19','<a href=\"https://shorturl.fm/6N9dF\" rel=\"nofollow ugc\">https://shorturl.fm/6N9dF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1404,158,'Colin19','Colin19@gmail.com','','129.224.203.24','2025-08-19 03:02:46','2025-08-19 03:02:46','<a href=\"https://shorturl.fm/fcPcA\" rel=\"nofollow ugc\">https://shorturl.fm/fcPcA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1405,163,'Eloise2069','Eloise2069@gmail.com','','129.224.203.24','2025-08-19 03:03:02','2025-08-19 03:03:02','<a href=\"https://shorturl.fm/uH3Wr\" rel=\"nofollow ugc\">https://shorturl.fm/uH3Wr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1406,1,'Channing759','Channing759@gmail.com','','94.129.70.179','2025-08-19 10:42:05','2025-08-19 10:42:05','<a href=\"https://shorturl.fm/vwIhq\" rel=\"nofollow ugc\">https://shorturl.fm/vwIhq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1407,1,'Leanne751','Leanne751@gmail.com','','180.248.26.84','2025-08-19 14:04:46','2025-08-19 14:04:46','<a href=\"https://shorturl.fm/tNOhR\" rel=\"nofollow ugc\">https://shorturl.fm/tNOhR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1408,161,'Philip3904','Philip3904@gmail.com','','180.248.26.84','2025-08-19 14:05:01','2025-08-19 14:05:01','<a href=\"https://shorturl.fm/Yxlbm\" rel=\"nofollow ugc\">https://shorturl.fm/Yxlbm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1409,1,'Manuel4558','Manuel4558@gmail.com','','172.115.229.9','2025-08-19 20:07:02','2025-08-19 20:07:02','<a href=\"https://shorturl.fm/3d7UV\" rel=\"nofollow ugc\">https://shorturl.fm/3d7UV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1410,1,'Camila3460','Camila3460@gmail.com','','124.83.125.226','2025-08-20 05:43:34','2025-08-20 05:43:34','<a href=\"https://shorturl.fm/Hs8Iw\" rel=\"nofollow ugc\">https://shorturl.fm/Hs8Iw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1411,1,'Peter4803','Peter4803@gmail.com','','92.96.215.199','2025-08-20 07:37:27','2025-08-20 07:37:27','<a href=\"https://shorturl.fm/3ySHK\" rel=\"nofollow ugc\">https://shorturl.fm/3ySHK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1412,1,'Demi4653','Demi4653@gmail.com','','131.161.84.77','2025-08-20 17:04:22','2025-08-20 17:04:22','<a href=\"https://shorturl.fm/EjBSV\" rel=\"nofollow ugc\">https://shorturl.fm/EjBSV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1413,1,'Donald1263','Donald1263@gmail.com','','122.54.13.192','2025-08-20 20:26:44','2025-08-20 20:26:44','<a href=\"https://shorturl.fm/Kx31g\" rel=\"nofollow ugc\">https://shorturl.fm/Kx31g</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1414,1,'Andrew3546','Andrew3546@gmail.com','','117.87.188.19','2025-08-20 22:29:45','2025-08-20 22:29:45','<a href=\"https://shorturl.fm/TfeqH\" rel=\"nofollow ugc\">https://shorturl.fm/TfeqH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1415,1,'Kylie3489','Kylie3489@gmail.com','','118.68.28.130','2025-08-21 15:27:55','2025-08-21 15:27:55','<a href=\"https://shorturl.fm/RgugJ\" rel=\"nofollow ugc\">https://shorturl.fm/RgugJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1416,1,'Lacey1505','Lacey1505@gmail.com','','174.95.129.248','2025-08-21 18:38:18','2025-08-21 18:38:18','<a href=\"https://shorturl.fm/jcypf\" rel=\"nofollow ugc\">https://shorturl.fm/jcypf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1417,1,'Caitlin4568','Caitlin4568@gmail.com','','182.53.189.115','2025-08-21 21:01:10','2025-08-21 21:01:10','<a href=\"https://shorturl.fm/ZTop8\" rel=\"nofollow ugc\">https://shorturl.fm/ZTop8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1418,1,'Louis3687','Louis3687@gmail.com','','178.124.69.56','2025-08-22 03:57:56','2025-08-22 03:57:56','<a href=\"https://shorturl.fm/UrLov\" rel=\"nofollow ugc\">https://shorturl.fm/UrLov</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1419,1,'Franklin3064','Franklin3064@gmail.com','','27.34.67.21','2025-08-22 07:26:25','2025-08-22 07:26:25','<a href=\"https://shorturl.fm/vdw2l\" rel=\"nofollow ugc\">https://shorturl.fm/vdw2l</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1420,1,'Noah698','Noah698@gmail.com','','45.191.96.130','2025-08-22 21:34:52','2025-08-22 21:34:52','<a href=\"https://shorturl.fm/4pmhi\" rel=\"nofollow ugc\">https://shorturl.fm/4pmhi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1421,1,'Emma4176','Emma4176@gmail.com','','103.167.12.179','2025-08-22 23:41:01','2025-08-22 23:41:01','<a href=\"https://shorturl.fm/wowMZ\" rel=\"nofollow ugc\">https://shorturl.fm/wowMZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1422,158,'Dina1165','Dina1165@gmail.com','','103.167.12.179','2025-08-22 23:41:25','2025-08-22 23:41:25','<a href=\"https://shorturl.fm/b0OGj\" rel=\"nofollow ugc\">https://shorturl.fm/b0OGj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1423,161,'Mckenzie2787','Mckenzie2787@gmail.com','','103.167.12.179','2025-08-22 23:41:49','2025-08-22 23:41:49','<a href=\"https://shorturl.fm/Dd9lz\" rel=\"nofollow ugc\">https://shorturl.fm/Dd9lz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1424,162,'Adeline1181','Adeline1181@gmail.com','','128.90.43.165','2025-08-23 01:41:42','2025-08-23 01:41:42','<a href=\"https://shorturl.fm/4ktNw\" rel=\"nofollow ugc\">https://shorturl.fm/4ktNw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1425,1,'Joanna97','Joanna97@gmail.com','','101.188.175.68','2025-08-23 05:41:03','2025-08-23 05:41:03','<a href=\"https://shorturl.fm/5zMr3\" rel=\"nofollow ugc\">https://shorturl.fm/5zMr3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1426,161,'Cale1837','Cale1837@gmail.com','','101.188.175.68','2025-08-23 05:41:19','2025-08-23 05:41:19','<a href=\"https://shorturl.fm/8JqRH\" rel=\"nofollow ugc\">https://shorturl.fm/8JqRH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1427,1,'Lisa3728','Lisa3728@gmail.com','','118.174.126.157','2025-08-23 11:52:51','2025-08-23 11:52:51','<a href=\"https://shorturl.fm/Tk4yi\" rel=\"nofollow ugc\">https://shorturl.fm/Tk4yi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1428,1,'Dominic168','Dominic168@gmail.com','','1.54.69.143','2025-08-23 16:26:47','2025-08-23 16:26:47','<a href=\"https://shorturl.fm/2tC2V\" rel=\"nofollow ugc\">https://shorturl.fm/2tC2V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1429,161,'Delaney2094','Delaney2094@gmail.com','','1.54.69.143','2025-08-23 16:27:03','2025-08-23 16:27:03','<a href=\"https://shorturl.fm/lCtjJ\" rel=\"nofollow ugc\">https://shorturl.fm/lCtjJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1430,1,'Paisley1796','Paisley1796@gmail.com','','23.237.210.82','2025-08-23 17:20:53','2025-08-23 17:20:53','<a href=\"https://shorturl.fm/RBLgu\" rel=\"nofollow ugc\">https://shorturl.fm/RBLgu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1431,162,'Clifford2619','Clifford2619@gmail.com','','23.237.210.82','2025-08-23 17:21:08','2025-08-23 17:21:08','<a href=\"https://shorturl.fm/VKshX\" rel=\"nofollow ugc\">https://shorturl.fm/VKshX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1432,1,'Jasper1141','Jasper1141@gmail.com','','190.96.139.88','2025-08-24 14:52:50','2025-08-24 14:52:50','<a href=\"https://shorturl.fm/BvU2o\" rel=\"nofollow ugc\">https://shorturl.fm/BvU2o</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1433,160,'Jared2812','Jared2812@gmail.com','','190.96.139.88','2025-08-24 14:53:05','2025-08-24 14:53:05','<a href=\"https://shorturl.fm/P5i9F\" rel=\"nofollow ugc\">https://shorturl.fm/P5i9F</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1434,1,'Maddison4431','Maddison4431@gmail.com','','42.118.3.226','2025-08-24 20:15:45','2025-08-24 20:15:45','<a href=\"https://shorturl.fm/QYh5N\" rel=\"nofollow ugc\">https://shorturl.fm/QYh5N</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1435,1,'Brielle854','Brielle854@gmail.com','','116.99.61.11','2025-08-24 21:21:13','2025-08-24 21:21:13','<a href=\"https://shorturl.fm/XLvxv\" rel=\"nofollow ugc\">https://shorturl.fm/XLvxv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1436,1,'Graham3419','Graham3419@gmail.com','','186.32.234.122','2025-08-25 01:33:28','2025-08-25 01:33:28','<a href=\"https://shorturl.fm/2kaHK\" rel=\"nofollow ugc\">https://shorturl.fm/2kaHK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1437,1,'Ray540','Ray540@gmail.com','','182.253.51.235','2025-08-25 07:53:25','2025-08-25 07:53:25','<a href=\"https://shorturl.fm/QbMwd\" rel=\"nofollow ugc\">https://shorturl.fm/QbMwd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1438,161,'Alec321','Alec321@gmail.com','','182.253.51.235','2025-08-25 07:53:40','2025-08-25 07:53:40','<a href=\"https://shorturl.fm/PptRf\" rel=\"nofollow ugc\">https://shorturl.fm/PptRf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1439,1,'Gloria3881','Gloria3881@gmail.com','','89.117.41.100','2025-08-25 19:09:49','2025-08-25 19:09:49','<a href=\"https://shorturl.fm/VLDGI\" rel=\"nofollow ugc\">https://shorturl.fm/VLDGI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1440,161,'Cecilia1627','Cecilia1627@gmail.com','','89.117.41.100','2025-08-25 19:10:04','2025-08-25 19:10:04','<a href=\"https://shorturl.fm/vzFdV\" rel=\"nofollow ugc\">https://shorturl.fm/vzFdV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1441,1,'Diana1747','Diana1747@gmail.com','','190.72.88.125','2025-08-25 20:18:50','2025-08-25 20:18:50','<a href=\"https://shorturl.fm/sWHGy\" rel=\"nofollow ugc\">https://shorturl.fm/sWHGy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1442,1,'Daniel3806','Daniel3806@gmail.com','','102.209.78.42','2025-08-25 23:18:43','2025-08-25 23:18:43','<a href=\"https://shorturl.fm/UW5cQ\" rel=\"nofollow ugc\">https://shorturl.fm/UW5cQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1443,1,'Beryl473','Beryl473@gmail.com','','136.227.195.83','2025-08-26 21:30:19','2025-08-26 21:30:19','<a href=\"https://shorturl.fm/dRZXO\" rel=\"nofollow ugc\">https://shorturl.fm/dRZXO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1444,1,'Lisa960','Lisa960@gmail.com','','181.97.207.199','2025-08-26 23:12:41','2025-08-26 23:12:41','<a href=\"https://shorturl.fm/uRat6\" rel=\"nofollow ugc\">https://shorturl.fm/uRat6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1445,1,'Ethan4292','Ethan4292@gmail.com','','212.102.51.79','2025-08-27 05:07:27','2025-08-27 05:07:27','<a href=\"https://shorturl.fm/TnA36\" rel=\"nofollow ugc\">https://shorturl.fm/TnA36</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1446,163,'Jared4702','Jared4702@gmail.com','','212.102.51.79','2025-08-27 05:07:42','2025-08-27 05:07:42','<a href=\"https://shorturl.fm/iHSlK\" rel=\"nofollow ugc\">https://shorturl.fm/iHSlK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1447,1,'Earl2427','Earl2427@gmail.com','','163.61.245.58','2025-08-27 10:15:29','2025-08-27 10:15:29','<a href=\"https://shorturl.fm/9Dj6z\" rel=\"nofollow ugc\">https://shorturl.fm/9Dj6z</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1448,1,'Aurora831','Aurora831@gmail.com','','38.248.168.43','2025-08-27 11:27:43','2025-08-27 11:27:43','<a href=\"https://shorturl.fm/XdUvM\" rel=\"nofollow ugc\">https://shorturl.fm/XdUvM</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1449,1,'Noelle2981','Noelle2981@gmail.com','','45.235.73.17','2025-08-28 12:33:09','2025-08-28 12:33:09','<a href=\"https://shorturl.fm/HA8e7\" rel=\"nofollow ugc\">https://shorturl.fm/HA8e7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1450,156,'Marvin1440','Marvin1440@gmail.com','','45.235.73.34','2025-08-28 12:33:11','2025-08-28 12:33:11','<a href=\"https://shorturl.fm/jWPFm\" rel=\"nofollow ugc\">https://shorturl.fm/jWPFm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1451,158,'Vincent3617','Vincent3617@gmail.com','','45.235.73.66','2025-08-28 12:33:15','2025-08-28 12:33:15','<a href=\"https://shorturl.fm/FQMkF\" rel=\"nofollow ugc\">https://shorturl.fm/FQMkF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1452,159,'Alanna4358','Alanna4358@gmail.com','','45.235.73.52','2025-08-28 12:33:17','2025-08-28 12:33:17','<a href=\"https://shorturl.fm/0Clcx\" rel=\"nofollow ugc\">https://shorturl.fm/0Clcx</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1453,1,'Cody3963','Cody3963@gmail.com','','118.99.87.186','2025-08-29 00:20:23','2025-08-29 00:20:23','<a href=\"https://shorturl.fm/K0t1k\" rel=\"nofollow ugc\">https://shorturl.fm/K0t1k</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1454,1,'Alberto2547','Alberto2547@gmail.com','','190.89.29.101','2025-08-29 00:43:10','2025-08-29 00:43:10','<a href=\"https://shorturl.fm/pbpox\" rel=\"nofollow ugc\">https://shorturl.fm/pbpox</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1455,156,'Skylar4246','Skylar4246@gmail.com','','190.89.29.101','2025-08-29 00:43:32','2025-08-29 00:43:32','<a href=\"https://shorturl.fm/LWltN\" rel=\"nofollow ugc\">https://shorturl.fm/LWltN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1456,1,'Jose300','Jose300@gmail.com','','49.149.125.183','2025-08-29 06:24:58','2025-08-29 06:24:58','<a href=\"https://shorturl.fm/IMgTW\" rel=\"nofollow ugc\">https://shorturl.fm/IMgTW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1457,161,'Alec2176','Alec2176@gmail.com','','49.149.125.183','2025-08-29 06:25:13','2025-08-29 06:25:13','<a href=\"https://shorturl.fm/LUmXY\" rel=\"nofollow ugc\">https://shorturl.fm/LUmXY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1458,1,'Emilia1041','Emilia1041@gmail.com','','177.52.83.209','2025-08-29 10:26:31','2025-08-29 10:26:31','<a href=\"https://shorturl.fm/r8Iek\" rel=\"nofollow ugc\">https://shorturl.fm/r8Iek</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1459,163,'Brett4382','Brett4382@gmail.com','','177.52.83.209','2025-08-29 10:26:48','2025-08-29 10:26:48','<a href=\"https://shorturl.fm/0SfbX\" rel=\"nofollow ugc\">https://shorturl.fm/0SfbX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1460,1,'Aria1088','Aria1088@gmail.com','','106.53.172.202','2025-08-29 11:12:06','2025-08-29 11:12:06','<a href=\"https://shorturl.fm/gJ3Bd\" rel=\"nofollow ugc\">https://shorturl.fm/gJ3Bd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1461,161,'Brantley175','Brantley175@gmail.com','','106.53.172.202','2025-08-29 11:12:25','2025-08-29 11:12:25','<a href=\"https://shorturl.fm/aoxhB\" rel=\"nofollow ugc\">https://shorturl.fm/aoxhB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1462,1,'Jordyn4382','Jordyn4382@gmail.com','','180.247.62.26','2025-08-29 17:17:07','2025-08-29 17:17:07','<a href=\"https://shorturl.fm/ukOgR\" rel=\"nofollow ugc\">https://shorturl.fm/ukOgR</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1463,159,'Dustin2711','Dustin2711@gmail.com','','180.247.62.26','2025-08-29 17:17:22','2025-08-29 17:17:22','<a href=\"https://shorturl.fm/1abLi\" rel=\"nofollow ugc\">https://shorturl.fm/1abLi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1464,161,'Christopher1804','Christopher1804@gmail.com','','180.247.62.26','2025-08-29 17:17:43','2025-08-29 17:17:43','<a href=\"https://shorturl.fm/GiTO4\" rel=\"nofollow ugc\">https://shorturl.fm/GiTO4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1465,163,'Lori4306','Lori4306@gmail.com','','180.247.62.26','2025-08-29 17:18:03','2025-08-29 17:18:03','<a href=\"https://shorturl.fm/SDkEc\" rel=\"nofollow ugc\">https://shorturl.fm/SDkEc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1466,1,'Camden4816','Camden4816@gmail.com','','8.220.200.221','2025-08-30 01:59:43','2025-08-30 01:59:43','<a href=\"https://shorturl.fm/6tfnJ\" rel=\"nofollow ugc\">https://shorturl.fm/6tfnJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1467,1,'Scarlett3393','Scarlett3393@gmail.com','','23.233.59.220','2025-08-30 03:46:06','2025-08-30 03:46:06','<a href=\"https://shorturl.fm/2ULma\" rel=\"nofollow ugc\">https://shorturl.fm/2ULma</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1468,1,'Charlie1462','Charlie1462@gmail.com','','153.199.109.76','2025-08-30 07:18:18','2025-08-30 07:18:18','<a href=\"https://shorturl.fm/SxBZN\" rel=\"nofollow ugc\">https://shorturl.fm/SxBZN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1469,1,'Amber503','Amber503@gmail.com','','223.17.200.197','2025-08-30 08:46:34','2025-08-30 08:46:34','<a href=\"https://shorturl.fm/TXOe3\" rel=\"nofollow ugc\">https://shorturl.fm/TXOe3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1470,1,'Julian1007','Julian1007@gmail.com','','88.30.0.185','2025-08-30 10:23:03','2025-08-30 10:23:03','<a href=\"https://shorturl.fm/g1zsk\" rel=\"nofollow ugc\">https://shorturl.fm/g1zsk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1471,158,'Loren833','Loren833@gmail.com','','88.30.0.185','2025-08-30 10:23:18','2025-08-30 10:23:18','<a href=\"https://shorturl.fm/LN31x\" rel=\"nofollow ugc\">https://shorturl.fm/LN31x</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1472,162,'Bennett4883','Bennett4883@gmail.com','','88.30.0.185','2025-08-30 10:23:40','2025-08-30 10:23:40','<a href=\"https://shorturl.fm/twR4s\" rel=\"nofollow ugc\">https://shorturl.fm/twR4s</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1473,1,'Mary4058','Mary4058@gmail.com','','103.184.21.68','2025-08-31 06:42:43','2025-08-31 06:42:43','<a href=\"https://shorturl.fm/XU6fH\" rel=\"nofollow ugc\">https://shorturl.fm/XU6fH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1474,1,'Angelica3964','Angelica3964@gmail.com','','112.203.60.198','2025-08-31 16:23:59','2025-08-31 16:23:59','<a href=\"https://shorturl.fm/JAwDF\" rel=\"nofollow ugc\">https://shorturl.fm/JAwDF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1475,1,'Tara2026','Tara2026@gmail.com','','121.33.141.58','2025-08-31 17:54:05','2025-08-31 17:54:05','<a href=\"https://shorturl.fm/tm0JQ\" rel=\"nofollow ugc\">https://shorturl.fm/tm0JQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1476,1,'Vivian2816','Vivian2816@gmail.com','','203.150.113.21','2025-08-31 21:50:19','2025-08-31 21:50:19','<a href=\"https://shorturl.fm/CGmNo\" rel=\"nofollow ugc\">https://shorturl.fm/CGmNo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1477,1,'Sofia862','Sofia862@gmail.com','','87.200.208.10','2025-09-01 06:00:29','2025-09-01 06:00:29','<a href=\"https://shorturl.fm/xvBHX\" rel=\"nofollow ugc\">https://shorturl.fm/xvBHX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1478,1,'Ingrid3521','Ingrid3521@gmail.com','','171.234.135.120','2025-09-01 09:38:40','2025-09-01 09:38:40','<a href=\"https://shorturl.fm/sZn3Q\" rel=\"nofollow ugc\">https://shorturl.fm/sZn3Q</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1479,162,'Amanda2382','Amanda2382@gmail.com','','171.234.135.120','2025-09-01 09:38:55','2025-09-01 09:38:55','<a href=\"https://shorturl.fm/HqNEt\" rel=\"nofollow ugc\">https://shorturl.fm/HqNEt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1480,1,'Holden969','Holden969@gmail.com','','58.152.176.142','2025-09-01 16:43:17','2025-09-01 16:43:17','<a href=\"https://shorturl.fm/Qla30\" rel=\"nofollow ugc\">https://shorturl.fm/Qla30</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1481,1,'Cole4027','Cole4027@gmail.com','','103.165.157.59','2025-09-02 00:44:28','2025-09-02 00:44:28','<a href=\"https://shorturl.fm/NfQdE\" rel=\"nofollow ugc\">https://shorturl.fm/NfQdE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1482,1,'Jocelyn1106','Jocelyn1106@gmail.com','','171.7.69.164','2025-09-02 03:58:22','2025-09-02 03:58:22','<a href=\"https://shorturl.fm/8QfDV\" rel=\"nofollow ugc\">https://shorturl.fm/8QfDV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1483,1,'Antonio830','Antonio830@gmail.com','','43.167.197.13','2025-09-02 04:15:35','2025-09-02 04:15:35','<a href=\"https://shorturl.fm/HLPjC\" rel=\"nofollow ugc\">https://shorturl.fm/HLPjC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1484,1,'Alicia1669','Alicia1669@gmail.com','','103.228.246.238','2025-09-02 07:49:42','2025-09-02 07:49:42','<a href=\"https://shorturl.fm/Psyrb\" rel=\"nofollow ugc\">https://shorturl.fm/Psyrb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1485,1,'Lorenzo1360','Lorenzo1360@gmail.com','','82.21.68.231','2025-09-02 15:19:21','2025-09-02 15:19:21','<a href=\"https://shorturl.fm/INfyp\" rel=\"nofollow ugc\">https://shorturl.fm/INfyp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1486,158,'Diego2828','Diego2828@gmail.com','','82.21.68.231','2025-09-02 15:19:39','2025-09-02 15:19:39','<a href=\"https://shorturl.fm/iZ5Pd\" rel=\"nofollow ugc\">https://shorturl.fm/iZ5Pd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1487,1,'Katherine1478','Katherine1478@gmail.com','','190.205.49.51','2025-09-02 16:52:55','2025-09-02 16:52:55','<a href=\"https://shorturl.fm/INfyp\" rel=\"nofollow ugc\">https://shorturl.fm/INfyp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1488,1,'Nicole1468','Nicole1468@gmail.com','','27.79.218.240','2025-09-03 08:05:04','2025-09-03 08:05:04','<a href=\"https://shorturl.fm/5qz0D\" rel=\"nofollow ugc\">https://shorturl.fm/5qz0D</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1489,1,'Allison4585','Allison4585@gmail.com','','180.243.0.188','2025-09-03 10:12:52','2025-09-03 10:12:52','<a href=\"https://shorturl.fm/ZmBYE\" rel=\"nofollow ugc\">https://shorturl.fm/ZmBYE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1490,157,'Wesley3325','Wesley3325@gmail.com','','180.243.0.188','2025-09-03 10:13:11','2025-09-03 10:13:11','<a href=\"https://shorturl.fm/4XyQ5\" rel=\"nofollow ugc\">https://shorturl.fm/4XyQ5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1491,161,'Darby495','Darby495@gmail.com','','180.243.0.188','2025-09-03 10:13:27','2025-09-03 10:13:27','<a href=\"https://shorturl.fm/4nUqG\" rel=\"nofollow ugc\">https://shorturl.fm/4nUqG</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1492,1,'Alicia831','Alicia831@gmail.com','','186.7.205.237','2025-09-03 14:21:45','2025-09-03 14:21:45','<a href=\"https://shorturl.fm/aFLdb\" rel=\"nofollow ugc\">https://shorturl.fm/aFLdb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1493,1,'Erika2555','Erika2555@gmail.com','','103.178.186.146','2025-09-03 15:50:12','2025-09-03 15:50:12','<a href=\"https://shorturl.fm/COIWW\" rel=\"nofollow ugc\">https://shorturl.fm/COIWW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1494,158,'Marc1128','Marc1128@gmail.com','','103.178.186.147','2025-09-03 15:50:27','2025-09-03 15:50:27','<a href=\"https://shorturl.fm/N57TK\" rel=\"nofollow ugc\">https://shorturl.fm/N57TK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1495,159,'Leia2179','Leia2179@gmail.com','','103.178.186.146','2025-09-03 15:50:29','2025-09-03 15:50:29','<a href=\"https://shorturl.fm/2cXqN\" rel=\"nofollow ugc\">https://shorturl.fm/2cXqN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1496,1,'Emma2781','Emma2781@gmail.com','','27.79.183.115','2025-09-03 19:32:52','2025-09-03 19:32:52','<a href=\"https://shorturl.fm/Jgqo5\" rel=\"nofollow ugc\">https://shorturl.fm/Jgqo5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1497,160,'Gideon3357','Gideon3357@gmail.com','','27.79.183.115','2025-09-03 19:33:07','2025-09-03 19:33:07','<a href=\"https://shorturl.fm/QuKp5\" rel=\"nofollow ugc\">https://shorturl.fm/QuKp5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1498,156,'Albert4073','Albert4073@gmail.com','','27.74.237.184','2025-09-04 03:17:41','2025-09-04 03:17:41','<a href=\"https://shorturl.fm/yc8KJ\" rel=\"nofollow ugc\">https://shorturl.fm/yc8KJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1499,161,'Annabelle2108','Annabelle2108@gmail.com','','27.74.237.184','2025-09-04 03:17:56','2025-09-04 03:17:56','<a href=\"https://shorturl.fm/gaJ7x\" rel=\"nofollow ugc\">https://shorturl.fm/gaJ7x</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1500,1,'Lydia765','Lydia765@gmail.com','','110.164.197.82','2025-09-04 06:06:54','2025-09-04 06:06:54','<a href=\"https://shorturl.fm/cq9YW\" rel=\"nofollow ugc\">https://shorturl.fm/cq9YW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1501,1,'Howard1164','Howard1164@gmail.com','','38.188.98.10','2025-09-04 13:19:42','2025-09-04 13:19:42','<a href=\"https://shorturl.fm/5a5GN\" rel=\"nofollow ugc\">https://shorturl.fm/5a5GN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1502,160,'Serenity2951','Serenity2951@gmail.com','','38.188.98.10','2025-09-04 13:19:57','2025-09-04 13:19:57','<a href=\"https://shorturl.fm/pWdDu\" rel=\"nofollow ugc\">https://shorturl.fm/pWdDu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1503,1,'Simon3387','Simon3387@gmail.com','','171.228.186.98','2025-09-04 21:40:38','2025-09-04 21:40:38','<a href=\"https://shorturl.fm/E05FB\" rel=\"nofollow ugc\">https://shorturl.fm/E05FB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1504,160,'Alexis2845','Alexis2845@gmail.com','','171.228.186.98','2025-09-04 21:40:53','2025-09-04 21:40:53','<a href=\"https://shorturl.fm/Qhx2v\" rel=\"nofollow ugc\">https://shorturl.fm/Qhx2v</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1505,1,'Maria1329','Maria1329@gmail.com','','89.211.226.181','2025-09-05 17:46:39','2025-09-05 17:46:39','<a href=\"https://shorturl.fm/qWUYN\" rel=\"nofollow ugc\">https://shorturl.fm/qWUYN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1506,157,'Imelda614','Imelda614@gmail.com','','89.211.226.181','2025-09-05 17:46:54','2025-09-05 17:46:54','<a href=\"https://shorturl.fm/FIEXf\" rel=\"nofollow ugc\">https://shorturl.fm/FIEXf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1507,160,'Cara366','Cara366@gmail.com','','89.211.226.181','2025-09-05 17:47:14','2025-09-05 17:47:14','<a href=\"https://shorturl.fm/hHnt1\" rel=\"nofollow ugc\">https://shorturl.fm/hHnt1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1508,1,'Louis1072','Louis1072@gmail.com','','49.49.22.104','2025-09-06 02:41:50','2025-09-06 02:41:50','<a href=\"https://shorturl.fm/0G541\" rel=\"nofollow ugc\">https://shorturl.fm/0G541</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1509,1,'Colby612','Colby612@gmail.com','','116.100.250.40','2025-09-06 03:48:04','2025-09-06 03:48:04','<a href=\"https://shorturl.fm/IrdfL\" rel=\"nofollow ugc\">https://shorturl.fm/IrdfL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1510,1,'Abby4493','Abby4493@gmail.com','','223.205.26.60','2025-09-06 13:04:09','2025-09-06 13:04:09','<a href=\"https://shorturl.fm/vlKKd\" rel=\"nofollow ugc\">https://shorturl.fm/vlKKd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1511,1,'Henrietta933','Henrietta933@gmail.com','','123.22.179.63','2025-09-07 03:36:15','2025-09-07 03:36:15','<a href=\"https://shorturl.fm/wMYIU\" rel=\"nofollow ugc\">https://shorturl.fm/wMYIU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1512,1,'Payton4607','Payton4607@gmail.com','','176.126.103.194','2025-09-07 04:02:42','2025-09-07 04:02:42','<a href=\"https://shorturl.fm/5Iqfv\" rel=\"nofollow ugc\">https://shorturl.fm/5Iqfv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1513,1,'Hamilton2912','Hamilton2912@gmail.com','','122.129.65.28','2025-09-07 11:51:07','2025-09-07 11:51:07','<a href=\"https://shorturl.fm/INqvq\" rel=\"nofollow ugc\">https://shorturl.fm/INqvq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1514,1,'Brian2105','Brian2105@gmail.com','','49.228.171.185','2025-09-07 14:25:45','2025-09-07 14:25:45','<a href=\"https://shorturl.fm/7odz4\" rel=\"nofollow ugc\">https://shorturl.fm/7odz4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1515,158,'Leila4701','Leila4701@gmail.com','','49.228.171.185','2025-09-07 14:26:00','2025-09-07 14:26:00','<a href=\"https://shorturl.fm/9C3CJ\" rel=\"nofollow ugc\">https://shorturl.fm/9C3CJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1516,1,'Craig924','Craig924@gmail.com','','45.239.65.208','2025-09-07 23:19:35','2025-09-07 23:19:35','<a href=\"https://shorturl.fm/25J8J\" rel=\"nofollow ugc\">https://shorturl.fm/25J8J</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1517,1,'Luca4165','Luca4165@gmail.com','','39.63.56.238','2025-09-08 09:04:27','2025-09-08 09:04:27','<a href=\"https://shorturl.fm/cIV5P\" rel=\"nofollow ugc\">https://shorturl.fm/cIV5P</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1518,1,'Haiden3141','Haiden3141@gmail.com','','43.224.118.155','2025-09-09 12:22:13','2025-09-09 12:22:13','<a href=\"https://shorturl.fm/EVOCw\" rel=\"nofollow ugc\">https://shorturl.fm/EVOCw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1519,1,'Cole3043','Cole3043@gmail.com','','39.109.158.251','2025-09-09 14:25:26','2025-09-09 14:25:26','<a href=\"https://shorturl.fm/p99qs\" rel=\"nofollow ugc\">https://shorturl.fm/p99qs</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1520,1,'Cale1393','Cale1393@gmail.com','','97.116.2.41','2025-09-09 22:06:08','2025-09-09 22:06:08','<a href=\"https://shorturl.fm/b1mJL\" rel=\"nofollow ugc\">https://shorturl.fm/b1mJL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1521,1,'Cynthia2595','Cynthia2595@gmail.com','','27.79.224.29','2025-09-09 23:13:27','2025-09-09 23:13:27','<a href=\"https://shorturl.fm/4Mn5a\" rel=\"nofollow ugc\">https://shorturl.fm/4Mn5a</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1522,1,'Beth130','Beth130@gmail.com','','99.142.84.131','2025-09-10 02:58:06','2025-09-10 02:58:06','<a href=\"https://shorturl.fm/pFGPY\" rel=\"nofollow ugc\">https://shorturl.fm/pFGPY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1523,1,'Brandy2048','Brandy2048@gmail.com','','190.120.253.193','2025-09-10 03:14:53','2025-09-10 03:14:53','<a href=\"https://shorturl.fm/PPSGw\" rel=\"nofollow ugc\">https://shorturl.fm/PPSGw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1524,1,'Will4631','Will4631@gmail.com','','190.6.37.185','2025-09-10 04:49:30','2025-09-10 04:49:30','<a href=\"https://shorturl.fm/PPSGw\" rel=\"nofollow ugc\">https://shorturl.fm/PPSGw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1525,162,'Tony446','Tony446@gmail.com','','190.6.37.185','2025-09-10 04:49:45','2025-09-10 04:49:45','<a href=\"https://shorturl.fm/wLnK9\" rel=\"nofollow ugc\">https://shorturl.fm/wLnK9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1526,1,'Harvey3958','Harvey3958@gmail.com','','103.148.45.165','2025-09-10 20:52:57','2025-09-10 20:52:57','<a href=\"https://shorturl.fm/OGYge\" rel=\"nofollow ugc\">https://shorturl.fm/OGYge</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1527,1,'Clara492','Clara492@gmail.com','','189.203.7.201','2025-09-10 22:31:46','2025-09-10 22:31:46','<a href=\"https://shorturl.fm/zXoxu\" rel=\"nofollow ugc\">https://shorturl.fm/zXoxu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1528,1,'Edwin2975','Edwin2975@gmail.com','','49.43.180.43','2025-09-11 03:00:09','2025-09-11 03:00:09','<a href=\"https://shorturl.fm/byc60\" rel=\"nofollow ugc\">https://shorturl.fm/byc60</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1529,160,'Bailey4529','Bailey4529@gmail.com','','49.43.180.43','2025-09-11 03:00:24','2025-09-11 03:00:24','<a href=\"https://shorturl.fm/ftjq8\" rel=\"nofollow ugc\">https://shorturl.fm/ftjq8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1530,1,'Ivan2258','Ivan2258@gmail.com','','116.103.89.193','2025-09-11 10:50:21','2025-09-11 10:50:21','<a href=\"https://shorturl.fm/nac0H\" rel=\"nofollow ugc\">https://shorturl.fm/nac0H</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1531,162,'Daphne3299','Daphne3299@gmail.com','','116.103.89.193','2025-09-11 10:50:41','2025-09-11 10:50:41','<a href=\"https://shorturl.fm/tNj1w\" rel=\"nofollow ugc\">https://shorturl.fm/tNj1w</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1532,1,'Miriam3296','Miriam3296@gmail.com','','178.184.25.80','2025-09-11 11:09:59','2025-09-11 11:09:59','<a href=\"https://shorturl.fm/ZjGGk\" rel=\"nofollow ugc\">https://shorturl.fm/ZjGGk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1533,158,'Leo4561','Leo4561@gmail.com','','178.184.25.80','2025-09-11 11:10:19','2025-09-11 11:10:19','<a href=\"https://shorturl.fm/oIYMW\" rel=\"nofollow ugc\">https://shorturl.fm/oIYMW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1534,160,'Irene3673','Irene3673@gmail.com','','178.184.25.80','2025-09-11 11:10:35','2025-09-11 11:10:35','<a href=\"https://shorturl.fm/umbaK\" rel=\"nofollow ugc\">https://shorturl.fm/umbaK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1535,1,'Will1650','Will1650@gmail.com','','101.109.170.187','2025-09-11 22:58:06','2025-09-11 22:58:06','<a href=\"https://shorturl.fm/BSBWE\" rel=\"nofollow ugc\">https://shorturl.fm/BSBWE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1536,1,'Madelyn513','Madelyn513@gmail.com','','37.211.82.222','2025-09-12 13:16:09','2025-09-12 13:16:09','<a href=\"https://shorturl.fm/OEgcg\" rel=\"nofollow ugc\">https://shorturl.fm/OEgcg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1537,1,'Haven400','Haven400@gmail.com','','116.98.225.87','2025-09-13 00:05:39','2025-09-13 00:05:39','<a href=\"https://shorturl.fm/nytzn\" rel=\"nofollow ugc\">https://shorturl.fm/nytzn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1538,1,'Adria1246','Adria1246@gmail.com','','182.253.145.199','2025-09-13 02:46:14','2025-09-13 02:46:14','<a href=\"https://shorturl.fm/rDbIO\" rel=\"nofollow ugc\">https://shorturl.fm/rDbIO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1539,1,'Trevor4352','Trevor4352@gmail.com','','186.155.54.175','2025-09-13 03:33:11','2025-09-13 03:33:11','<a href=\"https://shorturl.fm/GAUm2\" rel=\"nofollow ugc\">https://shorturl.fm/GAUm2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1540,1,'Anthony599','Anthony599@gmail.com','','116.121.169.183','2025-09-14 06:17:13','2025-09-14 06:17:13','<a href=\"https://shorturl.fm/8U94h\" rel=\"nofollow ugc\">https://shorturl.fm/8U94h</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1541,1,'Stella2159','Stella2159@gmail.com','','49.49.43.72','2025-09-14 09:08:20','2025-09-14 09:08:20','<a href=\"https://shorturl.fm/Wz9gS\" rel=\"nofollow ugc\">https://shorturl.fm/Wz9gS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1542,1,'Ignacio1226','Ignacio1226@gmail.com','','88.172.118.187','2025-09-14 15:31:19','2025-09-14 15:31:19','<a href=\"https://shorturl.fm/GWKrC\" rel=\"nofollow ugc\">https://shorturl.fm/GWKrC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1543,1,'Freya2947','Freya2947@gmail.com','','73.227.169.210','2025-09-14 20:21:39','2025-09-14 20:21:39','<a href=\"https://shorturl.fm/yKqUS\" rel=\"nofollow ugc\">https://shorturl.fm/yKqUS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1544,1,'Gracie4243','Gracie4243@gmail.com','','103.162.61.221','2025-09-14 22:55:06','2025-09-14 22:55:06','<a href=\"https://shorturl.fm/WduOV\" rel=\"nofollow ugc\">https://shorturl.fm/WduOV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1545,1,'Elmer4951','Elmer4951@gmail.com','','115.72.3.147','2025-09-15 10:55:56','2025-09-15 10:55:56','<a href=\"https://shorturl.fm/f9oO7\" rel=\"nofollow ugc\">https://shorturl.fm/f9oO7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1546,160,'Jordyn4461','Jordyn4461@gmail.com','','115.72.3.147','2025-09-15 10:56:11','2025-09-15 10:56:11','<a href=\"https://shorturl.fm/LgI3j\" rel=\"nofollow ugc\">https://shorturl.fm/LgI3j</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1547,1,'Jack31','Jack31@gmail.com','','115.72.174.96','2025-09-15 16:37:45','2025-09-15 16:37:45','<a href=\"https://shorturl.fm/STplX\" rel=\"nofollow ugc\">https://shorturl.fm/STplX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1548,1,'Ruben1629','Ruben1629@gmail.com','','104.238.228.201','2025-09-15 23:16:16','2025-09-15 23:16:16','<a href=\"https://shorturl.fm/wNwLP\" rel=\"nofollow ugc\">https://shorturl.fm/wNwLP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1549,1,'Melinda2261','Melinda2261@gmail.com','','201.127.126.2','2025-09-16 01:16:09','2025-09-16 01:16:09','<a href=\"https://shorturl.fm/NWVZ3\" rel=\"nofollow ugc\">https://shorturl.fm/NWVZ3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1550,1,'Nathaniel2841','Nathaniel2841@gmail.com','','27.79.188.44','2025-09-16 05:12:51','2025-09-16 05:12:51','<a href=\"https://shorturl.fm/tIw3F\" rel=\"nofollow ugc\">https://shorturl.fm/tIw3F</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1551,163,'Daniella4572','Daniella4572@gmail.com','','27.79.188.44','2025-09-16 05:13:06','2025-09-16 05:13:06','<a href=\"https://shorturl.fm/OXO48\" rel=\"nofollow ugc\">https://shorturl.fm/OXO48</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1552,1,'Mateo2893','Mateo2893@gmail.com','','43.224.116.222','2025-09-16 13:21:37','2025-09-16 13:21:37','<a href=\"https://shorturl.fm/vplRL\" rel=\"nofollow ugc\">https://shorturl.fm/vplRL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1553,1,'Katherine2769','Katherine2769@gmail.com','','167.60.16.29','2025-09-16 23:10:49','2025-09-16 23:10:49','<a href=\"https://shorturl.fm/eoZOf\" rel=\"nofollow ugc\">https://shorturl.fm/eoZOf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1554,1,'Alec1182','Alec1182@gmail.com','','201.240.68.146','2025-09-16 23:40:18','2025-09-16 23:40:18','<a href=\"https://shorturl.fm/fFSpd\" rel=\"nofollow ugc\">https://shorturl.fm/fFSpd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1555,1,'Francisco4730','Francisco4730@gmail.com','','142.188.31.204','2025-09-17 01:16:41','2025-09-17 01:16:41','<a href=\"https://shorturl.fm/T5o4Q\" rel=\"nofollow ugc\">https://shorturl.fm/T5o4Q</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1556,163,'Kaitlyn243','Kaitlyn243@gmail.com','','142.188.31.204','2025-09-17 01:16:56','2025-09-17 01:16:56','<a href=\"https://shorturl.fm/f9FsU\" rel=\"nofollow ugc\">https://shorturl.fm/f9FsU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1557,1,'Molly3940','Molly3940@gmail.com','','171.5.39.1','2025-09-17 05:51:48','2025-09-17 05:51:48','<a href=\"https://shorturl.fm/QmGT1\" rel=\"nofollow ugc\">https://shorturl.fm/QmGT1</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1558,1,'Diana954','Diana954@gmail.com','','103.250.69.190','2025-09-17 13:43:02','2025-09-17 13:43:02','<a href=\"https://shorturl.fm/G7NjK\" rel=\"nofollow ugc\">https://shorturl.fm/G7NjK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1559,1,'April676','April676@gmail.com','','171.249.210.130','2025-09-17 22:53:03','2025-09-17 22:53:03','<a href=\"https://shorturl.fm/XiSdf\" rel=\"nofollow ugc\">https://shorturl.fm/XiSdf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1560,1,'Ray4586','Ray4586@gmail.com','','115.72.47.42','2025-09-18 05:06:42','2025-09-18 05:06:42','<a href=\"https://shorturl.fm/dpdyj\" rel=\"nofollow ugc\">https://shorturl.fm/dpdyj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1561,156,'Kathleen548','Kathleen548@gmail.com','','188.213.196.108','2025-09-18 09:01:36','2025-09-18 09:01:36','<a href=\"https://shorturl.fm/9yDXz\" rel=\"nofollow ugc\">https://shorturl.fm/9yDXz</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1562,160,'Millie4887','Millie4887@gmail.com','','188.213.196.108','2025-09-18 09:02:07','2025-09-18 09:02:07','<a href=\"https://shorturl.fm/xQgwh\" rel=\"nofollow ugc\">https://shorturl.fm/xQgwh</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1563,163,'Gracie1211','Gracie1211@gmail.com','','188.213.196.108','2025-09-18 09:02:27','2025-09-18 09:02:27','<a href=\"https://shorturl.fm/KhOxH\" rel=\"nofollow ugc\">https://shorturl.fm/KhOxH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1564,1,'Ana4860','Ana4860@gmail.com','','113.11.64.18','2025-09-18 12:40:40','2025-09-18 12:40:40','<a href=\"https://shorturl.fm/nwk4A\" rel=\"nofollow ugc\">https://shorturl.fm/nwk4A</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1565,1,'Alison3452','Alison3452@gmail.com','','208.87.243.199','2025-09-18 13:53:22','2025-09-18 13:53:22','<a href=\"https://shorturl.fm/QYmiZ\" rel=\"nofollow ugc\">https://shorturl.fm/QYmiZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1566,1,'Miley2794','Miley2794@gmail.com','','190.120.251.170','2025-09-18 17:28:53','2025-09-18 17:28:53','<a href=\"https://shorturl.fm/SN6Lb\" rel=\"nofollow ugc\">https://shorturl.fm/SN6Lb</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1567,163,'Alejandra1900','Alejandra1900@gmail.com','','190.120.251.170','2025-09-18 17:29:09','2025-09-18 17:29:09','<a href=\"https://shorturl.fm/c56ED\" rel=\"nofollow ugc\">https://shorturl.fm/c56ED</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1568,1,'Kiley2601','Kiley2601@gmail.com','','223.204.18.192','2025-09-19 12:08:10','2025-09-19 12:08:10','<a href=\"https://shorturl.fm/HNGkU\" rel=\"nofollow ugc\">https://shorturl.fm/HNGkU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1569,1,'Alison524','Alison524@gmail.com','','115.43.81.187','2025-09-19 12:46:34','2025-09-19 12:46:34','<a href=\"https://shorturl.fm/S1y60\" rel=\"nofollow ugc\">https://shorturl.fm/S1y60</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1570,158,'Marion1146','Marion1146@gmail.com','','115.43.81.187','2025-09-19 12:46:51','2025-09-19 12:46:51','<a href=\"https://shorturl.fm/nmcRL\" rel=\"nofollow ugc\">https://shorturl.fm/nmcRL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1571,1,'Abbie2890','Abbie2890@gmail.com','','191.195.121.118','2025-09-19 14:48:37','2025-09-19 14:48:37','<a href=\"https://shorturl.fm/sdLzF\" rel=\"nofollow ugc\">https://shorturl.fm/sdLzF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1572,162,'Kate4483','Kate4483@gmail.com','','191.195.121.118','2025-09-19 14:48:55','2025-09-19 14:48:55','<a href=\"https://shorturl.fm/jGF7r\" rel=\"nofollow ugc\">https://shorturl.fm/jGF7r</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1573,1,'Agnes2431','Agnes2431@gmail.com','','177.240.219.50','2025-09-20 02:26:29','2025-09-20 02:26:29','<a href=\"https://shorturl.fm/yHMQs\" rel=\"nofollow ugc\">https://shorturl.fm/yHMQs</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1574,1,'Clint4231','Clint4231@gmail.com','','189.164.151.147','2025-09-20 04:59:12','2025-09-20 04:59:12','<a href=\"https://shorturl.fm/qC6qW\" rel=\"nofollow ugc\">https://shorturl.fm/qC6qW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1575,1,'Dennis4989','Dennis4989@gmail.com','','123.21.3.120','2025-09-20 11:07:41','2025-09-20 11:07:41','<a href=\"https://shorturl.fm/qCxLT\" rel=\"nofollow ugc\">https://shorturl.fm/qCxLT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1576,162,'Asia1135','Asia1135@gmail.com','','123.21.3.120','2025-09-20 11:08:02','2025-09-20 11:08:02','<a href=\"https://shorturl.fm/qCxLT\" rel=\"nofollow ugc\">https://shorturl.fm/qCxLT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1577,1,'Johnny3548','Johnny3548@gmail.com','','171.240.1.67','2025-09-20 17:01:54','2025-09-20 17:01:54','<a href=\"https://shorturl.fm/PGAH3\" rel=\"nofollow ugc\">https://shorturl.fm/PGAH3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1578,161,'Wilson2936','Wilson2936@gmail.com','','171.240.1.67','2025-09-20 17:02:25','2025-09-20 17:02:25','<a href=\"https://shorturl.fm/6bTwm\" rel=\"nofollow ugc\">https://shorturl.fm/6bTwm</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1579,1,'Anthony1990','Anthony1990@gmail.com','','119.18.149.83','2025-09-21 18:01:26','2025-09-21 18:01:26','<a href=\"https://shorturl.fm/Pf2qj\" rel=\"nofollow ugc\">https://shorturl.fm/Pf2qj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1580,1,'Charlotte2351','Charlotte2351@gmail.com','','106.215.177.118','2025-09-21 19:12:47','2025-09-21 19:12:47','<a href=\"https://shorturl.fm/fPkbE\" rel=\"nofollow ugc\">https://shorturl.fm/fPkbE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1581,160,'Carey2343','Carey2343@gmail.com','','106.215.177.118','2025-09-21 19:13:04','2025-09-21 19:13:04','<a href=\"https://shorturl.fm/RKmG4\" rel=\"nofollow ugc\">https://shorturl.fm/RKmG4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1582,1,'Randy3880','Randy3880@gmail.com','','138.2.105.12','2025-09-22 00:32:36','2025-09-22 00:32:36','<a href=\"https://shorturl.fm/h7pCU\" rel=\"nofollow ugc\">https://shorturl.fm/h7pCU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1583,158,'Joe3300','Joe3300@gmail.com','','47.245.127.33','2025-09-22 00:32:42','2025-09-22 00:32:42','<a href=\"https://shorturl.fm/yY0yD\" rel=\"nofollow ugc\">https://shorturl.fm/yY0yD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1584,162,'Sheila3261','Sheila3261@gmail.com','','138.2.105.12','2025-09-22 00:32:57','2025-09-22 00:32:57','<a href=\"https://shorturl.fm/r1VUn\" rel=\"nofollow ugc\">https://shorturl.fm/r1VUn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1585,1,'Josue1060','Josue1060@gmail.com','','43.224.116.21','2025-09-22 01:14:55','2025-09-22 01:14:55','<a href=\"https://shorturl.fm/MpDg3\" rel=\"nofollow ugc\">https://shorturl.fm/MpDg3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1586,1,'Heather2299','Heather2299@gmail.com','','103.159.96.84','2025-09-22 04:43:10','2025-09-22 04:43:10','<a href=\"https://shorturl.fm/lGmJQ\" rel=\"nofollow ugc\">https://shorturl.fm/lGmJQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1587,1,'Margaret1715','Margaret1715@gmail.com','','123.112.246.81','2025-09-22 10:33:47','2025-09-22 10:33:47','<a href=\"https://shorturl.fm/96Xnn\" rel=\"nofollow ugc\">https://shorturl.fm/96Xnn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1588,157,'Ray2510','Ray2510@gmail.com','','149.86.142.204','2025-09-22 21:59:53','2025-09-22 21:59:53','<a href=\"https://shorturl.fm/X8hQV\" rel=\"nofollow ugc\">https://shorturl.fm/X8hQV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1589,161,'Jane2848','Jane2848@gmail.com','','149.86.142.204','2025-09-22 22:00:18','2025-09-22 22:00:18','<a href=\"https://shorturl.fm/zbLc9\" rel=\"nofollow ugc\">https://shorturl.fm/zbLc9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1590,156,'Juliana3677','Juliana3677@gmail.com','','179.53.36.86','2025-09-23 00:20:20','2025-09-23 00:20:20','<a href=\"https://shorturl.fm/25osT\" rel=\"nofollow ugc\">https://shorturl.fm/25osT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1591,1,'Brent612','Brent612@gmail.com','','182.8.194.109','2025-09-23 12:25:20','2025-09-23 12:25:20','<a href=\"https://shorturl.fm/SvHMB\" rel=\"nofollow ugc\">https://shorturl.fm/SvHMB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1592,1,'Coraline1811','Coraline1811@gmail.com','','91.161.191.23','2025-09-23 17:33:35','2025-09-23 17:33:35','<a href=\"https://shorturl.fm/v8YZo\" rel=\"nofollow ugc\">https://shorturl.fm/v8YZo</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1593,1,'Deirdre3','Deirdre3@gmail.com','','200.187.162.48','2025-09-23 18:20:41','2025-09-23 18:20:41','<a href=\"https://shorturl.fm/KPPQf\" rel=\"nofollow ugc\">https://shorturl.fm/KPPQf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1594,1,'Fernando1108','Fernando1108@gmail.com','','24.85.105.124','2025-09-24 02:37:37','2025-09-24 02:37:37','<a href=\"https://shorturl.fm/EqIud\" rel=\"nofollow ugc\">https://shorturl.fm/EqIud</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1595,1,'Kendra3430','Kendra3430@gmail.com','','91.175.54.209','2025-09-24 02:38:49','2025-09-24 02:38:49','<a href=\"https://shorturl.fm/wfYqC\" rel=\"nofollow ugc\">https://shorturl.fm/wfYqC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1596,1,'Alistair2017','Alistair2017@gmail.com','','118.194.235.38','2025-09-24 02:47:00','2025-09-24 02:47:00','<a href=\"https://shorturl.fm/wfYqC\" rel=\"nofollow ugc\">https://shorturl.fm/wfYqC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1597,156,'Chris2845','Chris2845@gmail.com','','165.154.29.204','2025-09-24 02:47:05','2025-09-24 02:47:05','<a href=\"https://shorturl.fm/7tP9A\" rel=\"nofollow ugc\">https://shorturl.fm/7tP9A</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1598,157,'Heath4039','Heath4039@gmail.com','','118.26.111.219','2025-09-24 02:47:09','2025-09-24 02:47:09','<a href=\"https://shorturl.fm/7ncXj\" rel=\"nofollow ugc\">https://shorturl.fm/7ncXj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1599,159,'Danny787','Danny787@gmail.com','','165.154.147.135','2025-09-24 02:47:12','2025-09-24 02:47:12','<a href=\"https://shorturl.fm/ddRrB\" rel=\"nofollow ugc\">https://shorturl.fm/ddRrB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1600,160,'Mae4427','Mae4427@gmail.com','','165.154.147.176','2025-09-24 02:47:14','2025-09-24 02:47:14','<a href=\"https://shorturl.fm/tsgkj\" rel=\"nofollow ugc\">https://shorturl.fm/tsgkj</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1601,162,'Susan4627','Susan4627@gmail.com','','118.26.111.246','2025-09-24 02:47:27','2025-09-24 02:47:27','<a href=\"https://shorturl.fm/YRCD4\" rel=\"nofollow ugc\">https://shorturl.fm/YRCD4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1602,163,'Jacqueline4862','Jacqueline4862@gmail.com','','165.154.29.204','2025-09-24 02:47:28','2025-09-24 02:47:28','<a href=\"https://shorturl.fm/Ii3mt\" rel=\"nofollow ugc\">https://shorturl.fm/Ii3mt</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1603,1,'Tara4072','Tara4072@gmail.com','','116.98.224.101','2025-09-24 04:52:29','2025-09-24 04:52:29','<a href=\"https://shorturl.fm/JMeHT\" rel=\"nofollow ugc\">https://shorturl.fm/JMeHT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1604,1,'Avery2868','Avery2868@gmail.com','','27.74.25.56','2025-09-24 14:20:32','2025-09-24 14:20:32','<a href=\"https://shorturl.fm/Us5GM\" rel=\"nofollow ugc\">https://shorturl.fm/Us5GM</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1605,1,'Deirdre2588','Deirdre2588@gmail.com','','202.5.57.46','2025-09-24 15:45:12','2025-09-24 15:45:12','<a href=\"https://shorturl.fm/T3tjW\" rel=\"nofollow ugc\">https://shorturl.fm/T3tjW</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1606,1,'Teresa4848','Teresa4848@gmail.com','','181.42.18.17','2025-09-24 17:16:25','2025-09-24 17:16:25','<a href=\"https://shorturl.fm/l0d7b\" rel=\"nofollow ugc\">https://shorturl.fm/l0d7b</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1607,1,'Neal2411','Neal2411@gmail.com','','202.5.60.148','2025-09-25 02:04:35','2025-09-25 02:04:35','<a href=\"https://shorturl.fm/zl7d3\" rel=\"nofollow ugc\">https://shorturl.fm/zl7d3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1608,160,'Kira1011','Kira1011@gmail.com','','202.5.60.148','2025-09-25 02:04:50','2025-09-25 02:04:50','<a href=\"https://shorturl.fm/NuQ9m\" rel=\"nofollow ugc\">https://shorturl.fm/NuQ9m</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1609,1,'Sergio2770','Sergio2770@gmail.com','','187.189.0.141','2025-09-25 15:32:48','2025-09-25 15:32:48','<a href=\"https://shorturl.fm/V1b9R\" rel=\"nofollow ugc\">https://shorturl.fm/V1b9R</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1610,1,'Harlan2601','Harlan2601@gmail.com','','189.168.204.188','2025-09-25 17:27:07','2025-09-25 17:27:07','<a href=\"https://shorturl.fm/eY2d7\" rel=\"nofollow ugc\">https://shorturl.fm/eY2d7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1611,159,'Aisha2392','Aisha2392@gmail.com','','189.168.204.188','2025-09-25 17:27:31','2025-09-25 17:27:31','<a href=\"https://shorturl.fm/bdBYN\" rel=\"nofollow ugc\">https://shorturl.fm/bdBYN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1612,162,'Jonas2820','Jonas2820@gmail.com','','189.168.204.188','2025-09-25 17:27:50','2025-09-25 17:27:50','<a href=\"https://shorturl.fm/w0vQ3\" rel=\"nofollow ugc\">https://shorturl.fm/w0vQ3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1613,1,'Charlotte1725','Charlotte1725@gmail.com','','5.62.145.21','2025-09-26 10:41:15','2025-09-26 10:41:15','<a href=\"https://shorturl.fm/chf4E\" rel=\"nofollow ugc\">https://shorturl.fm/chf4E</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1614,1,'Carlos4786','Carlos4786@gmail.com','','87.201.164.31','2025-09-26 11:03:39','2025-09-26 11:03:39','<a href=\"https://shorturl.fm/kB1sU\" rel=\"nofollow ugc\">https://shorturl.fm/kB1sU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1615,1,'Brock4244','Brock4244@gmail.com','','179.38.182.49','2025-09-26 15:35:33','2025-09-26 15:35:33','<a href=\"https://shorturl.fm/UhbC7\" rel=\"nofollow ugc\">https://shorturl.fm/UhbC7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1616,1,'Julius150','Julius150@gmail.com','','178.44.171.144','2025-09-27 10:06:17','2025-09-27 10:06:17','<a href=\"https://shorturl.fm/qYhO4\" rel=\"nofollow ugc\">https://shorturl.fm/qYhO4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1617,1,'Gabriel1213','Gabriel1213@gmail.com','','176.117.104.24','2025-09-27 19:52:43','2025-09-27 19:52:43','<a href=\"https://shorturl.fm/vtcQx\" rel=\"nofollow ugc\">https://shorturl.fm/vtcQx</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1618,161,'Mallory2774','Mallory2774@gmail.com','','176.117.104.24','2025-09-27 19:53:00','2025-09-27 19:53:00','<a href=\"https://shorturl.fm/ZCFjF\" rel=\"nofollow ugc\">https://shorturl.fm/ZCFjF</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1619,1,'Dillon4623','Dillon4623@gmail.com','','171.252.195.186','2025-09-27 21:44:15','2025-09-27 21:44:15','<a href=\"https://shorturl.fm/YViAr\" rel=\"nofollow ugc\">https://shorturl.fm/YViAr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1620,162,'Harvey1159','Harvey1159@gmail.com','','171.252.195.186','2025-09-27 21:44:32','2025-09-27 21:44:32','<a href=\"https://shorturl.fm/XPn2Z\" rel=\"nofollow ugc\">https://shorturl.fm/XPn2Z</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1621,1,'Marina4715','Marina4715@gmail.com','','49.49.142.39','2025-09-28 05:01:10','2025-09-28 05:01:10','<a href=\"https://shorturl.fm/Ov7NP\" rel=\"nofollow ugc\">https://shorturl.fm/Ov7NP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1622,1,'Jeffrey3099','Jeffrey3099@gmail.com','','186.81.100.50','2025-09-28 05:51:57','2025-09-28 05:51:57','<a href=\"https://shorturl.fm/igvrE\" rel=\"nofollow ugc\">https://shorturl.fm/igvrE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1623,160,'Leland719','Leland719@gmail.com','','186.81.100.50','2025-09-28 05:52:14','2025-09-28 05:52:14','<a href=\"https://shorturl.fm/eVjRD\" rel=\"nofollow ugc\">https://shorturl.fm/eVjRD</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1624,1,'Paige4289','Paige4289@gmail.com','','14.226.239.169','2025-09-28 13:05:05','2025-09-28 13:05:05','<a href=\"https://shorturl.fm/qIrdG\" rel=\"nofollow ugc\">https://shorturl.fm/qIrdG</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1625,1,'Shane359','Shane359@gmail.com','','61.92.165.2','2025-09-29 02:51:59','2025-09-29 02:51:59','<a href=\"https://shorturl.fm/F1jiM\" rel=\"nofollow ugc\">https://shorturl.fm/F1jiM</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1626,1,'Karl3844','Karl3844@gmail.com','','124.217.42.223','2025-09-29 07:57:56','2025-09-29 07:57:56','<a href=\"https://shorturl.fm/MhIgw\" rel=\"nofollow ugc\">https://shorturl.fm/MhIgw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1627,1,'Lola4013','Lola4013@gmail.com','','43.130.101.71','2025-09-29 12:55:07','2025-09-29 12:55:07','<a href=\"https://shorturl.fm/OaxEV\" rel=\"nofollow ugc\">https://shorturl.fm/OaxEV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1628,1,'Lydia2896','Lydia2896@gmail.com','','38.137.58.44','2025-09-29 20:36:37','2025-09-29 20:36:37','<a href=\"https://shorturl.fm/rhKmv\" rel=\"nofollow ugc\">https://shorturl.fm/rhKmv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1629,163,'Ricardo4844','Ricardo4844@gmail.com','','38.137.58.44','2025-09-29 20:36:53','2025-09-29 20:36:53','<a href=\"https://shorturl.fm/cNuNp\" rel=\"nofollow ugc\">https://shorturl.fm/cNuNp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1630,1,'Randy3789','Randy3789@gmail.com','','202.5.46.86','2025-09-29 22:29:13','2025-09-29 22:29:13','<a href=\"https://shorturl.fm/QWJaK\" rel=\"nofollow ugc\">https://shorturl.fm/QWJaK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1631,1,'Rex4215','Rex4215@gmail.com','','113.23.55.221','2025-09-30 09:44:31','2025-09-30 09:44:31','<a href=\"https://shorturl.fm/cb0sJ\" rel=\"nofollow ugc\">https://shorturl.fm/cb0sJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1632,1,'Leona2515','Leona2515@gmail.com','','37.231.218.105','2025-09-30 22:01:05','2025-09-30 22:01:05','<a href=\"https://shorturl.fm/YhMmT\" rel=\"nofollow ugc\">https://shorturl.fm/YhMmT</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1633,159,'Britney1075','Britney1075@gmail.com','','37.231.218.105','2025-09-30 22:01:31','2025-09-30 22:01:31','<a href=\"https://shorturl.fm/P3NSJ\" rel=\"nofollow ugc\">https://shorturl.fm/P3NSJ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1634,161,'Krista887','Krista887@gmail.com','','37.231.218.105','2025-09-30 22:01:47','2025-09-30 22:01:47','<a href=\"https://shorturl.fm/3iCUn\" rel=\"nofollow ugc\">https://shorturl.fm/3iCUn</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1635,1,'George2898','George2898@gmail.com','','182.253.57.141','2025-10-01 03:03:38','2025-10-01 03:03:38','<a href=\"https://shorturl.fm/6BGN4\" rel=\"nofollow ugc\">https://shorturl.fm/6BGN4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1636,160,'Donna4941','Donna4941@gmail.com','','182.253.57.141','2025-10-01 03:03:54','2025-10-01 03:03:54','<a href=\"https://shorturl.fm/CT8Dr\" rel=\"nofollow ugc\">https://shorturl.fm/CT8Dr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1637,1,'Cooper4139','Cooper4139@gmail.com','','35.212.196.243','2025-10-01 04:47:10','2025-10-01 04:47:10','<a href=\"https://shorturl.fm/8Qq2x\" rel=\"nofollow ugc\">https://shorturl.fm/8Qq2x</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1638,1,'Sylvia767','Sylvia767@gmail.com','','94.99.43.63','2025-10-01 20:23:43','2025-10-01 20:23:43','<a href=\"https://shorturl.fm/lfzAH\" rel=\"nofollow ugc\">https://shorturl.fm/lfzAH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1639,1,'Cayden3653','Cayden3653@gmail.com','','103.196.79.99','2025-10-01 20:25:03','2025-10-01 20:25:03','<a href=\"https://shorturl.fm/fEmTE\" rel=\"nofollow ugc\">https://shorturl.fm/fEmTE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1640,159,'Frances2955','Frances2955@gmail.com','','103.196.79.99','2025-10-01 20:25:18','2025-10-01 20:25:18','<a href=\"https://shorturl.fm/4XMbZ\" rel=\"nofollow ugc\">https://shorturl.fm/4XMbZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1641,1,'Amber3962','Amber3962@gmail.com','','115.72.44.122','2025-10-01 21:02:48','2025-10-01 21:02:48','<a href=\"https://shorturl.fm/lfzAH\" rel=\"nofollow ugc\">https://shorturl.fm/lfzAH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1642,1,'Dwight3246','Dwight3246@gmail.com','','91.103.120.49','2025-10-02 13:44:05','2025-10-02 13:44:05','<a href=\"https://shorturl.fm/KdR1o\" rel=\"nofollow ugc\">https://shorturl.fm/KdR1o</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1643,161,'Clyde315','Clyde315@gmail.com','','91.103.120.49','2025-10-02 13:44:22','2025-10-02 13:44:22','<a href=\"https://shorturl.fm/QDfl5\" rel=\"nofollow ugc\">https://shorturl.fm/QDfl5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1644,1,'Desirae4070','Desirae4070@gmail.com','','190.216.227.19','2025-10-02 19:27:46','2025-10-02 19:27:46','<a href=\"https://shorturl.fm/2o6HN\" rel=\"nofollow ugc\">https://shorturl.fm/2o6HN</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1645,158,'Bryan4558','Bryan4558@gmail.com','','190.216.227.19','2025-10-02 19:28:02','2025-10-02 19:28:02','<a href=\"https://shorturl.fm/FL6di\" rel=\"nofollow ugc\">https://shorturl.fm/FL6di</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1646,162,'Marilyn1468','Marilyn1468@gmail.com','','190.216.227.19','2025-10-02 19:28:23','2025-10-02 19:28:23','<a href=\"https://shorturl.fm/YTQ0Y\" rel=\"nofollow ugc\">https://shorturl.fm/YTQ0Y</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1647,1,'Eduardo2769','Eduardo2769@gmail.com','','36.83.84.237','2025-10-02 20:35:53','2025-10-02 20:35:53','<a href=\"https://shorturl.fm/tUdJr\" rel=\"nofollow ugc\">https://shorturl.fm/tUdJr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1648,160,'Adelyn2350','Adelyn2350@gmail.com','','36.83.84.237','2025-10-02 20:36:09','2025-10-02 20:36:09','<a href=\"https://shorturl.fm/Qcnt8\" rel=\"nofollow ugc\">https://shorturl.fm/Qcnt8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1649,1,'Lane1889','Lane1889@gmail.com','','116.98.191.176','2025-10-02 22:13:36','2025-10-02 22:13:36','<a href=\"https://shorturl.fm/tUdJr\" rel=\"nofollow ugc\">https://shorturl.fm/tUdJr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1650,1,'Tomas652','Tomas652@gmail.com','','223.205.201.248','2025-10-03 00:07:04','2025-10-03 00:07:04','<a href=\"https://shorturl.fm/GIMU7\" rel=\"nofollow ugc\">https://shorturl.fm/GIMU7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1651,1,'Amber1532','Amber1532@gmail.com','','125.164.213.222','2025-10-03 01:41:01','2025-10-03 01:41:01','<a href=\"https://shorturl.fm/VIZZ8\" rel=\"nofollow ugc\">https://shorturl.fm/VIZZ8</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1652,159,'Aileen2015','Aileen2015@gmail.com','','125.164.213.222','2025-10-03 01:41:21','2025-10-03 01:41:21','<a href=\"https://shorturl.fm/3MhJi\" rel=\"nofollow ugc\">https://shorturl.fm/3MhJi</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1653,1,'Howard603','Howard603@gmail.com','','103.49.202.229','2025-10-03 03:05:41','2025-10-03 03:05:41','<a href=\"https://shorturl.fm/ODiOS\" rel=\"nofollow ugc\">https://shorturl.fm/ODiOS</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1654,160,'Angelina2903','Angelina2903@gmail.com','','103.49.202.229','2025-10-03 03:05:57','2025-10-03 03:05:57','<a href=\"https://shorturl.fm/GYY3S\" rel=\"nofollow ugc\">https://shorturl.fm/GYY3S</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1655,1,'Atticus2023','Atticus2023@gmail.com','','163.223.112.35','2025-10-03 11:13:53','2025-10-03 11:13:53','<a href=\"https://shorturl.fm/AksZP\" rel=\"nofollow ugc\">https://shorturl.fm/AksZP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1656,1,'Douglas3235','Douglas3235@gmail.com','','159.223.60.182','2025-10-03 22:41:19','2025-10-03 22:41:19','<a href=\"https://shorturl.fm/HW6w3\" rel=\"nofollow ugc\">https://shorturl.fm/HW6w3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1657,1,'Leanne624','Leanne624@gmail.com','','103.208.231.133','2025-10-04 03:55:41','2025-10-04 03:55:41','<a href=\"https://shorturl.fm/LgSHL\" rel=\"nofollow ugc\">https://shorturl.fm/LgSHL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1658,159,'Brielle2783','Brielle2783@gmail.com','','103.208.231.133','2025-10-04 03:55:58','2025-10-04 03:55:58','<a href=\"https://shorturl.fm/6rrPl\" rel=\"nofollow ugc\">https://shorturl.fm/6rrPl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1659,161,'Beatrice4163','Beatrice4163@gmail.com','','103.208.231.133','2025-10-04 03:56:15','2025-10-04 03:56:15','<a href=\"https://shorturl.fm/M4tam\" rel=\"nofollow ugc\">https://shorturl.fm/M4tam</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1660,1,'Caroline2362','Caroline2362@gmail.com','','103.104.87.153','2025-10-04 12:37:55','2025-10-04 12:37:55','<a href=\"https://shorturl.fm/TLH54\" rel=\"nofollow ugc\">https://shorturl.fm/TLH54</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1661,161,'Jacob1165','Jacob1165@gmail.com','','103.104.87.153','2025-10-04 12:38:12','2025-10-04 12:38:12','<a href=\"https://shorturl.fm/xoxfC\" rel=\"nofollow ugc\">https://shorturl.fm/xoxfC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1662,157,'Norman1868','Norman1868@gmail.com','','103.10.194.197','2025-10-04 15:33:38','2025-10-04 15:33:38','<a href=\"https://shorturl.fm/4nVc5\" rel=\"nofollow ugc\">https://shorturl.fm/4nVc5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1663,159,'Lewis3993','Lewis3993@gmail.com','','103.10.194.197','2025-10-04 15:33:58','2025-10-04 15:33:58','<a href=\"https://shorturl.fm/XKVnp\" rel=\"nofollow ugc\">https://shorturl.fm/XKVnp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1664,1,'Wade502','Wade502@gmail.com','','108.56.217.82','2025-10-04 15:57:23','2025-10-04 15:57:23','<a href=\"https://shorturl.fm/3yeza\" rel=\"nofollow ugc\">https://shorturl.fm/3yeza</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1665,1,'Brooke2668','Brooke2668@gmail.com','','27.57.98.6','2025-10-05 15:40:05','2025-10-05 15:40:05','<a href=\"https://shorturl.fm/y361V\" rel=\"nofollow ugc\">https://shorturl.fm/y361V</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1666,160,'Kane2420','Kane2420@gmail.com','','27.57.98.6','2025-10-05 15:40:20','2025-10-05 15:40:20','<a href=\"https://shorturl.fm/t5iw3\" rel=\"nofollow ugc\">https://shorturl.fm/t5iw3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1667,1,'Caroline3113','Caroline3113@gmail.com','','61.238.192.171','2025-10-06 00:24:57','2025-10-06 00:24:57','<a href=\"https://shorturl.fm/1kKyd\" rel=\"nofollow ugc\">https://shorturl.fm/1kKyd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1668,158,'Anna846','Anna846@gmail.com','','61.238.192.171','2025-10-06 00:25:12','2025-10-06 00:25:12','<a href=\"https://shorturl.fm/bqtiH\" rel=\"nofollow ugc\">https://shorturl.fm/bqtiH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1669,161,'Shane4198','Shane4198@gmail.com','','61.238.192.171','2025-10-06 00:25:31','2025-10-06 00:25:31','<a href=\"https://shorturl.fm/WU7O6\" rel=\"nofollow ugc\">https://shorturl.fm/WU7O6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1670,1,'Hilda4191','Hilda4191@gmail.com','','133.200.31.37','2025-10-06 02:14:48','2025-10-06 02:14:48','<a href=\"https://shorturl.fm/nQUBQ\" rel=\"nofollow ugc\">https://shorturl.fm/nQUBQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1671,163,'Bryant1386','Bryant1386@gmail.com','','133.200.31.37','2025-10-06 02:15:04','2025-10-06 02:15:04','<a href=\"https://shorturl.fm/UrtPX\" rel=\"nofollow ugc\">https://shorturl.fm/UrtPX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1672,1,'Chuck3060','Chuck3060@gmail.com','','1.20.169.142','2025-10-06 12:37:27','2025-10-06 12:37:27','<a href=\"https://shorturl.fm/TnbNE\" rel=\"nofollow ugc\">https://shorturl.fm/TnbNE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1673,1,'Fallon3494','Fallon3494@gmail.com','','94.205.169.84','2025-10-06 21:27:52','2025-10-06 21:27:52','<a href=\"https://shorturl.fm/9QiUQ\" rel=\"nofollow ugc\">https://shorturl.fm/9QiUQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1674,1,'Drew2309','Drew2309@gmail.com','','42.113.54.1','2025-10-06 22:51:03','2025-10-06 22:51:03','<a href=\"https://shorturl.fm/qePjQ\" rel=\"nofollow ugc\">https://shorturl.fm/qePjQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1675,1,'Josh2632','Josh2632@gmail.com','','36.233.238.224','2025-10-06 23:20:35','2025-10-06 23:20:35','<a href=\"https://shorturl.fm/gHMgH\" rel=\"nofollow ugc\">https://shorturl.fm/gHMgH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1676,159,'Nova3964','Nova3964@gmail.com','','36.233.238.224','2025-10-06 23:20:50','2025-10-06 23:20:50','<a href=\"https://shorturl.fm/68z9f\" rel=\"nofollow ugc\">https://shorturl.fm/68z9f</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1677,163,'Loren3829','Loren3829@gmail.com','','36.233.238.224','2025-10-06 23:21:06','2025-10-06 23:21:06','<a href=\"https://shorturl.fm/hyCh4\" rel=\"nofollow ugc\">https://shorturl.fm/hyCh4</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1678,1,'August702','August702@gmail.com','','110.159.244.218','2025-10-07 05:35:30','2025-10-07 05:35:30','<a href=\"https://shorturl.fm/tCK6b\" rel=\"nofollow ugc\">https://shorturl.fm/tCK6b</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1679,156,'Bethany3496','Bethany3496@gmail.com','','110.159.244.216','2025-10-07 05:35:33','2025-10-07 05:35:33','<a href=\"https://shorturl.fm/7lUtA\" rel=\"nofollow ugc\">https://shorturl.fm/7lUtA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1680,157,'Cameron807','Cameron807@gmail.com','','110.159.244.217','2025-10-07 05:35:35','2025-10-07 05:35:35','<a href=\"https://shorturl.fm/96bQ7\" rel=\"nofollow ugc\">https://shorturl.fm/96bQ7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1681,158,'Luke698','Luke698@gmail.com','','110.159.244.219','2025-10-07 05:35:37','2025-10-07 05:35:37','<a href=\"https://shorturl.fm/UXEmg\" rel=\"nofollow ugc\">https://shorturl.fm/UXEmg</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1682,160,'Maxwell4511','Maxwell4511@gmail.com','','110.159.244.220','2025-10-07 05:35:42','2025-10-07 05:35:42','<a href=\"https://shorturl.fm/tCK6b\" rel=\"nofollow ugc\">https://shorturl.fm/tCK6b</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1683,163,'Chuck2763','Chuck2763@gmail.com','','110.159.244.222','2025-10-07 05:35:47','2025-10-07 05:35:47','<a href=\"https://shorturl.fm/Ipogu\" rel=\"nofollow ugc\">https://shorturl.fm/Ipogu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1684,157,'Estelle3276','Estelle3276@gmail.com','','213.74.191.35','2025-10-07 08:23:49','2025-10-07 08:23:49','<a href=\"https://shorturl.fm/09A7O\" rel=\"nofollow ugc\">https://shorturl.fm/09A7O</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1685,160,'Bianca3085','Bianca3085@gmail.com','','213.74.191.35','2025-10-07 08:24:05','2025-10-07 08:24:05','<a href=\"https://shorturl.fm/ATORl\" rel=\"nofollow ugc\">https://shorturl.fm/ATORl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1686,162,'Giovanni586','Giovanni586@gmail.com','','213.74.191.35','2025-10-07 08:24:24','2025-10-07 08:24:24','<a href=\"https://shorturl.fm/yR9Hu\" rel=\"nofollow ugc\">https://shorturl.fm/yR9Hu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1687,1,'Sam553','Sam553@gmail.com','','190.235.147.153','2025-10-07 16:22:21','2025-10-07 16:22:21','<a href=\"https://shorturl.fm/8ETBp\" rel=\"nofollow ugc\">https://shorturl.fm/8ETBp</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1688,163,'Lynda777','Lynda777@gmail.com','','190.235.147.153','2025-10-07 16:22:36','2025-10-07 16:22:36','<a href=\"https://shorturl.fm/eDiv9\" rel=\"nofollow ugc\">https://shorturl.fm/eDiv9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1689,1,'Isabella4706','Isabella4706@gmail.com','','49.48.147.223','2025-10-07 18:23:06','2025-10-07 18:23:06','<a href=\"https://shorturl.fm/dak0C\" rel=\"nofollow ugc\">https://shorturl.fm/dak0C</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1690,1,'Jesse2045','Jesse2045@gmail.com','','184.82.35.191','2025-10-07 19:50:43','2025-10-07 19:50:43','<a href=\"https://shorturl.fm/7472E\" rel=\"nofollow ugc\">https://shorturl.fm/7472E</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1691,1,'Zachary1031','Zachary1031@gmail.com','','45.81.226.233','2025-10-08 13:07:03','2025-10-08 13:07:03','<a href=\"https://shorturl.fm/WqHhl\" rel=\"nofollow ugc\">https://shorturl.fm/WqHhl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1692,1,'Caitlin663','Caitlin663@gmail.com','','43.163.85.187','2025-10-08 16:50:57','2025-10-08 16:50:57','<a href=\"https://shorturl.fm/Ug3mx\" rel=\"nofollow ugc\">https://shorturl.fm/Ug3mx</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1693,158,'Kevin4798','Kevin4798@gmail.com','','43.163.85.187','2025-10-08 16:51:12','2025-10-08 16:51:12','<a href=\"https://shorturl.fm/eZzOP\" rel=\"nofollow ugc\">https://shorturl.fm/eZzOP</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1694,163,'Dora1080','Dora1080@gmail.com','','43.163.85.187','2025-10-08 16:51:29','2025-10-08 16:51:29','<a href=\"https://shorturl.fm/7tnHf\" rel=\"nofollow ugc\">https://shorturl.fm/7tnHf</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1695,1,'Hugo2744','Hugo2744@gmail.com','','191.195.81.88','2025-10-08 19:53:34','2025-10-08 19:53:34','<a href=\"https://shorturl.fm/ghozr\" rel=\"nofollow ugc\">https://shorturl.fm/ghozr</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1696,1,'Elliot577','Elliot577@gmail.com','','175.137.164.223','2025-10-09 10:01:57','2025-10-09 10:01:57','<a href=\"https://shorturl.fm/QywY6\" rel=\"nofollow ugc\">https://shorturl.fm/QywY6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1697,162,'Shawn4998','Shawn4998@gmail.com','','175.137.164.223','2025-10-09 10:02:12','2025-10-09 10:02:12','<a href=\"https://shorturl.fm/ZDCdO\" rel=\"nofollow ugc\">https://shorturl.fm/ZDCdO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1698,1,'Jorge168','Jorge168@gmail.com','','108.48.7.162','2025-10-09 19:32:03','2025-10-09 19:32:03','<a href=\"https://shorturl.fm/j5VOH\" rel=\"nofollow ugc\">https://shorturl.fm/j5VOH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1699,1,'Isla1848','Isla1848@gmail.com','','198.54.123.134','2025-10-09 20:45:20','2025-10-09 20:45:20','<a href=\"https://shorturl.fm/2lCY2\" rel=\"nofollow ugc\">https://shorturl.fm/2lCY2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1700,1,'Lyla2815','Lyla2815@gmail.com','','23.16.253.27','2025-10-09 21:14:10','2025-10-09 21:14:10','<a href=\"https://shorturl.fm/dS0nY\" rel=\"nofollow ugc\">https://shorturl.fm/dS0nY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1701,1,'Lila2255','Lila2255@gmail.com','','189.178.67.6','2025-10-10 05:04:44','2025-10-10 05:04:44','<a href=\"https://shorturl.fm/fknOI\" rel=\"nofollow ugc\">https://shorturl.fm/fknOI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1702,163,'Martha1865','Martha1865@gmail.com','','189.178.67.6','2025-10-10 05:04:59','2025-10-10 05:04:59','<a href=\"https://shorturl.fm/JKyiM\" rel=\"nofollow ugc\">https://shorturl.fm/JKyiM</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1703,1,'Ramona1328','Ramona1328@gmail.com','','115.72.168.136','2025-10-10 06:48:37','2025-10-10 06:48:37','<a href=\"https://shorturl.fm/kaXl7\" rel=\"nofollow ugc\">https://shorturl.fm/kaXl7</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1704,1,'Betsy2816','Betsy2816@gmail.com','','184.82.139.46','2025-10-11 00:25:16','2025-10-11 00:25:16','<a href=\"https://shorturl.fm/Va97s\" rel=\"nofollow ugc\">https://shorturl.fm/Va97s</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1705,1,'Kourtney4211','Kourtney4211@gmail.com','','118.174.121.89','2025-10-11 05:28:25','2025-10-11 05:28:25','<a href=\"https://shorturl.fm/5MOsC\" rel=\"nofollow ugc\">https://shorturl.fm/5MOsC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1706,1,'Joyce4614','Joyce4614@gmail.com','','91.193.6.169','2025-10-11 05:42:45','2025-10-11 05:42:45','<a href=\"https://shorturl.fm/8tvtV\" rel=\"nofollow ugc\">https://shorturl.fm/8tvtV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1707,161,'Carson2328','Carson2328@gmail.com','','91.193.6.169','2025-10-11 05:43:00','2025-10-11 05:43:00','<a href=\"https://shorturl.fm/jx3Uy\" rel=\"nofollow ugc\">https://shorturl.fm/jx3Uy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1708,1,'Kelly1228','Kelly1228@gmail.com','','116.105.165.246','2025-10-11 10:46:12','2025-10-11 10:46:12','<a href=\"https://shorturl.fm/1y9bK\" rel=\"nofollow ugc\">https://shorturl.fm/1y9bK</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1709,163,'Abbie3405','Abbie3405@gmail.com','','116.105.165.246','2025-10-11 10:46:27','2025-10-11 10:46:27','<a href=\"https://shorturl.fm/ye8SB\" rel=\"nofollow ugc\">https://shorturl.fm/ye8SB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1710,157,'Chandler955','Chandler955@gmail.com','','223.204.165.5','2025-10-11 18:53:03','2025-10-11 18:53:03','<a href=\"https://shorturl.fm/nWyGO\" rel=\"nofollow ugc\">https://shorturl.fm/nWyGO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1711,159,'Denise18','Denise18@gmail.com','','223.204.165.5','2025-10-11 18:53:18','2025-10-11 18:53:18','<a href=\"https://shorturl.fm/nWyGO\" rel=\"nofollow ugc\">https://shorturl.fm/nWyGO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1712,1,'Paisley4315','Paisley4315@gmail.com','','115.72.46.92','2025-10-12 07:01:09','2025-10-12 07:01:09','<a href=\"https://shorturl.fm/UnGkc\" rel=\"nofollow ugc\">https://shorturl.fm/UnGkc</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1713,1,'Aiden2858','Aiden2858@gmail.com','','106.14.210.2','2025-10-12 09:41:45','2025-10-12 09:41:45','<a href=\"https://shorturl.fm/adL41\" rel=\"nofollow ugc\">https://shorturl.fm/adL41</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1714,1,'Dwight4359','Dwight4359@gmail.com','','135.0.163.111','2025-10-12 20:45:43','2025-10-12 20:45:43','<a href=\"https://shorturl.fm/KxqJZ\" rel=\"nofollow ugc\">https://shorturl.fm/KxqJZ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1715,1,'Isabelle4846','Isabelle4846@gmail.com','','103.35.212.139','2025-10-13 03:07:01','2025-10-13 03:07:01','<a href=\"https://shorturl.fm/pUusk\" rel=\"nofollow ugc\">https://shorturl.fm/pUusk</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1716,158,'Adrian3076','Adrian3076@gmail.com','','103.35.212.139','2025-10-13 03:07:28','2025-10-13 03:07:28','<a href=\"https://shorturl.fm/1nksG\" rel=\"nofollow ugc\">https://shorturl.fm/1nksG</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1717,1,'Melissa1123','Melissa1123@gmail.com','','43.225.148.234','2025-10-13 03:31:54','2025-10-13 03:31:54','<a href=\"https://shorturl.fm/o46o6\" rel=\"nofollow ugc\">https://shorturl.fm/o46o6</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1718,156,'Percy2279','Percy2279@gmail.com','','43.224.116.174','2025-10-13 03:54:43','2025-10-13 03:54:43','<a href=\"https://shorturl.fm/LqbWC\" rel=\"nofollow ugc\">https://shorturl.fm/LqbWC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1719,162,'Melanie1901','Melanie1901@gmail.com','','43.224.116.174','2025-10-13 03:54:59','2025-10-13 03:54:59','<a href=\"https://shorturl.fm/5ohjC\" rel=\"nofollow ugc\">https://shorturl.fm/5ohjC</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1720,1,'Bill3668','Bill3668@gmail.com','','175.176.95.48','2025-10-13 21:45:35','2025-10-13 21:45:35','<a href=\"https://shorturl.fm/0Ji03\" rel=\"nofollow ugc\">https://shorturl.fm/0Ji03</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1721,162,'Mila1453','Mila1453@gmail.com','','175.176.95.48','2025-10-13 21:45:50','2025-10-13 21:45:50','<a href=\"https://shorturl.fm/jEBYq\" rel=\"nofollow ugc\">https://shorturl.fm/jEBYq</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1722,1,'Rachel4938','Rachel4938@gmail.com','','182.252.79.83','2025-10-14 11:10:14','2025-10-14 11:10:14','<a href=\"https://shorturl.fm/D6s5l\" rel=\"nofollow ugc\">https://shorturl.fm/D6s5l</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1723,159,'Sarah2164','Sarah2164@gmail.com','','182.252.79.83','2025-10-14 11:10:29','2025-10-14 11:10:29','<a href=\"https://shorturl.fm/xOmhE\" rel=\"nofollow ugc\">https://shorturl.fm/xOmhE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1724,1,'Lacey497','Lacey497@gmail.com','','117.235.234.218','2025-10-14 11:59:14','2025-10-14 11:59:14','<a href=\"https://shorturl.fm/d1Wfw\" rel=\"nofollow ugc\">https://shorturl.fm/d1Wfw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1725,161,'Melinda2050','Melinda2050@gmail.com','','117.235.234.218','2025-10-14 11:59:29','2025-10-14 11:59:29','<a href=\"https://shorturl.fm/0pApU\" rel=\"nofollow ugc\">https://shorturl.fm/0pApU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1726,1,'Ronald2823','Ronald2823@gmail.com','','94.154.128.190','2025-10-14 14:27:42','2025-10-14 14:27:42','<a href=\"https://shorturl.fm/8tDEO\" rel=\"nofollow ugc\">https://shorturl.fm/8tDEO</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1727,158,'Benjamin4558','Benjamin4558@gmail.com','','185.247.168.153','2025-10-14 18:48:46','2025-10-14 18:48:46','<a href=\"https://shorturl.fm/phyAA\" rel=\"nofollow ugc\">https://shorturl.fm/phyAA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1728,162,'Kim1336','Kim1336@gmail.com','','185.247.168.153','2025-10-14 18:49:13','2025-10-14 18:49:13','<a href=\"https://shorturl.fm/aOch9\" rel=\"nofollow ugc\">https://shorturl.fm/aOch9</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1729,1,'Bentley3969','Bentley3969@gmail.com','','181.63.27.11','2025-10-14 20:26:56','2025-10-14 20:26:56','<a href=\"https://shorturl.fm/h073v\" rel=\"nofollow ugc\">https://shorturl.fm/h073v</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1730,1,'Athena2266','Athena2266@gmail.com','','202.58.65.0','2025-10-14 20:48:27','2025-10-14 20:48:27','<a href=\"https://shorturl.fm/nneNQ\" rel=\"nofollow ugc\">https://shorturl.fm/nneNQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1731,1,'Mark98','Mark98@gmail.com','','110.136.122.102','2025-10-14 22:42:54','2025-10-14 22:42:54','<a href=\"https://shorturl.fm/tnmgI\" rel=\"nofollow ugc\">https://shorturl.fm/tnmgI</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1732,1,'Trevor3848','Trevor3848@gmail.com','','165.101.14.254','2025-10-15 07:41:40','2025-10-15 07:41:40','<a href=\"https://shorturl.fm/h4V4W\" rel=\"nofollow ugc\">https://shorturl.fm/h4V4W</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1733,163,'Darryl4716','Darryl4716@gmail.com','','165.101.14.254','2025-10-15 07:41:55','2025-10-15 07:41:55','<a href=\"https://shorturl.fm/tlKIH\" rel=\"nofollow ugc\">https://shorturl.fm/tlKIH</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1734,1,'Bryan1857','Bryan1857@gmail.com','','115.77.68.160','2025-10-15 10:12:22','2025-10-15 10:12:22','<a href=\"https://shorturl.fm/OgfE5\" rel=\"nofollow ugc\">https://shorturl.fm/OgfE5</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1735,161,'Elliot4359','Elliot4359@gmail.com','','115.77.68.160','2025-10-15 10:12:52','2025-10-15 10:12:52','<a href=\"https://shorturl.fm/WOAvQ\" rel=\"nofollow ugc\">https://shorturl.fm/WOAvQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1736,1,'Ingrid3258','Ingrid3258@gmail.com','','175.211.217.9','2025-10-15 11:24:43','2025-10-15 11:24:43','<a href=\"https://shorturl.fm/fH0k2\" rel=\"nofollow ugc\">https://shorturl.fm/fH0k2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1737,162,'Carly1253','Carly1253@gmail.com','','175.211.217.9','2025-10-15 11:24:58','2025-10-15 11:24:58','<a href=\"https://shorturl.fm/2UWR3\" rel=\"nofollow ugc\">https://shorturl.fm/2UWR3</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1738,1,'Betty736','Betty736@gmail.com','','124.217.107.136','2025-10-16 10:41:16','2025-10-16 10:41:16','<a href=\"https://shorturl.fm/n0ZTl\" rel=\"nofollow ugc\">https://shorturl.fm/n0ZTl</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1739,1,'Dorothy2467','Dorothy2467@gmail.com','','157.20.98.247','2025-10-17 11:28:52','2025-10-17 11:28:52','<a href=\"https://shorturl.fm/XjUHV\" rel=\"nofollow ugc\">https://shorturl.fm/XjUHV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1740,1,'Eva1371','Eva1371@gmail.com','','115.72.160.152','2025-10-17 14:09:51','2025-10-17 14:09:51','<a href=\"https://shorturl.fm/fthry\" rel=\"nofollow ugc\">https://shorturl.fm/fthry</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1741,162,'Barbara1669','Barbara1669@gmail.com','','115.72.160.152','2025-10-17 14:10:08','2025-10-17 14:10:08','<a href=\"https://shorturl.fm/CPIRd\" rel=\"nofollow ugc\">https://shorturl.fm/CPIRd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1742,1,'Cooper473','Cooper473@gmail.com','','103.22.99.95','2025-10-18 00:53:06','2025-10-18 00:53:06','<a href=\"https://shorturl.fm/FzJhB\" rel=\"nofollow ugc\">https://shorturl.fm/FzJhB</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1743,1,'Sandra1143','Sandra1143@gmail.com','','49.43.42.81','2025-10-18 09:47:06','2025-10-18 09:47:06','<a href=\"https://shorturl.fm/t48lQ\" rel=\"nofollow ugc\">https://shorturl.fm/t48lQ</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1744,162,'Doris516','Doris516@gmail.com','','49.43.42.81','2025-10-18 09:47:21','2025-10-18 09:47:21','<a href=\"https://shorturl.fm/GnjJU\" rel=\"nofollow ugc\">https://shorturl.fm/GnjJU</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1745,158,'Jasmine1757','Jasmine1757@gmail.com','','180.74.216.207','2025-10-18 10:43:30','2025-10-18 10:43:30','<a href=\"https://shorturl.fm/3U0Wu\" rel=\"nofollow ugc\">https://shorturl.fm/3U0Wu</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1746,161,'Imelda305','Imelda305@gmail.com','','180.74.216.207','2025-10-18 10:44:03','2025-10-18 10:44:03','<a href=\"https://shorturl.fm/kZAgY\" rel=\"nofollow ugc\">https://shorturl.fm/kZAgY</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1747,163,'Payton406','Payton406@gmail.com','','180.74.216.207','2025-10-18 10:44:27','2025-10-18 10:44:27','<a href=\"https://shorturl.fm/KiNMv\" rel=\"nofollow ugc\">https://shorturl.fm/KiNMv</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1748,1,'Erin4789','Erin4789@gmail.com','','183.154.103.76','2025-10-18 11:57:47','2025-10-18 11:57:47','<a href=\"https://shorturl.fm/gsbtA\" rel=\"nofollow ugc\">https://shorturl.fm/gsbtA</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1749,163,'Lara4808','Lara4808@gmail.com','','183.154.103.76','2025-10-18 11:58:02','2025-10-18 11:58:02','<a href=\"https://shorturl.fm/dSJSe\" rel=\"nofollow ugc\">https://shorturl.fm/dSJSe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1750,1,'Ralph4043','Ralph4043@gmail.com','','202.185.108.35','2025-10-18 13:01:46','2025-10-18 13:01:46','<a href=\"https://shorturl.fm/lEEAe\" rel=\"nofollow ugc\">https://shorturl.fm/lEEAe</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1751,1,'Mona2248','Mona2248@gmail.com','','124.89.193.7','2025-10-19 05:36:22','2025-10-19 05:36:22','<a href=\"https://shorturl.fm/l0of2\" rel=\"nofollow ugc\">https://shorturl.fm/l0of2</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1752,160,'Claudia2154','Claudia2154@gmail.com','','124.89.193.7','2025-10-19 05:36:37','2025-10-19 05:36:37','<a href=\"https://shorturl.fm/086UV\" rel=\"nofollow ugc\">https://shorturl.fm/086UV</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1753,1,'Cody445','Cody445@gmail.com','','125.167.48.146','2025-10-19 14:53:59','2025-10-19 14:53:59','<a href=\"https://shorturl.fm/np6rX\" rel=\"nofollow ugc\">https://shorturl.fm/np6rX</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1754,158,'Hadley3704','Hadley3704@gmail.com','','125.167.48.146','2025-10-19 14:54:19','2025-10-19 14:54:19','<a href=\"https://shorturl.fm/0ySrE\" rel=\"nofollow ugc\">https://shorturl.fm/0ySrE</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(1755,1,'Pamela4134','Pamela4134@gmail.com','','191.99.30.123','2025-10-19 15:41:04','2025-10-19 15:41:04','<a href=\"https://shorturl.fm/rD6ND\" rel=\"nofollow ugc\">https://shorturl.fm/rD6ND</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nextend2_image_storage`
--
DROP TABLE IF EXISTS `wp_nextend2_image_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nextend2_image_storage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`hash` varchar(32) NOT NULL,
`image` text NOT NULL,
`value` mediumtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nextend2_image_storage`
--
LOCK TABLES `wp_nextend2_image_storage` WRITE;
/*!40000 ALTER TABLE `wp_nextend2_image_storage` DISABLE KEYS */;
INSERT INTO `wp_nextend2_image_storage` VALUES (1,'382b82124ce32f37606104a1e3425d02','$upload$/2020/10/Row1-002-scaled.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(2,'c2d71b508db96de3a21f14d92e9f548d','$upload$/2020/10/Mens-001.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(3,'4526c032fc677a7ebc51d27b48ccf754','$upload$/2020/10/Mens-002.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(4,'dd951194d701107d9abb57182cc8f63d','https://smartslider3.com/wp-content/uploads/slider424/slide1.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(5,'c4307c2cb0e1e7ed111429e405631f9f','https://smartslider3.com/wp-content/uploads/slider424/slide2.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==');
/*!40000 ALTER TABLE `wp_nextend2_image_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nextend2_section_storage`
--
DROP TABLE IF EXISTS `wp_nextend2_section_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nextend2_section_storage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`application` varchar(20) NOT NULL,
`section` varchar(128) NOT NULL,
`referencekey` varchar(128) NOT NULL,
`value` mediumtext NOT NULL,
`system` int(11) NOT NULL DEFAULT 0,
`editable` int(11) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `system` (`system`),
KEY `editable` (`editable`),
KEY `application` (`application`,`section`(50),`referencekey`(50)),
KEY `application_2` (`application`,`section`(50))
) ENGINE=InnoDB AUTO_INCREMENT=10011 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nextend2_section_storage`
--
LOCK TABLES `wp_nextend2_section_storage` WRITE;
/*!40000 ALTER TABLE `wp_nextend2_section_storage` DISABLE KEYS */;
INSERT INTO `wp_nextend2_section_storage` VALUES (10000,'smartslider','settings','','{\"n2_ss3_version\":\"3.4.1.9\\/b:release-3.4.1.9\\/r:ff7f6f5b913ef30a4f05bac46d8c29a2841babcb\"}',0,1),(10001,'smartslider','tutorial','GettingStarted','1',0,1);
/*!40000 ALTER TABLE `wp_nextend2_section_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nextend2_smartslider3_generators`
--
DROP TABLE IF EXISTS `wp_nextend2_smartslider3_generators`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nextend2_smartslider3_generators` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group` varchar(254) NOT NULL,
`type` varchar(254) NOT NULL,
`params` text 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 `wp_nextend2_smartslider3_generators`
--
LOCK TABLES `wp_nextend2_smartslider3_generators` WRITE;
/*!40000 ALTER TABLE `wp_nextend2_smartslider3_generators` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_nextend2_smartslider3_generators` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nextend2_smartslider3_sliders`
--
DROP TABLE IF EXISTS `wp_nextend2_smartslider3_sliders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nextend2_smartslider3_sliders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`alias` varchar(255) DEFAULT NULL,
`title` varchar(100) NOT NULL,
`type` varchar(30) NOT NULL,
`params` mediumtext NOT NULL,
`status` varchar(50) NOT NULL DEFAULT 'published',
`time` datetime NOT NULL,
`thumbnail` varchar(255) NOT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `status` (`status`),
KEY `time` (`time`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nextend2_smartslider3_sliders`
--
LOCK TABLES `wp_nextend2_smartslider3_sliders` WRITE;
/*!40000 ALTER TABLE `wp_nextend2_smartslider3_sliders` DISABLE KEYS */;
INSERT INTO `wp_nextend2_smartslider3_sliders` VALUES (1,NULL,'Tutorial Slider','simple','{\"aria-label\":\"Slider\",\"alias-id\":\"\",\"alias-smoothscroll\":\"\",\"alias-slideswitch\":\"\",\"background\":\"\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"background-color\":\"FFFFFF00\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"align\":\"normal\",\"margin\":\"0|*|0|*|0|*|0\",\"padding\":\"0|*|0|*|0|*|0\",\"perspective\":\"1000\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"width\":\"1200\",\"height\":\"600\",\"mobileportrait\":\"1\",\"mobilelandscape\":\"1\",\"tabletportrait\":\"1\",\"tabletlandscape\":\"1\",\"desktopportrait\":\"1\",\"desktoplandscape\":\"1\",\"responsiveLimitSlideWidth\":\"1\",\"responsiveSlideWidthDesktopLandscape\":\"0\",\"responsiveSlideWidthMaxDesktopLandscape\":\"1600\",\"responsiveSlideWidth\":\"0\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthTabletLandscape\":\"0\",\"responsiveSlideWidthMaxTabletLandscape\":\"1200\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"3000\",\"responsiveSlideWidthMobileLandscape\":\"0\",\"responsiveSlideWidthMaxMobileLandscape\":\"740\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsive-breakpoint-desktop-portrait\":\"1440\",\"responsive-breakpoint-desktop-portrait-landscape\":\"1440\",\"responsive-breakpoint-tablet-landscape\":\"1300\",\"responsive-breakpoint-tablet-landscape-landscape\":\"1300\",\"responsive-breakpoint-tablet-portrait\":\"1199\",\"responsive-breakpoint-tablet-portrait-landscape\":\"1199\",\"responsive-breakpoint-mobile-landscape\":\"900\",\"responsive-breakpoint-mobile-landscape-landscape\":\"1050\",\"responsive-breakpoint-mobile-portrait\":\"700\",\"responsive-breakpoint-mobile-portrait-landscape\":\"900\",\"responsive-breakpoint-desktop-landscape-enabled\":\"0\",\"responsive-breakpoint-tablet-landscape-enabled\":\"0\",\"responsive-breakpoint-tablet-portrait-enabled\":\"1\",\"responsive-breakpoint-mobile-landscape-enabled\":\"0\",\"responsive-breakpoint-mobile-portrait-enabled\":\"1\",\"responsive-breakpoint-global\":\"0\",\"breakpoints-orientation\":\"portrait\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveForceFull\":\"1\",\"responsiveForceFullOverflowX\":\"body\",\"responsiveForceFullHorizontalSelector\":\"body\",\"slider-size-override\":\"0\",\"slider-size-override-mobile-portrait\":\"0\",\"mobile-portrait-width\":\"320\",\"mobile-portrait-height\":\"568\",\"slider-size-override-mobile-landscape\":\"0\",\"mobile-landscape-width\":\"568\",\"mobile-landscape-height\":\"320\",\"slider-size-override-tablet-portrait\":\"0\",\"tablet-portrait-width\":\"768\",\"tablet-portrait-height\":\"1024\",\"slider-size-override-tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"768\",\"slider-size-override-desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"900\",\"controlsTouch\":\"horizontal\",\"controlsScroll\":\"0\",\"controlsKeyboard\":\"1\",\"widget-arrow-enabled\":\"0\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-previous\":\"thin-horizontal.svg\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"1\",\"widget-arrow-previous-hover-color\":\"ffffffff\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next\":\"thin-horizontal.svg\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-previous-alt\":\"previous arrow\",\"widget-arrow-next-alt\":\"next arrow\",\"widget-arrow-base64\":\"1\",\"widget-arrow-responsive-desktop\":\"1\",\"widget-arrow-responsive-tablet\":\"1\",\"widget-arrow-responsive-mobile\":\"0.5\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-display-mobileportrait\":\"0\",\"widget-arrow-display-mobilelandscape\":\"0\",\"widget-arrow-display-tabletportrait\":\"1\",\"widget-arrow-display-tabletlandscape\":\"1\",\"widget-arrow-display-desktopportrait\":\"1\",\"widget-arrow-display-desktoplandscape\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-bullet-enabled\":\"1\",\"widgetbullet\":\"transition\",\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"10\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"5\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"5|*|5|*|5|*|5|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffcc\\\",\\\"borderradius\\\":\\\"50\\\",\\\"extra\\\":\\\"margin: 4px;\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffcc\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffcc\\\"}]}\",\"widget-bullet-bar\":\"\",\"widget-bullet-bar-full-size\":\"0\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"60\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000080\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"margin: 5px;\\\"}]}\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-display-mobileportrait\":\"1\",\"widget-bullet-display-mobilelandscape\":\"1\",\"widget-bullet-display-tabletportrait\":\"1\",\"widget-bullet-display-tabletlandscape\":\"1\",\"widget-bullet-display-desktopportrait\":\"1\",\"widget-bullet-display-desktoplandscape\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bar-enabled\":\"0\",\"widgetbar\":\"horizontal\",\"widget-bar-position-mode\":\"simple\",\"widget-bar-position-area\":\"10\",\"widget-bar-position-stack\":\"1\",\"widget-bar-position-offset\":\"30\",\"widget-bar-position-horizontal\":\"left\",\"widget-bar-position-horizontal-position\":\"0\",\"widget-bar-position-horizontal-unit\":\"px\",\"widget-bar-position-vertical\":\"top\",\"widget-bar-position-vertical-position\":\"0\",\"widget-bar-position-vertical-unit\":\"px\",\"widget-bar-animate\":\"0\",\"widget-bar-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"5|*|20|*|5|*|20|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"40\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-bar-show-title\":\"1\",\"widget-bar-font-title\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-show-description\":\"1\",\"widget-bar-font-description\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":1,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-slide-count\":\"0\",\"widget-bar-width\":\"100%\",\"widget-bar-full-width\":\"0\",\"widget-bar-separator\":\" - \",\"widget-bar-align\":\"center\",\"widget-bar-display-hover\":\"0\",\"widget-bar-display-mobileportrait\":\"1\",\"widget-bar-display-mobilelandscape\":\"1\",\"widget-bar-display-tabletportrait\":\"1\",\"widget-bar-display-tabletlandscape\":\"1\",\"widget-bar-display-desktopportrait\":\"1\",\"widget-bar-display-desktoplandscape\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-thumbnail-enabled\":\"0\",\"widgetthumbnail\":\"default\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widget-thumbnail-position-mode\":\"simple\",\"widget-thumbnail-position-area\":\"12\",\"widget-thumbnail-position-stack\":\"1\",\"widget-thumbnail-position-offset\":\"0\",\"widget-thumbnail-position-horizontal\":\"left\",\"widget-thumbnail-position-horizontal-position\":\"0\",\"widget-thumbnail-position-horizontal-unit\":\"px\",\"widget-thumbnail-position-vertical\":\"top\",\"widget-thumbnail-position-vertical-position\":\"0\",\"widget-thumbnail-position-vertical-unit\":\"px\",\"widget-thumbnail-action\":\"click\",\"widget-thumbnail-align-content\":\"start\",\"widget-thumbnail-style-bar\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"242424ff\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-style-slides\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|ffffff00\\\",\\\"borderradius\\\":\\\"0\\\",\\\"opacity\\\":\\\"40\\\",\\\"extra\\\":\\\"margin: 3px;\\ntransition: all 0.4s;\\nbackground-size: cover;\\\"},{\\\"border\\\":\\\"0|*|solid|*|ffffffcc\\\",\\\"opacity\\\":\\\"100\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-title-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"3|*|10|*|3|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"bottom: 0;\\nleft: 0;\\\"}]}\",\"widget-thumbnail-title\":\"0\",\"widget-thumbnail-title-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-description\":\"0\",\"widget-thumbnail-description-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-caption-placement\":\"overlay\",\"widget-thumbnail-caption-size\":\"100\",\"widget-thumbnail-arrow\":\"1\",\"widget-thumbnail-arrow-width\":\"26\",\"widget-thumbnail-arrow-offset\":\"0\",\"widget-thumbnail-arrow-prev-alt\":\"previous arrow\",\"widget-thumbnail-arrow-next-alt\":\"next arrow\",\"widget-thumbnail-arrow-image\":\"\",\"widget-thumbnail-minimum-thumbnail-count\":\"2\",\"widget-thumbnail-group\":\"1\",\"widget-thumbnail-invert-group-direction\":\"0\",\"widget-thumbnail-orientation\":\"auto\",\"widget-thumbnail-size\":\"100%\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-display-mobileportrait\":\"1\",\"widget-thumbnail-display-mobilelandscape\":\"1\",\"widget-thumbnail-display-tabletportrait\":\"1\",\"widget-thumbnail-display-tabletlandscape\":\"1\",\"widget-thumbnail-display-desktopportrait\":\"1\",\"widget-thumbnail-display-desktoplandscape\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-shadow-enabled\":\"0\",\"widgetshadow\":\"shadow\",\"widget-shadow-shadow\":\"dark.png\",\"widget-shadow-shadow-image\":\"\",\"widget-shadow-width\":\"100%\",\"widget-shadow-display-mobileportrait\":\"1\",\"widget-shadow-display-mobilelandscape\":\"1\",\"widget-shadow-display-tabletportrait\":\"1\",\"widget-shadow-display-tabletlandscape\":\"1\",\"widget-shadow-display-desktopportrait\":\"1\",\"widget-shadow-display-desktoplandscape\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widget-fullscreen-enabled\":\"0\",\"widgetfullscreen\":\"image\",\"widget-fullscreen-tonormal\":\"full1.svg\",\"widget-fullscreen-tonormal-image\":\"\",\"widget-fullscreen-tonormal-color\":\"ffffffcc\",\"widget-fullscreen-mirror\":\"1\",\"widget-fullscreen-tofull\":\"full1.svg\",\"widget-fullscreen-tofull-image\":\"\",\"widget-fullscreen-tofull-color\":\"ffffffcc\",\"widget-fullscreen-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-fullscreen-position-mode\":\"simple\",\"widget-fullscreen-position-area\":\"4\",\"widget-fullscreen-position-stack\":\"1\",\"widget-fullscreen-position-offset\":\"15\",\"widget-fullscreen-position-horizontal\":\"left\",\"widget-fullscreen-position-horizontal-position\":\"0\",\"widget-fullscreen-position-horizontal-unit\":\"px\",\"widget-fullscreen-position-vertical\":\"top\",\"widget-fullscreen-position-vertical-position\":\"0\",\"widget-fullscreen-position-vertical-unit\":\"px\",\"widget-fullscreen-responsive-desktop\":\"1\",\"widget-fullscreen-responsive-tablet\":\"0.7\",\"widget-fullscreen-responsive-mobile\":\"0.5\",\"widget-fullscreen-display-hover\":\"0\",\"widget-fullscreen-display-mobileportrait\":\"1\",\"widget-fullscreen-display-mobilelandscape\":\"1\",\"widget-fullscreen-display-tabletportrait\":\"1\",\"widget-fullscreen-display-tabletlandscape\":\"1\",\"widget-fullscreen-display-desktopportrait\":\"1\",\"widget-fullscreen-display-desktoplandscape\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-html-enabled\":\"0\",\"widgethtml\":\"html\",\"widget-html-position-mode\":\"simple\",\"widget-html-position-area\":\"2\",\"widget-html-position-stack\":\"1\",\"widget-html-position-offset\":\"0\",\"widget-html-position-horizontal\":\"left\",\"widget-html-position-horizontal-position\":\"0\",\"widget-html-position-horizontal-unit\":\"px\",\"widget-html-position-vertical\":\"top\",\"widget-html-position-vertical-position\":\"0\",\"widget-html-position-vertical-unit\":\"px\",\"widget-html-code\":\"\",\"widget-html-display-hover\":\"0\",\"widget-html-display-mobileportrait\":\"1\",\"widget-html-display-mobilelandscape\":\"1\",\"widget-html-display-tabletportrait\":\"1\",\"widget-html-display-tabletlandscape\":\"1\",\"widget-html-display-desktopportrait\":\"1\",\"widget-html-display-desktoplandscape\":\"1\",\"widget-html-exclude-slides\":\"\",\"animation\":\"fade\",\"animation-duration\":\"500\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"animation-parallax-overlap\":\"0\",\"carousel\":\"1\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"shape-divider\":\"\",\"particle\":\"\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"autoplay\":\"0\",\"autoplayDuration\":\"8000\",\"autoplayStart\":\"1\",\"autoplayAllowReStart\":\"0\",\"autoplayLoop\":\"1\",\"autoplayfinish\":\"1|*|loop|*|current\",\"loop-single-slide\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"widget-autoplay-enabled\":\"0\",\"widgetautoplay\":\"image\",\"widget-autoplay-play\":\"small-light.svg\",\"widget-autoplay-play-image\":\"\",\"widget-autoplay-play-color\":\"ffffffcc\",\"widget-autoplay-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-autoplay-mirror\":\"1\",\"widget-autoplay-pause\":\"small-light.svg\",\"widget-autoplay-pause-image\":\"\",\"widget-autoplay-pause-color\":\"ffffffcc\",\"widget-autoplay-responsive-desktop\":\"1\",\"widget-autoplay-responsive-tablet\":\"0.7\",\"widget-autoplay-responsive-mobile\":\"0.5\",\"widget-autoplay-position-mode\":\"simple\",\"widget-autoplay-position-area\":\"4\",\"widget-autoplay-position-stack\":\"1\",\"widget-autoplay-position-offset\":\"15\",\"widget-autoplay-position-horizontal\":\"left\",\"widget-autoplay-position-horizontal-position\":\"0\",\"widget-autoplay-position-horizontal-unit\":\"px\",\"widget-autoplay-position-vertical\":\"top\",\"widget-autoplay-position-vertical-position\":\"0\",\"widget-autoplay-position-vertical-unit\":\"px\",\"widget-autoplay-display-hover\":\"0\",\"widget-autoplay-display-mobileportrait\":\"1\",\"widget-autoplay-display-mobilelandscape\":\"1\",\"widget-autoplay-display-tabletportrait\":\"1\",\"widget-autoplay-display-tabletlandscape\":\"1\",\"widget-autoplay-display-desktopportrait\":\"1\",\"widget-autoplay-display-desktoplandscape\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-indicator-enabled\":\"0\",\"widgetindicator\":\"pie\",\"widget-indicator-position-mode\":\"simple\",\"widget-indicator-position-area\":\"4\",\"widget-indicator-position-stack\":\"1\",\"widget-indicator-position-offset\":\"15\",\"widget-indicator-position-horizontal\":\"left\",\"widget-indicator-position-horizontal-position\":\"0\",\"widget-indicator-position-horizontal-unit\":\"px\",\"widget-indicator-position-vertical\":\"top\",\"widget-indicator-position-vertical-position\":\"0\",\"widget-indicator-position-vertical-unit\":\"px\",\"widget-indicator-size\":\"25\",\"widget-indicator-thickness\":\"30\",\"widget-indicator-track\":\"000000ab\",\"widget-indicator-bar\":\"ffffffff\",\"widget-indicator-style\":\"\",\"widget-indicator-display-hover\":\"0\",\"widget-indicator-display-mobileportrait\":\"1\",\"widget-indicator-display-mobilelandscape\":\"1\",\"widget-indicator-display-tabletportrait\":\"1\",\"widget-indicator-display-tabletlandscape\":\"1\",\"widget-indicator-display-desktopportrait\":\"1\",\"widget-indicator-display-desktoplandscape\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"layer-image-optimize\":\"0\",\"layer-image-tablet\":\"50\",\"layer-image-mobile\":\"30\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"50\",\"slides-background-video-mobile\":\"1\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"fadeOnLoad\":\"1\",\"fadeOnScroll\":\"0\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"spinner\":\"simpleWhite\",\"custom-spinner\":\"\",\"custom-spinner-width\":\"100\",\"custom-spinner-height\":\"100\",\"custom-display\":\"1\",\"placeholder-background-image\":\"\",\"placeholder-color\":\"FFFFFF00\",\"backgroundMode\":\"fill\",\"dynamic-height\":\"0\",\"slide-css\":\"\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"reverse-slides\":\"0\",\"maximumslidecount\":\"1000\",\"maintain-session\":\"0\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"slide-background-parallax\":\"0\",\"slide-background-parallax-strength\":\"50\",\"bg-parallax-tablet\":\"0\",\"bg-parallax-mobile\":\"0\",\"blockrightclick\":\"0\",\"controlsBlockCarouselInteraction\":\"1\",\"clear-both\":\"1\",\"clear-both-after\":\"1\",\"overflow-hidden-page\":\"0\",\"responsiveFocusUser\":\"1\",\"responsiveFocusEdge\":\"auto\",\"classes\":\"\",\"custom-css-codes\":\"\",\"callbacks\":\"\",\"related-posts\":\"\"}','published','2020-02-25 13:53:41','https://smartslider3.com/wp-content/uploads/slider404/tutorialsliderthumbnail-1.png',0),(2,NULL,'Home Page','simple','{\"width\":1200,\"height\":600,\"responsiveLimitSlideWidth\":1,\"widget-arrow-enabled\":1,\"widgetarrow\":\"imageEmpty\",\"responsive-mode\":\"fullwidth\"}','published','2020-10-24 12:07:06','',1);
/*!40000 ALTER TABLE `wp_nextend2_smartslider3_sliders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nextend2_smartslider3_sliders_xref`
--
DROP TABLE IF EXISTS `wp_nextend2_smartslider3_sliders_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nextend2_smartslider3_sliders_xref` (
`group_id` int(11) NOT NULL,
`slider_id` int(11) NOT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`group_id`,`slider_id`),
KEY `ordering` (`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nextend2_smartslider3_sliders_xref`
--
LOCK TABLES `wp_nextend2_smartslider3_sliders_xref` WRITE;
/*!40000 ALTER TABLE `wp_nextend2_smartslider3_sliders_xref` DISABLE KEYS */;
INSERT INTO `wp_nextend2_smartslider3_sliders_xref` VALUES (0,2,0);
/*!40000 ALTER TABLE `wp_nextend2_smartslider3_sliders_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nextend2_smartslider3_slides`
--
DROP TABLE IF EXISTS `wp_nextend2_smartslider3_slides`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nextend2_smartslider3_slides` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(200) NOT NULL,
`slider` int(11) NOT NULL,
`publish_up` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
`published` tinyint(1) NOT NULL,
`first` int(11) NOT NULL,
`slide` longtext DEFAULT NULL,
`description` text NOT NULL,
`thumbnail` varchar(255) NOT NULL,
`params` text NOT NULL,
`ordering` int(11) NOT NULL,
`generator_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `published` (`published`),
KEY `publish_up` (`publish_up`),
KEY `publish_down` (`publish_down`),
KEY `generator_id` (`generator_id`),
KEY `ordering` (`ordering`),
KEY `slider` (`slider`),
KEY `thumbnail` (`thumbnail`(100))
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nextend2_smartslider3_slides`
--
LOCK TABLES `wp_nextend2_smartslider3_slides` WRITE;
/*!40000 ALTER TABLE `wp_nextend2_smartslider3_slides` DISABLE KEYS */;
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES (1,'Slide Background',1,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":1120,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-IbNOabpfT5aE\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px+\",\"tabletportraitgutter\":20,\"mobileportraitpadding\":\"0|*|0|*|0|*|0|*|px+\",\"mobileportraitgutter\":20,\"mobileportraitwrapafter\":1,\"mobileportraitmaxwidth\":400,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-dtwtw9DVCwgQ\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"ffffff00\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"1|*|1|*|1|*|1\",\"borderstyle\":\"none\",\"bordercolor\":\"FFFFFFFF\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px+\",\"mobileportraitinneralign\":\"left\",\"mobileportraitpadding\":\"10|*|0|*|10|*|0|*|px+\",\"mobileportraitorder\":2,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-Fjvyu081qJeK\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"2/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":60,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Jeans Store Interior\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"01. Slide Background\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, consect\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"weight\\\":300,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Every slide includes a background, which can be a picture or solid color.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px+\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 1\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"To change the background click on the label bar and in the layer window select the style tab.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px+\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 2\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Choose a source from the background top tab then upload an image or pick a background color.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px+\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Read More\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"0568f6ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"0568f6ff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"1|*|2|*|1|*|2|*|em\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"5\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"content\":\"Next Slide\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"NextSlide[]\",\"href-target\":\"_self\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitorder\":0,\"mobileportraitinneralign\":\"center\",\"mobileportraitorder\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-LnImbm1HgUAv\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"3/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitmaxwidth\":300,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"https://smartslider3.com/wp-content/uploads/slider424/background.png\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}}]}]}]}]','','https://smartslider3.com/wp-content/uploads/slider424/slidebackground.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|60|*|10|*|60\",\"tabletportraitpadding\":\"10|*|50|*|10|*|50\",\"mobileportraitpadding\":\"10|*|10|*|35|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"https://smartslider3.com/wp-content/uploads/slider424/slide1.png\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.0\"}',1,0),(2,'Build & Design',1,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":1120,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-TPnUuKlAWVoC\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px+\",\"tabletportraitgutter\":20,\"mobileportraitinneralign\":\"inherit\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0|*|px+\",\"mobileportraitgutter\":20,\"mobileportraitwrapafter\":1,\"mobileportraitmaxwidth\":400,\"mobileportraitselfalign\":\"inherit\",\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-NmnNQvKK01kO\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"ffffff00\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"1|*|1|*|1|*|1\",\"borderstyle\":\"none\",\"bordercolor\":\"FFFFFFFF\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px+\",\"mobileportraitmaxwidth\":0,\"mobileportraitinneralign\":\"left\",\"mobileportraitpadding\":\"10|*|0|*|10|*|0|*|px+\",\"mobileportraitorder\":2,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-R5Jkk06Nmzr4\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"2/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":60,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Jeans Store Interior\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"02. Build & Design\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, consect\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"weight\\\":300,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Build any layout with layers and customize your designs limitlessly.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px+\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 1\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"To add a layer, click the green plus button in the left sidebar and select the type of layer.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px+\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 2\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Select any layer and you can edit its content and style properties in the layer window.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px+\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Read More\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"0568f6ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"0568f6ff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"1|*|2|*|1|*|2|*|em\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"5\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"content\":\"Next Slide\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"NextSlide[]\",\"href-target\":\"_self\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitorder\":0,\"mobileportraitinneralign\":\"center\",\"mobileportraitorder\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-iYi6ZKk8yeVp\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"3/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitmaxwidth\":300,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"https://smartslider3.com/wp-content/uploads/slider424/buildanddesign.png\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}}]}]}]}]','','https://smartslider3.com/wp-content/uploads/slider424/buildanddesign.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|60|*|10|*|60\",\"tabletportraitpadding\":\"10|*|50|*|10|*|50\",\"mobileportraitpadding\":\"10|*|10|*|35|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"https://smartslider3.com/wp-content/uploads/slider424/slide2.png\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.0\"}',2,0),(3,'50 % of original',2,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-18cdd1bf426b1\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[]}]','','$upload$/2020/10/Row1-002-scaled.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|10|*|10|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"$upload$/2020/10/Row1-002-scaled.jpg\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"fit\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.1.9\"}',1,0),(7,'50% of original',2,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":\"1000\",\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|200|*|10|*|px+\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-18dd53ee9d53f\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[]}]','','$upload$/2020/10/Mens-001.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|10|*|10|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"$upload$/2020/10/Mens-001.jpg\",\"backgroundFocusX\":\"54\",\"backgroundFocusY\":\"48\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"fit\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.1.9\"}',3,0),(8,'50% of original',2,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-146e7f0fa3307\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[]}]','','$upload$/2020/10/Mens-002.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|10|*|10|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"$upload$/2020/10/Mens-002.jpg\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"fit\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.1.9\"}',4,0);
/*!40000 ALTER TABLE `wp_nextend2_smartslider3_slides` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=352266 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://www.thedragonhouse.co.za','yes'),(2,'home','http://www.thedragonhouse.co.za','yes'),(3,'blogname','The Dragon Fashion House and Accessories','yes'),(4,'blogdescription','Premium Fashion and Accessories','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@thedragonhouse.co.za','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:216:{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:47:\"(([^/]+/)*wishlist)(/(.*))?/page/([0-9]{1,})/?$\";s:76:\"index.php?pagename=$matches[1]&wishlist-action=$matches[4]&paged=$matches[5]\";s:30:\"(([^/]+/)*wishlist)(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&wishlist-action=$matches[4]\";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:16:\"featured_item/?$\";s:33:\"index.php?post_type=featured_item\";s:46:\"featured_item/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:41:\"featured_item/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:33:\"featured_item/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=featured_item&paged=$matches[1]\";s:32:\"blocks/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"blocks/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"blocks/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"blocks/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"blocks/(.+?)/embed/?$\";s:39:\"index.php?blocks=$matches[1]&embed=true\";s:25:\"blocks/(.+?)/trackback/?$\";s:33:\"index.php?blocks=$matches[1]&tb=1\";s:33:\"blocks/(.+?)/page/?([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&paged=$matches[2]\";s:40:\"blocks/(.+?)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&cpage=$matches[2]\";s:30:\"blocks/(.+?)/wc-api(/(.*))?/?$\";s:47:\"index.php?blocks=$matches[1]&wc-api=$matches[3]\";s:36:\"blocks/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"blocks/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:29:\"blocks/(.+?)(?:/([0-9]+))?/?$\";s:45:\"index.php?blocks=$matches[1]&page=$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:57:\"block_categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=block_categories&term=$matches[1]&feed=$matches[2]\";s:52:\"block_categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=block_categories&term=$matches[1]&feed=$matches[2]\";s:33:\"block_categories/([^/]+)/embed/?$\";s:63:\"index.php?taxonomy=block_categories&term=$matches[1]&embed=true\";s:45:\"block_categories/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?taxonomy=block_categories&term=$matches[1]&paged=$matches[2]\";s:27:\"block_categories/([^/]+)/?$\";s:52:\"index.php?taxonomy=block_categories&term=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"shop/[^/]+/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"shop/[^/]+/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"shop/[^/]+/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"shop/[^/]+/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"shop/[^/]+/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"shop/[^/]+/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"shop/([^/]+)/([^/]+)/embed/?$\";s:81:\"index.php?featured_item_category=$matches[1]&featured_item=$matches[2]&embed=true\";s:33:\"shop/([^/]+)/([^/]+)/trackback/?$\";s:75:\"index.php?featured_item_category=$matches[1]&featured_item=$matches[2]&tb=1\";s:53:\"shop/([^/]+)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:87:\"index.php?featured_item_category=$matches[1]&featured_item=$matches[2]&feed=$matches[3]\";s:48:\"shop/([^/]+)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:87:\"index.php?featured_item_category=$matches[1]&featured_item=$matches[2]&feed=$matches[3]\";s:41:\"shop/([^/]+)/([^/]+)/page/?([0-9]{1,})/?$\";s:88:\"index.php?featured_item_category=$matches[1]&featured_item=$matches[2]&paged=$matches[3]\";s:42:\"shop/[^/]+/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"shop/[^/]+/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"shop/([^/]+)/([^/]+)(?:/([0-9]+))?/?$\";s:87:\"index.php?featured_item_category=$matches[1]&featured_item=$matches[2]&page=$matches[3]\";s:27:\"shop/[^/]+/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"shop/[^/]+/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"shop/[^/]+/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"shop/[^/]+/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"shop/[^/]+/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"shop/[^/]+/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"shop/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:40:\"shop/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:21:\"shop/([^/]+)/embed/?$\";s:55:\"index.php?featured_item_category=$matches[1]&embed=true\";s:33:\"shop/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?featured_item_category=$matches[1]&paged=$matches[2]\";s:15:\"shop/([^/]+)/?$\";s:44:\"index.php?featured_item_category=$matches[1]\";s:58:\"featured_item_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:53:\"featured_item_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:34:\"featured_item_tag/([^/]+)/embed/?$\";s:50:\"index.php?featured_item_tag=$matches[1]&embed=true\";s:46:\"featured_item_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?featured_item_tag=$matches[1]&paged=$matches[2]\";s:28:\"featured_item_tag/([^/]+)/?$\";s:39:\"index.php?featured_item_tag=$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:40:\"index.php?&page_id=123&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: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]\";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:6:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:41:\"mega-addons-for-visual-composer/index.php\";i:2;s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";i:3;s:33:\"smart-slider-3/smart-slider-3.php\";i:4;s:27:\"woocommerce/woocommerce.php\";i:5;s:34:\"yith-woocommerce-wishlist/init.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:65:\"/home/dragonhs/public_html/wp-content/plugins/akismet/akismet.php\";i:1;s:67:\"/home/dragonhs/public_html/wp-content/themes/twentytwenty/style.css\";i:2;s:65:\"/home/dragonhs/public_html/wp-content/themes/storefront/style.css\";i:3;s:0:\"\";}','no'),(40,'template','flatsome','yes'),(41,'stylesheet','flatsome-child','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','48748','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:3:{i:2;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday–Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}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:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','127','yes'),(82,'page_on_front','123','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','50','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','1618404590','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'initial_db_version','48748','yes'),(96,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:118:{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:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:38:{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:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";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'),(97,'fresh_site','0','yes'),(98,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'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'),(100,'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'),(101,'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'),(102,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:13:\"media_image-3\";i:1;s:10:\"archives-2\";i:2;s:6:\"meta-2\";i:3;s:8:\"search-2\";i:4;s:6:\"text-2\";i:5;s:6:\"text-3\";i:6;s:12:\"categories-2\";i:7;s:14:\"recent-posts-2\";i:8;s:17:\"recent-comments-2\";}s:12:\"sidebar-main\";a:0:{}s:16:\"sidebar-footer-1\";a:0:{}s:16:\"sidebar-footer-2\";a:0:{}s:12:\"shop-sidebar\";a:0:{}s:15:\"product-sidebar\";a:0:{}s:18:\"smartslider_area_1\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:17:{i:1760903664;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:1760904815;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:1760904942;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:1760906254;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:1760907127;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:1760921402;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1760922721;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:1760933511;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:1760962580;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:1760964600;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1760964705;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:1760964707;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:1760965713;a:1:{s:34:\"yith_wcwl_delete_expired_wishlists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1760967434;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:1761009171;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:1761484859;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;}}}s:7:\"version\";i:2;}','yes'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_image','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:301;s:6:\"height\";i:384;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:50;s:3:\"url\";s:77:\"http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Dragon-235x300.jpg\";s:5:\"title\";s:4:\"Logo\";}}','yes'),(109,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'recovery_keys','a:0:{}','yes'),(117,'theme_mods_twentytwenty','a:20:{s:18:\"custom_css_post_id\";i:-1;s:16:\"background_color\";s:6:\"e5e5e5\";s:30:\"header_footer_background_color\";s:7:\"#ffffff\";s:24:\"accent_accessible_colors\";a:2:{s:7:\"content\";a:5:{s:4:\"text\";s:7:\"#000000\";s:6:\"accent\";s:7:\"#c12951\";s:10:\"background\";s:7:\"#e5e5e5\";s:7:\"borders\";s:7:\"#c4c4c4\";s:9:\"secondary\";s:7:\"#5e5e5e\";}s:13:\"header-footer\";a:5:{s:4:\"text\";s:7:\"#000000\";s:6:\"accent\";s:7:\"#e22658\";s:10:\"background\";s:7:\"#ffffff\";s:7:\"borders\";s:7:\"#dbdbdb\";s:9:\"secondary\";s:7:\"#6d6d6d\";}}s:15:\"show_author_bio\";b:0;s:12:\"blog_content\";s:4:\"full\";s:39:\"cover_template_overlay_background_color\";s:7:\"#cccccc\";s:30:\"cover_template_overlay_opacity\";i:90;s:16:\"background_image\";s:0:\"\";s:17:\"background_preset\";s:3:\"fit\";s:21:\"background_position_x\";s:6:\"center\";s:21:\"background_position_y\";s:3:\"top\";s:15:\"background_size\";s:7:\"contain\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_attachment\";s:5:\"fixed\";s:11:\"custom_logo\";i:139;s:11:\"retina_logo\";b:1;s:31:\"cover_template_fixed_background\";b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1603540886;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:13:\"media_image-3\";i:1;s:10:\"archives-2\";i:2;s:6:\"meta-2\";i:3;s:8:\"search-2\";i:4;s:6:\"text-2\";i:5;s:6:\"text-3\";i:6;s:12:\"categories-2\";i:7;s:14:\"recent-posts-2\";i:8;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:18:\"smartslider_area_1\";a:0:{}}}s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:20;}}','yes'),(134,'can_compress_scripts','1','no'),(143,'finished_updating_comment_type','1','yes'),(151,'recently_activated','a:1:{s:23:\"elementor/elementor.php\";i:1603536017;}','yes'),(152,'_wp_suggested_policy_text_has_changed','changed','yes'),(160,'elementor_version','3.0.11','yes'),(161,'elementor_install_history','a:1:{s:6:\"3.0.11\";i:1602855436;}','yes'),(163,'_elementor_installed_time','1602855455','yes'),(164,'elementor_active_kit','40','yes'),(165,'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'),(166,'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'),(167,'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'),(168,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}}s:10:\"categories\";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:751:{i:0;a:14:{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:0;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:6;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{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:240;s:11:\"trend_index\";i:197;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:2;a:14:{s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate – 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:0;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:12;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{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:0;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:11;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate – 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:0;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:129;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{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:0;s:16:\"popularity_index\";i:14;s:11:\"trend_index\";i:13;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate – 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:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:195;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{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:0;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:64;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:8;a:14:{s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate – 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:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:278;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{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:0;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:157;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;a:14:{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:672;s:11:\"trend_index\";i:425;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:11;a:14:{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:0;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:75;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;a:14:{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:268;s:11:\"trend_index\";i:238;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:13;a:14:{s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company – 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:0;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:175;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:14;a:14:{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:0;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:198;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company – 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:0;s:16:\"popularity_index\";i:685;s:11:\"trend_index\";i:192;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:16;a:14:{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:0;s:16:\"popularity_index\";i:28;s:11:\"trend_index\";i:25;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company – 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:0;s:16:\"popularity_index\";i:632;s:11:\"trend_index\";i:83;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:18;a:14:{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:0;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:265;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;a:14:{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:246;s:11:\"trend_index\";i:137;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:20;a:14:{s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company – 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:0;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:88;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:21;a:14:{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:0;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:145;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;a:14:{s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company – 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:0;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:306;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{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:0;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:368;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{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:690;s:11:\"trend_index\";i:255;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:25;a:14:{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:0;s:16:\"popularity_index\";i:157;s:11:\"trend_index\";i:115;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;a:14:{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:725;s:11:\"trend_index\";i:337;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:27;a:14:{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:0;s:16:\"popularity_index\";i:195;s:11:\"trend_index\";i:167;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;a:14:{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:0;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:140;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;a:14:{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:0;s:16:\"popularity_index\";i:315;s:11:\"trend_index\";i:315;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{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:431;s:11:\"trend_index\";i:465;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:31;a:14:{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:0;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:51;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;a:14:{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:305;s:11:\"trend_index\";i:216;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:33;a:14:{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:0;s:16:\"popularity_index\";i:344;s:11:\"trend_index\";i:514;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;a:14:{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:0;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:308;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{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:10:\"[\"header\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:16;s:11:\"trend_index\";i:14;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;a:14:{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:0;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:63;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;a:14:{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:599;s:11:\"trend_index\";i:578;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:38;a:14:{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:0;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:251;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;a:14:{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:336;s:11:\"trend_index\";i:398;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:40;a:14:{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:0;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:288;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{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:0;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:111;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{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:397;s:11:\"trend_index\";i:600;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:43;a:14:{s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist – 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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:44;a:14:{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:0;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:317;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{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:440;s:11:\"trend_index\";i:445;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:46;a:14:{s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist – 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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:47;a:14:{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:0;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:615;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist – 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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:49;a:14:{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:0;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:466;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{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:596;s:11:\"trend_index\";i:661;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:51;a:14:{s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist – 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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;a:14:{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:0;s:16:\"popularity_index\";i:504;s:11:\"trend_index\";i:421;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{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:281;s:11:\"trend_index\";i:220;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:54;a:14:{s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist – 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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:55;a:14:{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:0;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:60;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist – 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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:57;a:14:{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:0;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:103;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{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:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:59;a:14:{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:0;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:281;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{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:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:61;a:14:{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:0;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:174;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{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:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:63;a:14:{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:0;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:135;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;a:14:{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:369;s:11:\"trend_index\";i:327;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:65;a:14:{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:0;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:99;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:66;a:14:{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:396;s:11:\"trend_index\";i:484;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:67;a:14:{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:0;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:49;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;a:14:{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:0;s:16:\"popularity_index\";i:86;s:11:\"trend_index\";i:85;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;a:14:{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:669;s:11:\"trend_index\";i:694;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:70;a:14:{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:0;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:71;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:71;a:14:{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:0;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:205;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{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:520;s:11:\"trend_index\";i:503;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:73;a:14:{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:0;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:257;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;a:14:{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:416;s:11:\"trend_index\";i:304;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:75;a:14:{s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio – 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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:76;a:14:{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:0;s:16:\"popularity_index\";i:160;s:11:\"trend_index\";i:242;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;a:14:{s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio – 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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;a:14:{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:0;s:16:\"popularity_index\";i:269;s:11:\"trend_index\";i:350;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;a:14:{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:549;s:11:\"trend_index\";i:456;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:80;a:14:{s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio – 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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;a:14:{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:0;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:292;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;a:14:{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:0;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:209;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{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:0;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:443;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:84;a:14:{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:0;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:439;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{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:0;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:45;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;a:14:{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:501;s:11:\"trend_index\";i:556;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:87;a:14:{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:0;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:121;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:88;a:14:{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:0;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:277;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{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:470;s:11:\"trend_index\";i:411;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:90;a:14:{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:0;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:233;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{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:459;s:11:\"trend_index\";i:530;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:92;a:14:{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:0;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:430;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;a:14:{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:0;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:419;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;a:14:{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:528;s:11:\"trend_index\";i:459;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:95;a:14:{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:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:549;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{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:620;s:11:\"trend_index\";i:573;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:97;a:14:{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:0;s:16:\"popularity_index\";i:486;s:11:\"trend_index\";i:586;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{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:456;s:11:\"trend_index\";i:436;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:99;a:14:{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:0;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:130;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{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:615;s:11:\"trend_index\";i:638;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:101;a:14:{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:0;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:170;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{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:515;s:11:\"trend_index\";i:517;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:103;a:14:{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:0;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:67;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{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:496;s:11:\"trend_index\";i:510;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:105;a:14:{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:0;s:16:\"popularity_index\";i:82;s:11:\"trend_index\";i:156;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{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:0;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:399;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{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:414;s:11:\"trend_index\";i:194;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:108;a:14:{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:0;s:16:\"popularity_index\";i:26;s:11:\"trend_index\";i:24;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{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:0;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:87;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{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:0;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:591;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{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:527;s:11:\"trend_index\";i:534;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:112;a:14:{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:0;s:16:\"popularity_index\";i:53;s:11:\"trend_index\";i:90;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{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:579;s:11:\"trend_index\";i:624;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:114;a:14:{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:0;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:89;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{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:0;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:155;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{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:637;s:11:\"trend_index\";i:666;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:117;a:14:{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:0;s:16:\"popularity_index\";i:254;s:11:\"trend_index\";i:309;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{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:0;s:16:\"popularity_index\";i:381;s:11:\"trend_index\";i:423;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{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:0;s:16:\"popularity_index\";i:409;s:11:\"trend_index\";i:492;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;a:14:{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:0;s:16:\"popularity_index\";i:580;s:11:\"trend_index\";i:610;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{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:0;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:343;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{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:640;s:11:\"trend_index\";i:660;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:123;a:14:{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:0;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:329;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:124;a:14:{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:455;s:11:\"trend_index\";i:524;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:125;a:14:{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:0;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:427;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;a:14:{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:0;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:537;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{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:0;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:69;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;a:14:{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:0;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:138;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{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:0;s:16:\"popularity_index\";i:232;s:11:\"trend_index\";i:291;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:130;a:14:{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:0;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:218;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{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:0;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:70;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;a:14:{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:0;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:133;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{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:0;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:313;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:134;a:14:{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:0;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:416;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{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:0;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:401;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;a:14:{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:0;s:16:\"popularity_index\";i:594;s:11:\"trend_index\";i:664;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{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:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:648;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;a:14:{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:0;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:239;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{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:0;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:509;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{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:0;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:36;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{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:0;s:16:\"popularity_index\";i:164;s:11:\"trend_index\";i:207;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{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:0;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:389;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{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:430;s:11:\"trend_index\";i:296;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:144;a:14:{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:0;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:346;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{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:0;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:334;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{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:0;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:271;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{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:649;s:11:\"trend_index\";i:681;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:148;a:14:{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:0;s:16:\"popularity_index\";i:490;s:11:\"trend_index\";i:448;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{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:442;s:11:\"trend_index\";i:511;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:150;a:14:{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:0;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:191;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{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:0;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:142;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{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:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:433;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine’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:581;s:11:\"trend_index\";i:486;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:154;a:14:{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:0;s:16:\"popularity_index\";i:22;s:11:\"trend_index\";i:18;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine’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:631;s:11:\"trend_index\";i:698;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:156;a:14:{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:0;s:16:\"popularity_index\";i:223;s:11:\"trend_index\";i:236;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine’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:628;s:11:\"trend_index\";i:609;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:158;a:14:{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:0;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:149;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{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:0;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:454;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:160;a:14:{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:0;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:546;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{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:0;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:212;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{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:0;s:16:\"popularity_index\";i:249;s:11:\"trend_index\";i:268;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{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:0;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:146;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{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:0;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:80;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{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:0;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:158;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{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:0;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:42;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{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:0;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:48;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{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:0;s:16:\"popularity_index\";i:128;s:11:\"trend_index\";i:179;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{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:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:237;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:170;a:14:{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:0;s:16:\"popularity_index\";i:251;s:11:\"trend_index\";i:234;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{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:0;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:17;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{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:0;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:9;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{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:0;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:159;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{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:0;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:256;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{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:0;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:246;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:176;a:14:{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:0;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:81;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{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:0;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:163;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{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:0;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:182;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{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:0;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:418;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{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:0;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:86;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{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:0;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:374;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:182;a:14:{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:0;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:564;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{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:643;s:11:\"trend_index\";i:676;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:184;a:14:{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:0;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:402;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{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:0;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:124;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{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:0;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:326;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{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:0;s:16:\"popularity_index\";i:296;s:11:\"trend_index\";i:164;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{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:0;s:16:\"popularity_index\";i:473;s:11:\"trend_index\";i:567;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{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:0;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:428;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{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:0;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:662;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{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:0;s:16:\"popularity_index\";i:410;s:11:\"trend_index\";i:471;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:192;a:14:{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:0;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:338;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{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:0;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:629;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:194;a:14:{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:0;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:120;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{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:0;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:186;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{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:0;s:16:\"popularity_index\";i:35;s:11:\"trend_index\";i:33;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{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:0;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:29;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{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:0;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:94;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;a:14:{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:606;s:11:\"trend_index\";i:628;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:200;a:14:{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:0;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:136;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio – 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:0;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:613;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{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:0;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:65;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:203;a:14:{s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio – 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:0;s:16:\"popularity_index\";i:604;s:11:\"trend_index\";i:619;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{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:0;s:16:\"popularity_index\";i:109;s:11:\"trend_index\";i:113;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:205;a:14:{s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio – 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:0;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:703;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:206;a:14:{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:0;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:193;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{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:0;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:404;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{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:0;s:16:\"popularity_index\";i:235;s:11:\"trend_index\";i:190;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{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:0;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:222;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{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:0;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:35;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{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:280;s:11:\"trend_index\";i:176;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:212;a:14:{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:0;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:126;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;a:14:{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:0;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:144;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{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:0;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:181;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{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:0;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:360;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:216;a:14:{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:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:235;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{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:0;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:154;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio – 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:0;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:583;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{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:0;s:16:\"popularity_index\";i:174;s:11:\"trend_index\";i:141;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{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:0;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:213;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{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:0;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:110;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{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:0;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:226;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{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:0;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:489;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{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:0;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:188;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{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:0;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:128;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm – 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:0;s:16:\"popularity_index\";i:364;s:11:\"trend_index\";i:272;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:227;a:14:{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:0;s:16:\"popularity_index\";i:107;s:11:\"trend_index\";i:125;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm – 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:0;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:540;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:229;a:14:{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:0;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:172;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm – 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:0;s:16:\"popularity_index\";i:126;s:11:\"trend_index\";i:28;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{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:0;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:224;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm – 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:0;s:16:\"popularity_index\";i:418;s:11:\"trend_index\";i:294;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:233;a:14:{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:0;s:16:\"popularity_index\";i:130;s:11:\"trend_index\";i:109;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{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:0;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:52;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm – 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:0;s:16:\"popularity_index\";i:423;s:11:\"trend_index\";i:377;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:236;a:14:{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:0;s:16:\"popularity_index\";i:329;s:11:\"trend_index\";i:431;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;a:14:{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:0;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:97;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm – 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:0;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:642;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:239;a:14:{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:0;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:342;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;a:14:{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:0;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:19;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{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:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:548;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{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:0;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:34;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{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:0;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:27;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{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:0;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:118;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{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:0;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:162;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{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:0;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:98;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{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:0;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:252;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{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:0;s:16:\"popularity_index\";i:55;s:11:\"trend_index\";i:73;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{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:0;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:347;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{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:0;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:254;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{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:0;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:8;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{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:0;s:16:\"popularity_index\";i:47;s:11:\"trend_index\";i:37;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{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:0;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:267;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{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:0;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:100;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{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:0;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:46;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{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:532;s:11:\"trend_index\";i:485;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:257;a:14:{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:0;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:91;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{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:0;s:16:\"popularity_index\";i:309;s:11:\"trend_index\";i:376;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{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:704;s:11:\"trend_index\";i:678;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:260;a:14:{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:0;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:248;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{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:0;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:386;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{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:638;s:11:\"trend_index\";i:621;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:263;a:14:{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:0;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:160;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{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:0;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:364;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{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:0;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:469;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{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:0;s:16:\"popularity_index\";i:141;s:11:\"trend_index\";i:171;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{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:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:501;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel – 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:0;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:394;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{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:0;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:410;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{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:0;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:474;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel – 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:0;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{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:0;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:53;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{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:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:535;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel – 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:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:312;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{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:0;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:74;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{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:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:647;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel – 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:0;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:571;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;a:14:{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:0;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:122;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;a:14:{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:0;s:16:\"popularity_index\";i:377;s:11:\"trend_index\";i:576;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel – 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:0;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:640;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;a:14:{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:0;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:165;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;a:14:{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:0;s:16:\"popularity_index\";i:439;s:11:\"trend_index\";i:455;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{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:0;s:16:\"popularity_index\";i:266;s:11:\"trend_index\";i:381;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{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:0;s:16:\"popularity_index\";i:335;s:11:\"trend_index\";i:300;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{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:0;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:150;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{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:0;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:72;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{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:0;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:259;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{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:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:54;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{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:0;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:117;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{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:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:318;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{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:0;s:16:\"popularity_index\";i:165;s:11:\"trend_index\";i:177;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{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:0;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:230;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;a:14:{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:0;s:16:\"popularity_index\";i:85;s:11:\"trend_index\";i:66;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{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:0;s:16:\"popularity_index\";i:454;s:11:\"trend_index\";i:299;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{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:0;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:107;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{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:0;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:314;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;a:14:{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:0;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:82;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{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:0;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:105;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{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:0;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:96;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{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:0;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:496;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine – 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:0;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:396;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{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:0;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:244;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{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:0;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:215;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine – 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:0;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:330;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:305;a:14:{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:0;s:16:\"popularity_index\";i:324;s:11:\"trend_index\";i:397;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{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:0;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:490;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:307;a:14:{s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine – 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:0;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:269;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{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:0;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:23;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{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:0;s:16:\"popularity_index\";i:321;s:11:\"trend_index\";i:393;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:310;a:14:{s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine – 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:0;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:243;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{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:0;s:16:\"popularity_index\";i:469;s:11:\"trend_index\";i:481;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{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:0;s:16:\"popularity_index\";i:211;s:11:\"trend_index\";i:250;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine – 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:0;s:16:\"popularity_index\";i:313;s:11:\"trend_index\";i:240;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:314;a:14:{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:0;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:687;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{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:0;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:290;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine – 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:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:336;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{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:0;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:344;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{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:0;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:452;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:319;a:14:{s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine – 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:0;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:214;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{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:0;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:553;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{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:0;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:429;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:322;a:14:{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:0;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:516;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{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:0;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:562;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{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:0;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:266;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine – 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:0;s:16:\"popularity_index\";i:386;s:11:\"trend_index\";i:287;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{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:0;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:658;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:327;a:14:{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:0;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:106;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine – 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:0;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:528;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:329;a:14:{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:0;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:453;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:330;a:14:{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:691;s:11:\"trend_index\";i:670;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:331;a:14:{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:0;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:709;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:332;a:14:{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:417;s:11:\"trend_index\";i:274;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:333;a:14:{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:0;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:310;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{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:0;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:16;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography – 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:0;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:580;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{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:0;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:588;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{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:0;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:55;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography – 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:0;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:447;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{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:0;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:713;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:340;a:14:{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:0;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:61;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography – 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:0;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:341;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:342;a:14:{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:0;s:16:\"popularity_index\";i:561;s:11:\"trend_index\";i:715;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{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:0;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:93;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:344;a:14:{s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography – 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:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:590;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{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:0;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:650;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{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:0;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:30;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:347;a:14:{s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography – 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:0;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:199;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;a:14:{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:0;s:16:\"popularity_index\";i:535;s:11:\"trend_index\";i:599;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{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:0;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:43;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{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:616;s:11:\"trend_index\";i:699;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:351;a:14:{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:0;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:39;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{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:0;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:380;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:353;a:14:{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:0;s:16:\"popularity_index\";i:202;s:11:\"trend_index\";i:295;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:354;a:14:{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:0;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:301;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:355;a:14:{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:0;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:385;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:356;a:14:{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:0;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:166;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:357;a:14:{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:0;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:204;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;a:14:{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:0;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:446;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{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:0;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:119;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:360;a:14:{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:0;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:221;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{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:0;s:16:\"popularity_index\";i:360;s:11:\"trend_index\";i:369;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:362;a:14:{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:0;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:114;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{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:0;s:16:\"popularity_index\";i:263;s:11:\"trend_index\";i:223;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:364;a:14:{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:0;s:16:\"popularity_index\";i:290;s:11:\"trend_index\";i:422;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:365;a:14:{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:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:403;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;a:14:{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:0;s:16:\"popularity_index\";i:258;s:11:\"trend_index\";i:479;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{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:571;s:11:\"trend_index\";i:463;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:368;a:14:{s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design – 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:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:497;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:369;a:14:{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:0;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:210;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{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:575;s:11:\"trend_index\";i:533;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:371;a:14:{s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design – 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:0;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:491;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{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:0;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:328;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;a:14:{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:601;s:11:\"trend_index\";i:618;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:374;a:14:{s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design – 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:0;s:16:\"popularity_index\";i:509;s:11:\"trend_index\";i:351;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:375;a:14:{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:0;s:16:\"popularity_index\";i:283;s:11:\"trend_index\";i:458;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;a:14:{s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design – 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:0;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:686;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{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:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:520;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design – 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:0;s:16:\"popularity_index\";i:405;s:11:\"trend_index\";i:219;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{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:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:684;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:380;a:14:{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:625;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:381;a:14:{s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design – 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:0;s:16:\"popularity_index\";i:222;s:11:\"trend_index\";i:78;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{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:0;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:323;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:383;a:14:{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:718;s:11:\"trend_index\";i:685;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:384;a:14:{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:0;s:16:\"popularity_index\";i:498;s:11:\"trend_index\";i:505;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{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:0;s:16:\"popularity_index\";i:271;s:11:\"trend_index\";i:228;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{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:380;s:11:\"trend_index\";i:426;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:387;a:14:{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:0;s:16:\"popularity_index\";i:426;s:11:\"trend_index\";i:440;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:388;a:14:{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:449;s:11:\"trend_index\";i:536;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:389;a:14:{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:0;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:475;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{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:0;s:16:\"popularity_index\";i:517;s:11:\"trend_index\";i:563;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{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:583;s:11:\"trend_index\";i:577;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:392;a:14:{s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course – 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:0;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:515;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:393;a:14:{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:0;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:550;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course – 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:0;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:487;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:395;a:14:{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:0;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:152;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:396;a:14:{s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course – 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:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:359;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:397;a:14:{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:0;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:461;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:398;a:14:{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:576;s:11:\"trend_index\";i:566;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:399;a:14:{s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course – 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:0;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:371;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:400;a:14:{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:0;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:356;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course – 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:0;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:435;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:402;a:14:{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:0;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:570;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:403;a:14:{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:451;s:11:\"trend_index\";i:349;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:404;a:14:{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:590;s:11:\"trend_index\";i:407;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:405;a:14:{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:0;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:499;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:406;a:14:{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:696;s:11:\"trend_index\";i:708;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:407;a:14:{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:624;s:11:\"trend_index\";i:523;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:408;a:14:{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:0;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:495;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:409;a:14:{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:572;s:11:\"trend_index\";i:519;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"1\";}i:410;a:14:{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:0;s:16:\"popularity_index\";i:98;s:11:\"trend_index\";i:92;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{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:618;s:11:\"trend_index\";i:541;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:412;a:14:{s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop – 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:0;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:623;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:413;a:14:{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:0;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:258;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:414;a:14:{s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop – 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:0;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:225;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:415;a:14:{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:0;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:460;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:416;a:14:{s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop – 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:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:405;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:417;a:14:{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:0;s:16:\"popularity_index\";i:518;s:11:\"trend_index\";i:565;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;a:14:{s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop – 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:0;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:675;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:419;a:14:{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:0;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:506;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{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:584;s:11:\"trend_index\";i:552;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:421;a:14:{s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop – 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:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:649;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:422;a:14:{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:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:677;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:423;a:14:{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:686;s:11:\"trend_index\";i:692;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:424;a:14:{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:0;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:568;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:425;a:14:{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:712;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:426;a:14:{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:0;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:603;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:427;a:14:{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:0;s:16:\"popularity_index\";i:238;s:11:\"trend_index\";i:324;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:428;a:14:{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:0;s:16:\"popularity_index\";i:566;s:11:\"trend_index\";i:646;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:429;a:14:{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:0;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:261;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:430;a:14:{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:701;s:11:\"trend_index\";i:551;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:431;a:14:{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:0;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:320;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:432;a:14:{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:0;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:273;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:433;a:14:{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:0;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:264;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:434;a:14:{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:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:420;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:435;a:14:{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:689;s:11:\"trend_index\";i:652;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:436;a:14:{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:0;s:16:\"popularity_index\";i:154;s:11:\"trend_index\";i:151;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:437;a:14:{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:524;s:11:\"trend_index\";i:522;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:438;a:14:{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:0;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:348;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:439;a:14:{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:539;s:11:\"trend_index\";i:606;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:440;a:14:{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:0;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:38;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:441;a:14:{s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant – 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:0;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:512;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:442;a:14:{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:0;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:247;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:443;a:14:{s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant – 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:0;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:147;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:444;a:14:{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:0;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:56;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:445;a:14:{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:719;s:11:\"trend_index\";i:693;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:446;a:14:{s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant – 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:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:196;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:447;a:14:{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:0;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:148;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:448;a:14:{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:0;s:16:\"popularity_index\";i:54;s:11:\"trend_index\";i:47;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:449;a:14:{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:726;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:450;a:14:{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:675;s:11:\"trend_index\";i:476;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:451;a:14:{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:0;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:169;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:452;a:14:{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:556;s:11:\"trend_index\";i:620;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:453;a:14:{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:0;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:249;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:454;a:14:{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:574;s:11:\"trend_index\";i:467;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:455;a:14:{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:715;s:11:\"trend_index\";i:587;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:456;a:14:{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:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:178;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:457;a:14:{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:0;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:417;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:458;a:14:{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:702;s:11:\"trend_index\";i:674;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:459;a:14:{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:0;s:16:\"popularity_index\";i:314;s:11:\"trend_index\";i:355;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:460;a:14:{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:0;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:575;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:461;a:14:{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:0;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:161;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:462;a:14:{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:595;s:11:\"trend_index\";i:625;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:463;a:14:{s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate – 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:0;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:626;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:464;a:14:{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:0;s:16:\"popularity_index\";i:275;s:11:\"trend_index\";i:280;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:465;a:14:{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:633;s:11:\"trend_index\";i:632;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:466;a:14:{s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate – 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:0;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:263;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:467;a:14:{s:2:\"id\";i:1190;s:5:\"title\";s:26:\"Landing Page – 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:3;s:11:\"trend_index\";i:1;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:468;a:14:{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:655;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:469;a:14:{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:560;s:11:\"trend_index\";i:663;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:470;a:14:{s:2:\"id\";i:225;s:5:\"title\";s:27:\"Homepage – 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:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:471;a:14:{s:2:\"id\";i:463;s:5:\"title\";s:22:\"Homepage – 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:5;s:11:\"trend_index\";i:4;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:472;a:14:{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:674;s:11:\"trend_index\";i:654;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:473;a:14:{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:370;s:11:\"trend_index\";i:311;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:474;a:14:{s:2:\"id\";i:181;s:5:\"title\";s:23:\"Homepage – 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:2;s:11:\"trend_index\";i:2;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:475;a:14:{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:705;s:11:\"trend_index\";i:712;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:476;a:14:{s:2:\"id\";i:150;s:5:\"title\";s:19:\"Product – 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:5;s:16:\"popularity_index\";i:6;s:11:\"trend_index\";i:5;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:477;a:14:{s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio – 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:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:478;a:14:{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:661;s:11:\"trend_index\";i:671;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:479;a:14:{s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio – 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:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:480;a:14:{s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio – 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:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:481;a:14:{s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio – 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:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:482;a:14:{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:452;s:11:\"trend_index\";i:408;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:483;a:14:{s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio – 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:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:484;a:14:{s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio – 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:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:485;a:14:{s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist – 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:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:486;a:14:{s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist – 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:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:487;a:14:{s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist – 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:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:488;a:14:{s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist – 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:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:489;a:14:{s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist – 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:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:490;a:14:{s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company – 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:17;s:16:\"popularity_index\";i:642;s:11:\"trend_index\";i:102;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:491;a:14:{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:687;s:11:\"trend_index\";i:680;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:492;a:14:{s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company – 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:18;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:116;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:493;a:14:{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:471;s:11:\"trend_index\";i:437;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:494;a:14:{s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company – 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:19;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:57;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:495;a:14:{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:645;s:11:\"trend_index\";i:704;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:496;a:14:{s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company – 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:20;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:139;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:497;a:14:{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:570;s:11:\"trend_index\";i:635;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:498;a:14:{s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company – 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:21;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:131;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:499;a:14:{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:530;s:11:\"trend_index\";i:451;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:500;a:14:{s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate – 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:22;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:302;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:501;a:14:{s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate – 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:23;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:303;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:502;a:14:{s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate – 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:24;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:201;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:503;a:14:{s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate – 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:25;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:168;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:504;a:14:{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:607;s:11:\"trend_index\";i:601;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:505;a:14:{s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant – 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:26;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:270;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:506;a:14:{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:720;s:11:\"trend_index\";i:696;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:507;a:14:{s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant – Chef’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:27;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:504;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:508;a:14:{s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant – 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:28;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:526;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:509;a:14:{s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant – 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:29;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:375;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:510;a:14:{s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant – 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:30;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:395;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:511;a:14:{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:503;s:11:\"trend_index\";i:450;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:512;a:14:{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:612;s:11:\"trend_index\";i:657;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:513;a:14:{s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant – 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:31;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:473;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:514;a:14:{s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant – 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:32;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:494;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:515;a:14:{s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop – 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:33;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:592;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:516;a:14:{s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop – 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:34;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:631;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:517;a:14:{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:547;s:11:\"trend_index\";i:612;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:518;a:14:{s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop – 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:35;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:710;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:519;a:14:{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:621;s:11:\"trend_index\";i:714;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:520;a:14:{s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop – 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:36;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:672;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:521;a:14:{s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop – 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:37;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:706;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:522;a:14:{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:657;s:11:\"trend_index\";i:608;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:523;a:14:{s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course – 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:38;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:101;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:524;a:14:{s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course – 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:39;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:293;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:525;a:14:{s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course – 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:40;s:16:\"popularity_index\";i:384;s:11:\"trend_index\";i:203;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:526;a:14:{s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course – 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:41;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:279;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:527;a:14:{s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design – 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:42;s:16:\"popularity_index\";i:376;s:11:\"trend_index\";i:340;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:528;a:14:{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:623;s:11:\"trend_index\";i:682;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:529;a:14:{s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design – 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:43;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:202;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:530;a:14:{s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design – 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:44;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:229;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:531;a:14:{s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design – 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:45;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:231;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:532;a:14:{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:587;s:11:\"trend_index\";i:543;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:533;a:14:{s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography – 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:46;s:16:\"popularity_index\";i:292;s:11:\"trend_index\";i:143;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:534;a:14:{s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography – 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:47;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:480;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:535;a:14:{s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography – 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:48;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:390;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:536;a:14:{s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography – 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:49;s:16:\"popularity_index\";i:550;s:11:\"trend_index\";i:472;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:537;a:14:{s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography – 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:50;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:321;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:538;a:14:{s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography – 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:51;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:637;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:539;a:14:{s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography – 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:52;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:434;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:540;a:14:{s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography – 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:53;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:358;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:541;a:14:{s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography – 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:54;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:574;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:542;a:14:{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:694;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:543;a:14:{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:610;s:11:\"trend_index\";i:702;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:544;a:14:{s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography – 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:55;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:488;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:545;a:14:{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:714;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:546;a:14:{s:2:\"id\";i:12805;s:5:\"title\";s:38:\"Photography – B&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:56;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:555;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:547;a:14:{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:546;s:11:\"trend_index\";i:493;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:548;a:14:{s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography – 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:57;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:518;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:549;a:14:{s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine – 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:58;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:77;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:550;a:14:{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:722;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:551;a:14:{s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel – 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:59;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:211;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:552;a:14:{s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel – 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:60;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:367;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:553;a:14:{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:708;s:11:\"trend_index\";i:701;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:554;a:14:{s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel – 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:61;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:412;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:555;a:14:{s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel – 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:62;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:507;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:556;a:14:{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:665;s:11:\"trend_index\";i:667;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:557;a:14:{s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel – 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:63;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:531;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:558;a:14:{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:553;s:11:\"trend_index\";i:643;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:559;a:14:{s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel – 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:64;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:384;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:560;a:14:{s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel – 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:65;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:482;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:561;a:14:{s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio – 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:66;s:16:\"popularity_index\";i:293;s:11:\"trend_index\";i:319;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:562;a:14:{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:684;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:563;a:14:{s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio – 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:67;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:361;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:564;a:14:{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:506;s:11:\"trend_index\";i:585;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:565;a:14:{s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio – 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:68;s:16:\"popularity_index\";i:415;s:11:\"trend_index\";i:335;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:566;a:14:{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:565;s:11:\"trend_index\";i:366;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:567;a:14:{s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio – 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:69;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:547;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:568;a:14:{s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency – 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:70;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:26;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:569;a:14:{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:713;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:570;a:14:{s:2:\"id\";i:9139;s:5:\"title\";s:25:\"Homepage – 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:71;s:16:\"popularity_index\";i:7;s:11:\"trend_index\";i:7;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:571;a:14:{s:2:\"id\";i:1634;s:5:\"title\";s:33:\"Landing Page – 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:72;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:208;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:572;a:14:{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:641;s:11:\"trend_index\";i:645;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:573;a:14:{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:716;s:11:\"trend_index\";i:705;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:574;a:14:{s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm – 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:73;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:284;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:575;a:14:{s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm – 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:74;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:241;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:576;a:14:{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:647;s:11:\"trend_index\";i:659;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:577;a:14:{s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency – 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:75;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:112;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:578;a:14:{s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym – 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:76;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:589;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:579;a:14:{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:617;s:11:\"trend_index\";i:665;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:580;a:14:{s:2:\"id\";i:1504;s:5:\"title\";s:33:\"Landing Page – 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:77;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:253;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:581;a:14:{s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm – 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:78;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:545;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:582;a:14:{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:667;s:11:\"trend_index\";i:634;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:583;a:14:{s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm – 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:79;s:16:\"popularity_index\";i:218;s:11:\"trend_index\";i:245;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:584;a:14:{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:588;s:11:\"trend_index\";i:633;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:585;a:14:{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:693;s:11:\"trend_index\";i:697;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:586;a:14:{s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm – 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:80;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:478;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:587;a:14:{s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency – 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:81;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:108;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:588;a:14:{s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym – 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:82;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:538;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:589;a:14:{s:2:\"id\";i:1503;s:5:\"title\";s:33:\"Landing Page – 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:83;s:16:\"popularity_index\";i:162;s:11:\"trend_index\";i:187;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:590;a:14:{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:706;s:11:\"trend_index\";i:707;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:591;a:14:{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:664;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:592;a:14:{s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm – 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:84;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:400;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:593;a:14:{s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm – 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:85;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:316;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:594;a:14:{s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency – 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:86;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:184;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:595;a:14:{s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym – 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:87;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:596;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:596;a:14:{s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym – 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:88;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:345;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:597;a:14:{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:710;s:11:\"trend_index\";i:700;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:598;a:14:{s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm – 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:89;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:406;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:599;a:14:{s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency – 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:90;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:365;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:600;a:14:{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:634;s:11:\"trend_index\";i:611;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:601;a:14:{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:668;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:602;a:14:{s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym – 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:91;s:16:\"popularity_index\";i:462;s:11:\"trend_index\";i:391;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:603;a:14:{s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym – 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:92;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:561;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:604;a:14:{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:682;s:11:\"trend_index\";i:711;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:605;a:14:{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:552;s:11:\"trend_index\";i:508;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:606;a:14:{s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency – 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:93;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:123;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:607;a:14:{s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym – 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:94;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:424;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:608;a:14:{s:2:\"id\";i:519;s:5:\"title\";s:24:\"Homepage – 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:95;s:16:\"popularity_index\";i:10;s:11:\"trend_index\";i:32;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:609;a:14:{s:2:\"id\";i:487;s:5:\"title\";s:29:\"Landing Page – 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:96;s:16:\"popularity_index\";i:25;s:11:\"trend_index\";i:76;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:610;a:14:{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:651;s:11:\"trend_index\";i:690;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:611;a:14:{s:2:\"id\";i:855;s:5:\"title\";s:37:\"Landing Page – 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:97;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:373;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:612;a:14:{s:2:\"id\";i:955;s:5:\"title\";s:31:\"Landing Page – 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:98;s:16:\"popularity_index\";i:175;s:11:\"trend_index\";i:331;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:613;a:14:{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:695;s:11:\"trend_index\";i:691;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:614;a:14:{s:2:\"id\";i:9373;s:5:\"title\";s:33:\"Landing Page – 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:99;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:378;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:615;a:14:{s:2:\"id\";i:974;s:5:\"title\";s:28:\"Landing Page – 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:100;s:16:\"popularity_index\";i:302;s:11:\"trend_index\";i:382;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:616;a:14:{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:101;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:79;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:617;a:14:{s:2:\"id\";i:754;s:5:\"title\";s:25:\"Services – 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:102;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:285;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:618;a:14:{s:2:\"id\";i:752;s:5:\"title\";s:24:\"Contact – 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:103;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:557;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:619;a:14:{s:2:\"id\";i:753;s:5:\"title\";s:22:\"About – 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:104;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:441;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:620;a:14:{s:2:\"id\";i:751;s:5:\"title\";s:25:\"Homepage – 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:105;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:372;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:621;a:14:{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:554;s:11:\"trend_index\";i:636;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:622;a:14:{s:2:\"id\";i:2402;s:5:\"title\";s:32:\"Homepage – 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:106;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:275;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:623;a:14:{s:2:\"id\";i:3626;s:5:\"title\";s:30:\"Snowboard Site – 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:107;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:353;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:624;a:14:{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:680;s:11:\"trend_index\";i:655;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:625;a:14:{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:108;s:16:\"popularity_index\";i:502;s:11:\"trend_index\";i:413;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:626;a:14:{s:2:\"id\";i:3632;s:5:\"title\";s:31:\"Snowboard Site – 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:109;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:362;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:627;a:14:{s:2:\"id\";i:3619;s:5:\"title\";s:31:\"Snowboard Site – 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:110;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:438;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:628;a:14:{s:2:\"id\";i:9425;s:5:\"title\";s:38:\"Black Friday – 80’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:111;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:332;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:629;a:14:{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:461;s:11:\"trend_index\";i:656;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:630;a:14:{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:112;s:16:\"popularity_index\";i:447;s:11:\"trend_index\";i:289;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:631;a:14:{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:113;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:260;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:632;a:14:{s:2:\"id\";i:147;s:5:\"title\";s:20:\"Homepage – 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:115;s:16:\"popularity_index\";i:4;s:11:\"trend_index\";i:21;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:633;a:14:{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:671;s:11:\"trend_index\";i:668;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:634;a:14:{s:2:\"id\";i:777;s:5:\"title\";s:28:\"Homepage – 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:116;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:276;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:635;a:14:{s:2:\"id\";i:2404;s:5:\"title\";s:24:\"Homepage – 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:117;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:325;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:636;a:14:{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:500;s:11:\"trend_index\";i:579;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:637;a:14:{s:2:\"id\";i:492;s:5:\"title\";s:25:\"Homepage – 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:118;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:58;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:638;a:14:{s:2:\"id\";i:3451;s:5:\"title\";s:39:\"Homepage – 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:119;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:357;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:639;a:14:{s:2:\"id\";i:2152;s:5:\"title\";s:26:\"Homepage – 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:120;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:477;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:640;a:14:{s:2:\"id\";i:1068;s:5:\"title\";s:27:\"Homepage – 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:121;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:415;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:641;a:14:{s:2:\"id\";i:2813;s:5:\"title\";s:32:\"Homepage – 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:122;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:217;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:642;a:14:{s:2:\"id\";i:728;s:5:\"title\";s:33:\"Homepage – 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:123;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:529;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:643;a:14:{s:2:\"id\";i:2403;s:5:\"title\";s:29:\"Homepage – 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:124;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:339;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:644;a:14:{s:2:\"id\";i:1903;s:5:\"title\";s:20:\"One Page – 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:125;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:227;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:645;a:14:{s:2:\"id\";i:2123;s:5:\"title\";s:33:\"One Page – 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:126;s:16:\"popularity_index\";i:11;s:11:\"trend_index\";i:20;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:646;a:14:{s:2:\"id\";i:1888;s:5:\"title\";s:32:\"One Page – 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:127;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:502;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:647;a:14:{s:2:\"id\";i:1891;s:5:\"title\";s:35:\"One Page – 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:128;s:16:\"popularity_index\";i:427;s:11:\"trend_index\";i:594;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:648;a:14:{s:2:\"id\";i:1880;s:5:\"title\";s:24:\"One Page – 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:129;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:614;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:649;a:14:{s:2:\"id\";i:1885;s:5:\"title\";s:29:\"One Page – 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:130;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:409;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:650;a:14:{s:2:\"id\";i:2723;s:5:\"title\";s:34:\"Portfolio – 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:131;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:282;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:651;a:14:{s:2:\"id\";i:2145;s:5:\"title\";s:30:\"About – 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:132;s:16:\"popularity_index\";i:355;s:11:\"trend_index\";i:630;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:652;a:14:{s:2:\"id\";i:2155;s:5:\"title\";s:23:\"About – 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:133;s:16:\"popularity_index\";i:403;s:11:\"trend_index\";i:584;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:653;a:14:{s:2:\"id\";i:1085;s:5:\"title\";s:21:\"About – 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:134;s:16:\"popularity_index\";i:8;s:11:\"trend_index\";i:10;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:654;a:14:{s:2:\"id\";i:143;s:5:\"title\";s:22:\"About – 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:135;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:68;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:655;a:14:{s:2:\"id\";i:101;s:5:\"title\";s:16:\"About – 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:136;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:173;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:656;a:14:{s:2:\"id\";i:140;s:5:\"title\";s:25:\"About – 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:137;s:16:\"popularity_index\";i:18;s:11:\"trend_index\";i:41;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:657;a:14:{s:2:\"id\";i:213;s:5:\"title\";s:26:\"About – 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:138;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:59;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:658;a:14:{s:2:\"id\";i:2802;s:5:\"title\";s:38:\"Portfolio – 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:139;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:483;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:659;a:14:{s:2:\"id\";i:2828;s:5:\"title\";s:35:\"Landing Page – 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:140;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:560;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:660;a:14:{s:2:\"id\";i:1461;s:5:\"title\";s:28:\"Landing Page – 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:141;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:554;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:661;a:14:{s:2:\"id\";i:1460;s:5:\"title\";s:28:\"Landing Page – 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:142;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:444;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:662;a:14:{s:2:\"id\";i:1459;s:5:\"title\";s:28:\"Landing Page – 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:143;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:283;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:663;a:14:{s:2:\"id\";i:1052;s:5:\"title\";s:33:\"Landing Page – 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:144;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:84;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:664;a:14:{s:2:\"id\";i:1505;s:5:\"title\";s:33:\"Landing Page – 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:145;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:598;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:665;a:14:{s:2:\"id\";i:726;s:5:\"title\";s:33:\"Landing Page – 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:146;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:539;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:666;a:14:{s:2:\"id\";i:1613;s:5:\"title\";s:33:\"Landing Page – 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:147;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:462;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:667;a:14:{s:2:\"id\";i:1612;s:5:\"title\";s:33:\"Landing Page – 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:148;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:673;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:668;a:14:{s:2:\"id\";i:1614;s:5:\"title\";s:33:\"Landing Page – 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:149;s:16:\"popularity_index\";i:382;s:11:\"trend_index\";i:532;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:669;a:14:{s:2:\"id\";i:906;s:5:\"title\";s:29:\"Landing Page – 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:150;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:379;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:670;a:14:{s:2:\"id\";i:879;s:5:\"title\";s:41:\"Landing Page – 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:151;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:370;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:671;a:14:{s:2:\"id\";i:926;s:5:\"title\";s:33:\"Landing Page – 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:152;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:542;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:672;a:14:{s:2:\"id\";i:1032;s:5:\"title\";s:27:\"Landing Page – 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:153;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:558;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:673;a:14:{s:2:\"id\";i:730;s:5:\"title\";s:24:\"Landing Page – 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:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:358;s:11:\"trend_index\";i:525;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:674;a:14:{s:2:\"id\";i:643;s:5:\"title\";s:29:\"Landing Page – 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:155;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:569;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:675;a:14:{s:2:\"id\";i:542;s:5:\"title\";s:28:\"Landing Page – 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:156;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:322;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:676;a:14:{s:2:\"id\";i:1187;s:5:\"title\";s:32:\"Landing Page – 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:157;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:95;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:677;a:14:{s:2:\"id\";i:641;s:5:\"title\";s:28:\"Landing Page – 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:158;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:457;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:678;a:14:{s:2:\"id\";i:189;s:5:\"title\";s:30:\"Landing Page – 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:159;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:44;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:679;a:14:{s:2:\"id\";i:1547;s:5:\"title\";s:30:\"Landing Page – 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:160;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:617;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:680;a:14:{s:2:\"id\";i:1546;s:5:\"title\";s:30:\"Landing Page – 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:161;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:644;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:681;a:14:{s:2:\"id\";i:1545;s:5:\"title\";s:30:\"Landing Page – 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:162;s:16:\"popularity_index\";i:374;s:11:\"trend_index\";i:449;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:682;a:14:{s:2:\"id\";i:2714;s:5:\"title\";s:30:\"Landing Page – 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:163;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:544;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:683;a:14:{s:2:\"id\";i:195;s:5:\"title\";s:28:\"Landing Page – 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:164;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:180;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:684;a:14:{s:2:\"id\";i:197;s:5:\"title\";s:34:\"Landing Page – 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:165;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:383;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:685;a:14:{s:2:\"id\";i:1193;s:5:\"title\";s:34:\"Landing Page – 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:166;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:153;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:686;a:14:{s:2:\"id\";i:1415;s:5:\"title\";s:34:\"Landing Page – 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:167;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:695;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:687;a:14:{s:2:\"id\";i:1414;s:5:\"title\";s:34:\"Landing Page – 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:168;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:641;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:688;a:14:{s:2:\"id\";i:1413;s:5:\"title\";s:34:\"Landing Page – 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:169;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:442;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:689;a:14:{s:2:\"id\";i:1573;s:5:\"title\";s:29:\"Landing Page – 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:2:\"[]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:622;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:690;a:14:{s:2:\"id\";i:1572;s:5:\"title\";s:29:\"Landing Page – 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:2:\"[]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:582;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:691;a:14:{s:2:\"id\";i:1570;s:5:\"title\";s:29:\"Landing Page – 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:172;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:559;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:692;a:14:{s:2:\"id\";i:1571;s:5:\"title\";s:29:\"Landing Page – 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:173;s:16:\"popularity_index\";i:573;s:11:\"trend_index\";i:605;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:693;a:14:{s:2:\"id\";i:192;s:5:\"title\";s:28:\"Landing Page – 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:174;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:262;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:694;a:14:{s:2:\"id\";i:2141;s:5:\"title\";s:32:\"Contact – 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:175;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:470;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:695;a:14:{s:2:\"id\";i:137;s:5:\"title\";s:22:\"Contact – 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:176;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:127;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:696;a:14:{s:2:\"id\";i:256;s:5:\"title\";s:26:\"Contact – 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:177;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:307;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:697;a:14:{s:2:\"id\";i:2150;s:5:\"title\";s:25:\"Contact – 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:178;s:16:\"popularity_index\";i:68;s:11:\"trend_index\";i:183;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:698;a:14:{s:2:\"id\";i:223;s:5:\"title\";s:21:\"Contact – 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:179;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:185;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:699;a:14:{s:2:\"id\";i:24;s:5:\"title\";s:25:\"Contact – 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:180;s:16:\"popularity_index\";i:12;s:11:\"trend_index\";i:15;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:700;a:14:{s:2:\"id\";i:184;s:5:\"title\";s:23:\"Services – 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:181;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:50;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:701;a:14:{s:2:\"id\";i:625;s:5:\"title\";s:31:\"Services – 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:182;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:653;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:702;a:14:{s:2:\"id\";i:187;s:5:\"title\";s:20:\"Services – 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:183;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:232;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:703;a:14:{s:2:\"id\";i:238;s:5:\"title\";s:27:\"Services – 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:184;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:40;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:704;a:14:{s:2:\"id\";i:647;s:5:\"title\";s:33:\"Services – 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:185;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:607;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:705;a:14:{s:2:\"id\";i:2138;s:5:\"title\";s:33:\"Services – 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:186;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:581;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:706;a:14:{s:2:\"id\";i:823;s:5:\"title\";s:19:\"Pricing – 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:187;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:498;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:707;a:14:{s:2:\"id\";i:824;s:5:\"title\";s:24:\"Pricing – 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:188;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:468;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:708;a:14:{s:2:\"id\";i:825;s:5:\"title\";s:24:\"Product – 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:189;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:595;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:709;a:14:{s:2:\"id\";i:245;s:5:\"title\";s:21:\"Product – 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:190;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:132;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:710;a:14:{s:2:\"id\";i:1075;s:5:\"title\";s:19:\"Shop – 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:191;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:104;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:711;a:14:{s:2:\"id\";i:1051;s:5:\"title\";s:24:\"Blog Post – 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:192;s:16:\"popularity_index\";i:17;s:11:\"trend_index\";i:22;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:712;a:14:{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:193;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:286;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:713;a:14:{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:194;s:16:\"popularity_index\";i:32;s:11:\"trend_index\";i:31;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:714;a:14:{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:195;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:597;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:715;a:14:{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:196;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:500;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:716;a:14:{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:197;s:16:\"popularity_index\";i:72;s:11:\"trend_index\";i:134;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:717;a:14:{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:198;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:432;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:718;a:14:{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:199;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:200;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:719;a:14:{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:200;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:354;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:720;a:14:{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:201;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:206;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:721;a:14:{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:202;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:297;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:722;a:14:{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:203;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:388;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:723;a:14:{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:204;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:363;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:724;a:14:{s:2:\"id\";i:3963;s:5:\"title\";s:32:\"Restaurant Site – 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:205;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:298;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:725;a:14:{s:2:\"id\";i:3969;s:5:\"title\";s:28:\"Restaurant Site – 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:206;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:627;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:726;a:14:{s:2:\"id\";i:3966;s:5:\"title\";s:29:\"Restaurant Site – 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:207;s:16:\"popularity_index\";i:257;s:11:\"trend_index\";i:305;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:727;a:14:{s:2:\"id\";i:3972;s:5:\"title\";s:31:\"Restaurant Site – 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:208;s:16:\"popularity_index\";i:363;s:11:\"trend_index\";i:464;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:728;a:14:{s:2:\"id\";i:2080;s:5:\"title\";s:27:\"Ski Resort – 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:209;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:387;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:729;a:14:{s:2:\"id\";i:2088;s:5:\"title\";s:24:\"Ski Resort – 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:210;s:16:\"popularity_index\";i:425;s:11:\"trend_index\";i:513;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:730;a:14:{s:2:\"id\";i:2085;s:5:\"title\";s:27:\"Ski Resort – 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:211;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:689;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:731;a:14:{s:2:\"id\";i:2462;s:5:\"title\";s:23:\"Architect – 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:212;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:616;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:732;a:14:{s:2:\"id\";i:2362;s:5:\"title\";s:26:\"Architect – 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:213;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:572;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:733;a:14:{s:2:\"id\";i:614;s:5:\"title\";s:25:\"Architect – 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:214;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:392;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:734;a:14:{s:2:\"id\";i:2126;s:5:\"title\";s:37:\"Construction Company – 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:215;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:333;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:735;a:14:{s:2:\"id\";i:2129;s:5:\"title\";s:34:\"Construction Company – 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:216;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:521;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:736;a:14:{s:2:\"id\";i:2135;s:5:\"title\";s:36:\"Construction Company – 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:217;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:414;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:737;a:14:{s:2:\"id\";i:2094;s:5:\"title\";s:28:\"Plants Shop – 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:218;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:189;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:738;a:14:{s:2:\"id\";i:2120;s:5:\"title\";s:25:\"Plants Shop – 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:219;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:352;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:739;a:14:{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:220;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:0;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:740;a:14:{s:2:\"id\";i:3338;s:5:\"title\";s:31:\"Black Friday – 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:221;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:683;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:741;a:14:{s:2:\"id\";i:3339;s:5:\"title\";s:35:\"Black Friday – 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:222;s:16:\"popularity_index\";i:487;s:11:\"trend_index\";i:679;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:742;a:14:{s:2:\"id\";i:3335;s:5:\"title\";s:31:\"Black Friday – 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:223;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:602;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:743;a:14:{s:2:\"id\";i:3340;s:5:\"title\";s:41:\"Black Friday – 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:224;s:16:\"popularity_index\";i:460;s:11:\"trend_index\";i:639;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:744;a:14:{s:2:\"id\";i:3517;s:5:\"title\";s:27:\"Christmas – 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:225;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:593;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:745;a:14:{s:2:\"id\";i:3734;s:5:\"title\";s:28:\"Christmas – 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:226;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:604;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:746;a:14:{s:2:\"id\";i:3764;s:5:\"title\";s:33:\"Christmas – 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:227;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:669;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:747;a:14:{s:2:\"id\";i:3565;s:5:\"title\";s:27:\"Christmas – 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:228;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:527;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:748;a:14:{s:2:\"id\";i:3862;s:5:\"title\";s:35:\"Christmas – 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:229;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:651;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:749;a:14:{s:2:\"id\";i:3777;s:5:\"title\";s:39:\"Christmas – 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:230;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:688;s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:750;a:14:{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:231;s:16:\"popularity_index\";i:20;s:11:\"trend_index\";i:62;s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no'),(169,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:47:\"Elementor Sites of the Month — September 2020\";s:7:\"excerpt\";s:325:\"Get ready to see some of the best magazine and blog websites built with Elementor. This month’s showcase explores the top ten magazine or blog websites from our user community, and shows prime examples for how to design your next blog or magazine site, with many unique options for layout, color schemes, motifs, and so on.\";s:7:\"created\";i:1602495962;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/showcase-september-2020/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:36:\"The Complete WordPress Sidebar Guide\";s:7:\"excerpt\";s:150:\"Learn how sidebars can improve your site navigation and help you convert more of your traffic with the aid of the right widgets and good use of space.\";s:7:\"created\";i:1602398496;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/wordpress-sidebar-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:50:\"How to Write a Great Website Brief + Free Template\";s:7:\"excerpt\";s:152:\"A good website design brief is paramount to a successful web design project. Make sure that your project is a success with a well-crafted design brief. \";s:7:\"created\";i:1601540958;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:120:\"https://elementor.com/blog/create-website-brief/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:34:\"Introducing Design System Features\";s:7:\"excerpt\";s:211:\"Elementor 3.0 is finally here, and it brings a whole new way to build sites. Get ready for a special 3-in-1 release that includes: Design System Features, New Theme Builder and major performance improvements.\";s:7:\"created\";i:1601465340;s:5:\"badge\";s:11:\"New Feature\";s:3:\"url\";s:137:\"https://elementor.com/blog/elementor-3-new-professional-features/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:60:\"WordPress Troubleshooting: Common Errors and How to Fix Them\";s:7:\"excerpt\";s:157:\"Have you come across an error and are unsure how to fix it? Follow this comprehensive guide to the most common WordPress errors and learn how to fix them.\";s:7:\"created\";i:1601378179;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:132:\"https://elementor.com/blog/troubleshooting-wordpress-errors/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(174,'widget_new_york_business_lite_latest_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(175,'widget_new_york_business_product_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(176,'theme_mods_fancy-shop','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:3:\"top\";i:20;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1603544667;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:13:\"media_image-3\";i:1;s:10:\"archives-2\";i:2;s:6:\"meta-2\";i:3;s:8:\"search-2\";i:4;s:6:\"text-2\";i:5;s:6:\"text-3\";i:6;s:12:\"categories-2\";i:7;s:14:\"recent-posts-2\";i:8;s:17:\"recent-comments-2\";}s:9:\"header-ad\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:19:\"sidebar-woocommerce\";a:0:{}s:16:\"footer-sidebar-1\";a:0:{}s:16:\"footer-sidebar-2\";a:0:{}s:16:\"footer-sidebar-3\";a:0:{}s:16:\"footer-sidebar-4\";a:0:{}s:11:\"home-blog-1\";a:0:{}s:18:\"smartslider_area_1\";a:0:{}}}}','yes'),(181,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1602858647;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}}}}','yes'),(183,'current_theme','Flatsome Child','yes'),(184,'theme_switched','','yes'),(185,'theme_switched_via_customizer','','yes'),(186,'customize_stashed_theme_mods','a:0:{}','no'),(190,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1602859049;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}}}}','yes'),(192,'theme_mods_instock-lite','a:4:{s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:51;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1602859254;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:8:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:6:\"text-2\";i:4;s:6:\"text-3\";i:5;s:12:\"categories-2\";i:6;s:14:\"recent-posts-2\";i:7;s:17:\"recent-comments-2\";}s:7:\"primary\";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:{}}}}','yes'),(197,'_elementor_global_css','a:6:{s:4:\"time\";i:1602859660;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'),(212,'_transient_health-check-site-status-result','{\"good\":9,\"recommended\":10,\"critical\":1}','yes'),(239,'action_scheduler_hybrid_store_demarkation','72','yes'),(240,'schema-ActionScheduler_StoreSchema','3.0.1603087068','yes'),(241,'schema-ActionScheduler_LoggerSchema','2.0.1603087071','yes'),(245,'woocommerce_schema_version','430','yes'),(246,'woocommerce_store_address','13 Logies Bay Road','yes'),(247,'woocommerce_store_address_2','','yes'),(248,'woocommerce_store_city','Cape Town','yes'),(249,'woocommerce_default_country','ZA:WC','yes'),(250,'woocommerce_store_postcode','7806','yes'),(251,'woocommerce_allowed_countries','specific','yes'),(252,'woocommerce_all_except_countries','a:0:{}','yes'),(253,'woocommerce_specific_allowed_countries','a:1:{i:0;s:2:\"ZA\";}','yes'),(254,'woocommerce_ship_to_countries','specific','yes'),(255,'woocommerce_specific_ship_to_countries','a:1:{i:0;s:2:\"ZA\";}','yes'),(256,'woocommerce_default_customer_address','','yes'),(257,'woocommerce_calc_taxes','yes','yes'),(258,'woocommerce_enable_coupons','no','yes'),(259,'woocommerce_calc_discounts_sequentially','no','no'),(260,'woocommerce_currency','ZAR','yes'),(261,'woocommerce_currency_pos','left','yes'),(262,'woocommerce_price_thousand_sep',',','yes'),(263,'woocommerce_price_decimal_sep','.','yes'),(264,'woocommerce_price_num_decimals','2','yes'),(265,'woocommerce_shop_page_id','73','yes'),(266,'woocommerce_cart_redirect_after_add','no','yes'),(267,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(268,'woocommerce_placeholder_image','72','yes'),(269,'woocommerce_weight_unit','kg','yes'),(270,'woocommerce_dimension_unit','cm','yes'),(271,'woocommerce_enable_reviews','yes','yes'),(272,'woocommerce_review_rating_verification_label','yes','no'),(273,'woocommerce_review_rating_verification_required','yes','no'),(274,'woocommerce_enable_review_rating','yes','yes'),(275,'woocommerce_review_rating_required','yes','no'),(276,'woocommerce_manage_stock','yes','yes'),(277,'woocommerce_hold_stock_minutes','60','no'),(278,'woocommerce_notify_low_stock','yes','no'),(279,'woocommerce_notify_no_stock','yes','no'),(280,'woocommerce_stock_email_recipient','info@thedragonhouse.co.za','no'),(281,'woocommerce_notify_low_stock_amount','2','no'),(282,'woocommerce_notify_no_stock_amount','0','yes'),(283,'woocommerce_hide_out_of_stock_items','no','yes'),(284,'woocommerce_stock_format','','yes'),(285,'woocommerce_file_download_method','force','no'),(286,'woocommerce_downloads_require_login','no','no'),(287,'woocommerce_downloads_grant_access_after_payment','yes','no'),(288,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(289,'woocommerce_prices_include_tax','no','yes'),(290,'woocommerce_tax_based_on','billing','yes'),(291,'woocommerce_shipping_tax_class','','yes'),(292,'woocommerce_tax_round_at_subtotal','yes','yes'),(293,'woocommerce_tax_classes','','yes'),(294,'woocommerce_tax_display_shop','excl','yes'),(295,'woocommerce_tax_display_cart','incl','yes'),(296,'woocommerce_price_display_suffix','','yes'),(297,'woocommerce_tax_total_display','single','no'),(298,'woocommerce_enable_shipping_calc','yes','no'),(299,'woocommerce_shipping_cost_requires_address','no','yes'),(300,'woocommerce_ship_to_destination','billing','no'),(301,'woocommerce_shipping_debug_mode','no','yes'),(302,'woocommerce_enable_guest_checkout','yes','no'),(303,'woocommerce_enable_checkout_login_reminder','no','no'),(304,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(305,'woocommerce_enable_myaccount_registration','yes','no'),(306,'woocommerce_registration_generate_username','no','no'),(307,'woocommerce_registration_generate_password','no','no'),(308,'woocommerce_erasure_request_removes_order_data','no','no'),(309,'woocommerce_erasure_request_removes_download_data','no','no'),(310,'woocommerce_allow_bulk_remove_personal_data','no','no'),(311,'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'),(312,'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'),(313,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:5:\"years\";}','no'),(314,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(315,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(316,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(317,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(318,'woocommerce_email_from_name','The Dragon Fashion House and Accessories','no'),(319,'woocommerce_email_from_address','info@thedragonhouse.co.za','no'),(320,'woocommerce_email_header_image','','no'),(321,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no'),(322,'woocommerce_email_base_color','#96588a','no'),(323,'woocommerce_email_background_color','#f7f7f7','no'),(324,'woocommerce_email_body_background_color','#ffffff','no'),(325,'woocommerce_email_text_color','#3c3c3c','no'),(326,'woocommerce_cart_page_id','74','no'),(327,'woocommerce_checkout_page_id','75','no'),(328,'woocommerce_myaccount_page_id','76','no'),(329,'action_scheduler_lock_async-request-runner','1760903669','yes'),(330,'woocommerce_terms_page_id','','no'),(331,'woocommerce_force_ssl_checkout','no','yes'),(332,'woocommerce_unforce_ssl_checkout','no','yes'),(333,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(334,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(335,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(336,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(337,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(338,'woocommerce_myaccount_orders_endpoint','orders','yes'),(339,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(340,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(341,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(342,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(343,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(344,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(345,'woocommerce_logout_endpoint','customer-logout','yes'),(346,'woocommerce_api_enabled','no','yes'),(347,'woocommerce_allow_tracking','no','no'),(348,'woocommerce_show_marketplace_suggestions','yes','no'),(349,'woocommerce_single_image_width','510','yes'),(350,'woocommerce_thumbnail_image_width','247','yes'),(351,'woocommerce_checkout_highlight_required_fields','yes','yes'),(352,'woocommerce_demo_store','yes','yes'),(353,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"7zHcByDqIeE77cQ2xb4E1YbPfkEP5NpU\";}','yes'),(354,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(355,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(356,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(357,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(358,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(359,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(360,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(361,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(362,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(363,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(364,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(365,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(366,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(367,'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'),(369,'current_theme_supports_woocommerce','yes','yes'),(370,'woocommerce_queue_flush_rewrite_rules','no','yes'),(371,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(372,'woocommerce_task_list_hidden','yes','yes'),(376,'woocommerce_admin_install_timestamp','1603087110','yes'),(380,'wc_admin_note_home_screen_feedback_homescreen_accessed','1603087112','yes'),(382,'wc_blocks_db_schema_version','260','yes'),(383,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','yes'),(384,'wc_remote_inbox_notifications_specs','a:48:{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§ion=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 > 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§ion=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§ion=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§ion=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§ion=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: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§ion=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§ion=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 & 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\";}}}}','yes'),(385,'woocommerce_admin_notices','a:3:{i:0;s:6:\"update\";i:1;s:20:\"no_secure_connection\";i:2;s:14:\"template_files\";}','yes'),(386,'woocommerce_meta_box_errors','a:0:{}','yes'),(388,'default_product_cat','15','yes'),(402,'_transient_woocommerce_reports-transient-version','1757769307','yes'),(420,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),(565,'_transient_product_query-transient-version','1606399131','yes'),(582,'theme_mods_storefront','a:10:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:20;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:117;s:32:\"storefront_button_alt_text_color\";s:7:\"#ffffff\";s:16:\"background_color\";s:6:\"ffffff\";s:16:\"background_image\";s:0:\"\";s:23:\"storefront_accent_color\";s:7:\"#96588a\";s:17:\"storefront_layout\";s:5:\"right\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1603544439;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:13:\"media_image-3\";i:1;s:10:\"archives-2\";i:2;s:6:\"meta-2\";i:3;s:8:\"search-2\";i:4;s:6:\"text-2\";i:5;s:6:\"text-3\";i:6;s:12:\"categories-2\";i:7;s:14:\"recent-posts-2\";i:8;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}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:18:\"smartslider_area_1\";a:0:{}}}}','yes'),(583,'storefront_nux_fresh_site','0','yes'),(584,'woocommerce_catalog_rows','4','yes'),(585,'woocommerce_catalog_columns','3','yes'),(586,'woocommerce_maybe_regenerate_images_hash','958afab2d0b050fa8d8b61b9b9cd31bf','yes'),(601,'storefront_nux_guided_tour','1','yes'),(628,'storefront_nux_dismissed','1','yes'),(634,'_transient_product-transient-version','1603804586','yes'),(638,'_transient_shipping-transient-version','1603551920','yes'),(718,'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:1603532282;}','no'),(768,'n2_ss3_version','3.4.1.9/b:release-3.4.1.9/r:ff7f6f5b913ef30a4f05bac46d8c29a2841babcb','yes'),(769,'widget_smartslider3','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(770,'vc_save_data','a:27:{s:6:\"banner\";s:2:\"on\";s:3:\"ihe\";s:2:\"on\";s:11:\"price_table\";s:2:\"on\";s:13:\"advance_price\";s:2:\"on\";s:8:\"info_box\";s:2:\"on\";s:11:\"advance_btn\";s:2:\"on\";s:9:\"team_prof\";s:2:\"on\";s:12:\"adv_carousel\";s:2:\"on\";s:7:\"counter\";s:2:\"on\";s:8:\"flip_box\";s:2:\"on\";s:8:\"timeline\";s:2:\"on\";s:9:\"countdown\";s:2:\"on\";s:13:\"creative_link\";s:2:\"on\";s:10:\"text_typer\";s:2:\"on\";s:11:\"social_icon\";s:2:\"on\";s:5:\"popup\";s:2:\"on\";s:18:\"interactive_banner\";s:2:\"on\";s:9:\"info_list\";s:2:\"on\";s:12:\"google_trend\";s:2:\"on\";s:7:\"tooltip\";s:2:\"on\";s:11:\"testimonial\";s:2:\"on\";s:7:\"heading\";s:2:\"on\";s:13:\"highlight_box\";s:2:\"on\";s:8:\"img_swap\";s:2:\"on\";s:9:\"accordion\";s:2:\"on\";s:11:\"info_circle\";s:2:\"on\";s:14:\"filter_gallery\";s:2:\"on\";}','yes'),(775,'action_scheduler_migration_status','complete','yes'),(820,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(917,'theme_mods_shuttle-dark','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:15:\"pre_header_menu\";i:20;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1603539820;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:13:\"media_image-3\";i:1;s:10:\"archives-2\";i:2;s:6:\"meta-2\";i:3;s:8:\"search-2\";i:4;s:6:\"text-2\";i:5;s:6:\"text-3\";i:6;s:12:\"categories-2\";i:7;s:14:\"recent-posts-2\";i:8;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"footer-w1\";a:0:{}s:9:\"footer-w2\";a:0:{}s:9:\"footer-w3\";a:0:{}s:9:\"footer-w4\";a:0:{}s:9:\"footer-w5\";a:0:{}s:9:\"footer-w6\";a:0:{}s:13:\"sub-footer-w1\";a:0:{}s:13:\"sub-footer-w2\";a:0:{}s:18:\"smartslider_area_1\";a:0:{}}}}','yes'),(920,'shuttle_redux_variables','a:8:{s:26:\"shuttle_header_styleswitch\";s:0:\"\";s:18:\"shuttle_blog_style\";s:0:\"\";s:25:\"shuttle_blog_style1layout\";s:0:\"\";s:25:\"shuttle_blog_style2layout\";s:0:\"\";s:26:\"shuttle_styles_colorswitch\";s:0:\"\";s:26:\"shuttle_styles_colorcustom\";s:0:\"\";s:25:\"shuttle_styles_skinswitch\";s:0:\"\";s:19:\"shuttle_styles_skin\";s:0:\"\";}','yes'),(1181,'theme_mods_flatsome','a:79:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:20;}s:17:\"flatsome_fallback\";i:1;s:20:\"topbar_elements_left\";a:1:{i:0;s:4:\"html\";}s:21:\"topbar_elements_right\";a:3:{i:0;s:7:\"nav-top\";i:1;s:10:\"newsletter\";i:2;s:6:\"social\";}s:20:\"header_elements_left\";a:2:{i:0;s:6:\"search\";i:1;s:3:\"nav\";}s:21:\"header_elements_right\";a:3:{i:0;s:7:\"account\";i:1;s:7:\"divider\";i:2;s:4:\"cart\";}s:27:\"header_elements_bottom_left\";a:0:{}s:29:\"header_elements_bottom_center\";a:0:{}s:28:\"header_elements_bottom_right\";a:0:{}s:27:\"header_mobile_elements_left\";a:1:{i:0;s:9:\"menu-icon\";}s:28:\"header_mobile_elements_right\";a:1:{i:0;s:4:\"cart\";}s:26:\"header_mobile_elements_top\";a:1:{i:0;s:4:\"html\";}s:14:\"mobile_sidebar\";a:7:{i:0;s:11:\"search-form\";i:1;s:3:\"nav\";i:2;s:7:\"account\";i:3;s:10:\"newsletter\";i:4;s:6:\"social\";i:5;s:6:\"html-2\";i:6;s:6:\"html-3\";}s:14:\"product_layout\";s:19:\"right-sidebar-small\";s:23:\"payment_icons_placement\";s:6:\"footer\";s:14:\"follow_twitter\";s:10:\"http://url\";s:15:\"follow_facebook\";s:10:\"http://url\";s:16:\"follow_instagram\";s:10:\"http://url\";s:12:\"follow_email\";s:10:\"your@email\";s:16:\"flatsome_version\";i:3;s:24:\"portfolio_archive_filter\";s:4:\"left\";s:13:\"type_headings\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:10:\"type_texts\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"400\";}s:8:\"type_nav\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:8:\"type_alt\";a:2:{s:11:\"font-family\";s:14:\"Dancing Script\";s:7:\"variant\";s:3:\"400\";}s:14:\"pages_template\";s:7:\"default\";s:7:\"backups\";N;s:9:\"smof_init\";s:31:\"Sat, 24 Oct 2020 13:01:37 +0000\";s:19:\"html_scripts_header\";s:0:\"\";s:19:\"html_scripts_footer\";s:0:\"\";s:23:\"html_scripts_after_body\";s:0:\"\";s:24:\"html_scripts_before_body\";s:0:\"\";s:15:\"html_custom_css\";s:0:\"\";s:22:\"html_custom_css_tablet\";s:0:\"\";s:22:\"html_custom_css_mobile\";s:0:\"\";s:17:\"perf_instant_page\";i:0;s:21:\"lazy_load_backgrounds\";i:1;s:16:\"lazy_load_images\";i:0;s:26:\"flatsome_disable_style_css\";i:0;s:13:\"disable_emoji\";i:0;s:16:\"disable_blockcss\";i:0;s:14:\"jquery_migrate\";i:0;s:11:\"site_loader\";s:0:\"\";s:17:\"site_loader_color\";s:5:\"light\";s:14:\"site_loader_bg\";s:0:\"\";s:11:\"live_search\";i:1;s:18:\"search_placeholder\";s:0:\"\";s:13:\"search_result\";i:1;s:19:\"search_result_style\";s:6:\"slider\";s:24:\"search_products_order_by\";s:9:\"relevance\";s:13:\"search_by_sku\";i:0;s:21:\"search_by_product_tag\";i:0;s:14:\"google_map_api\";s:0:\"\";s:16:\"maintenance_mode\";i:0;s:29:\"maintenance_mode_admin_notice\";i:1;s:21:\"maintenance_mode_page\";i:0;s:21:\"maintenance_mode_text\";s:24:\"Please check back soon..\";s:9:\"404_block\";i:0;s:15:\"disable_reviews\";i:0;s:27:\"product_gallery_woocommerce\";i:0;s:14:\"html_shop_page\";s:0:\"\";s:9:\"tab_title\";s:0:\"\";s:11:\"tab_content\";s:0:\"\";s:23:\"html_before_add_to_cart\";s:1:\" \";s:22:\"html_after_add_to_cart\";s:0:\"\";s:14:\"html_thank_you\";s:0:\"\";s:12:\"catalog_mode\";i:0;s:19:\"catalog_mode_prices\";i:0;s:19:\"catalog_mode_header\";s:0:\"\";s:20:\"catalog_mode_product\";s:0:\"\";s:21:\"catalog_mode_lightbox\";s:0:\"\";s:24:\"flatsome_infinite_scroll\";i:0;s:27:\"infinite_scroll_loader_type\";s:7:\"spinner\";s:26:\"infinite_scroll_loader_img\";s:0:\"\";s:16:\"activated_before\";b:1;s:19:\"flatsome_db_version\";s:6:\"3.12.2\";s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1603544722;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:13:\"media_image-3\";i:1;s:10:\"archives-2\";i:2;s:6:\"meta-2\";i:3;s:8:\"search-2\";i:4;s:6:\"text-2\";i:5;s:6:\"text-3\";i:6;s:12:\"categories-2\";i:7;s:14:\"recent-posts-2\";i:8;s:17:\"recent-comments-2\";}s:12:\"sidebar-main\";a:0:{}s:16:\"sidebar-footer-1\";a:0:{}s:16:\"sidebar-footer-2\";a:0:{}s:12:\"shop-sidebar\";a:0:{}s:15:\"product-sidebar\";a:0:{}s:18:\"smartslider_area_1\";a:0:{}}}}','yes'),(1184,'widget_flatsome_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1185,'widget_block_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1186,'widget_upsell_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1187,'woocommerce_thumbnail_cropping','custom','yes'),(1188,'woocommerce_thumbnail_cropping_custom_width','5','yes'),(1189,'woocommerce_thumbnail_cropping_custom_height','8','yes'),(1257,'flatsome_wup_purchase_code','7b407190-a20d-4a4a-ba48-3c4b6ed0d114','yes'),(1258,'flatsome_wup_sold_at','2020-10-24T23:52:10+11:00','yes'),(1259,'flatsome_wup_supported_until','2021-04-25T13:52:10+10:00','yes'),(1260,'flatsome_wup_buyer','pdkotze','yes'),(1263,'widget_fancy_shop_product_nav_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1264,'widget_fancy_shop_product_carousal_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1265,'widget_new_york_business_product_category_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1271,'allowedthemes','a:1:{s:14:\"flatsome-child\";b:1;}','no'),(1272,'fl_has_child_theme','flatsome-child','yes'),(1274,'theme_mods_flatsome-child','a:153:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:20;s:11:\"top_bar_nav\";i:0;}s:17:\"flatsome_fallback\";i:1;s:20:\"topbar_elements_left\";a:0:{}s:21:\"topbar_elements_right\";a:2:{i:0;s:8:\"wishlist\";i:1;s:7:\"contact\";}s:20:\"header_elements_left\";a:1:{i:0;s:11:\"search-form\";}s:21:\"header_elements_right\";a:3:{i:0;s:7:\"account\";i:1;s:7:\"divider\";i:2;s:4:\"cart\";}s:27:\"header_elements_bottom_left\";a:1:{i:0;s:3:\"nav\";}s:29:\"header_elements_bottom_center\";a:0:{}s:28:\"header_elements_bottom_right\";a:0:{}s:27:\"header_mobile_elements_left\";a:1:{i:0;s:9:\"menu-icon\";}s:28:\"header_mobile_elements_right\";a:1:{i:0;s:4:\"cart\";}s:26:\"header_mobile_elements_top\";a:1:{i:0;s:4:\"html\";}s:14:\"mobile_sidebar\";a:5:{i:0;s:11:\"search-form\";i:1;s:3:\"nav\";i:2;s:7:\"account\";i:3;s:6:\"html-2\";i:4;s:6:\"html-3\";}s:14:\"product_layout\";s:19:\"right-sidebar-small\";s:23:\"payment_icons_placement\";s:6:\"footer\";s:14:\"follow_twitter\";s:10:\"http://url\";s:15:\"follow_facebook\";s:10:\"http://url\";s:16:\"follow_instagram\";s:10:\"http://url\";s:12:\"follow_email\";s:10:\"your@email\";s:16:\"flatsome_version\";i:3;s:24:\"portfolio_archive_filter\";s:4:\"left\";s:13:\"type_headings\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:10:\"type_texts\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"400\";}s:8:\"type_nav\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:8:\"type_alt\";a:2:{s:11:\"font-family\";s:14:\"Dancing Script\";s:7:\"variant\";s:3:\"400\";}s:14:\"pages_template\";s:18:\"blank-title-center\";s:11:\"site_loader\";s:0:\"\";s:19:\"flatsome_db_version\";s:6:\"3.12.2\";s:7:\"backups\";N;s:9:\"smof_init\";s:31:\"Sat, 24 Oct 2020 13:06:25 +0000\";s:19:\"html_scripts_header\";s:0:\"\";s:19:\"html_scripts_footer\";s:0:\"\";s:23:\"html_scripts_after_body\";s:0:\"\";s:24:\"html_scripts_before_body\";s:0:\"\";s:15:\"html_custom_css\";s:0:\"\";s:22:\"html_custom_css_tablet\";s:0:\"\";s:22:\"html_custom_css_mobile\";s:0:\"\";s:17:\"perf_instant_page\";i:0;s:21:\"lazy_load_backgrounds\";i:1;s:16:\"lazy_load_images\";i:0;s:26:\"flatsome_disable_style_css\";i:0;s:13:\"disable_emoji\";i:0;s:16:\"disable_blockcss\";i:0;s:14:\"jquery_migrate\";i:0;s:17:\"site_loader_color\";s:5:\"light\";s:14:\"site_loader_bg\";s:0:\"\";s:11:\"live_search\";i:1;s:18:\"search_placeholder\";s:0:\"\";s:13:\"search_result\";i:1;s:19:\"search_result_style\";s:6:\"slider\";s:24:\"search_products_order_by\";s:9:\"relevance\";s:13:\"search_by_sku\";i:0;s:21:\"search_by_product_tag\";i:0;s:14:\"google_map_api\";s:0:\"\";s:16:\"maintenance_mode\";i:0;s:29:\"maintenance_mode_admin_notice\";i:1;s:21:\"maintenance_mode_page\";i:0;s:21:\"maintenance_mode_text\";s:24:\"Please check back soon..\";s:9:\"404_block\";i:0;s:15:\"disable_reviews\";i:0;s:27:\"product_gallery_woocommerce\";i:0;s:14:\"html_shop_page\";s:0:\"\";s:9:\"tab_title\";s:0:\"\";s:11:\"tab_content\";s:0:\"\";s:23:\"html_before_add_to_cart\";s:1:\" \";s:22:\"html_after_add_to_cart\";s:0:\"\";s:14:\"html_thank_you\";s:0:\"\";s:12:\"catalog_mode\";i:0;s:19:\"catalog_mode_prices\";i:0;s:19:\"catalog_mode_header\";s:0:\"\";s:20:\"catalog_mode_product\";s:0:\"\";s:21:\"catalog_mode_lightbox\";s:0:\"\";s:24:\"flatsome_infinite_scroll\";i:0;s:27:\"infinite_scroll_loader_type\";s:7:\"spinner\";s:26:\"infinite_scroll_loader_img\";s:0:\"\";s:9:\"site_logo\";s:82:\"http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Logo-2-Dragon-House.png\";s:18:\"custom_css_post_id\";i:-1;s:13:\"logo_position\";s:4:\"left\";s:10:\"logo_width\";s:3:\"166\";s:12:\"logo_padding\";s:1:\"0\";s:16:\"site_logo_slogan\";b:0;s:17:\"search_icon_style\";s:4:\"fill\";s:19:\"header_search_style\";s:8:\"lightbox\";s:11:\"preset_demo\";s:15:\"header-wide-nav\";s:22:\"topbar_elements_center\";a:0:{}s:29:\"header_mobile_elements_bottom\";a:0:{}s:11:\"topbar_show\";b:1;s:12:\"topbar_color\";s:5:\"light\";s:9:\"topbar_bg\";s:0:\"\";s:13:\"nav_style_top\";s:7:\"divided\";s:12:\"header_width\";s:9:\"container\";s:13:\"header_height\";s:2:\"91\";s:12:\"header_color\";s:5:\"light\";s:9:\"header_bg\";s:21:\"rgba(255,255,255,0.9)\";s:20:\"header_bg_img_repeat\";s:8:\"repeat-x\";s:17:\"box_shadow_header\";b:0;s:9:\"nav_style\";s:0:\"\";s:8:\"nav_size\";s:0:\"\";s:13:\"nav_uppercase\";b:0;s:14:\"type_nav_color\";s:0:\"\";s:20:\"type_nav_color_hover\";s:0:\"\";s:25:\"header_height_transparent\";s:2:\"30\";s:21:\"header_bg_transparent\";s:0:\"\";s:27:\"header_bg_transparent_shade\";b:0;s:20:\"header_bottom_height\";s:2:\"43\";s:15:\"nav_position_bg\";s:7:\"#000000\";s:16:\"nav_style_bottom\";s:0:\"\";s:15:\"nav_size_bottom\";s:6:\"medium\";s:20:\"nav_uppercase_bottom\";b:0;s:18:\"nav_position_color\";s:4:\"dark\";s:21:\"type_nav_bottom_color\";s:0:\"\";s:27:\"type_nav_bottom_color_hover\";s:0:\"\";s:9:\"cart_icon\";s:6:\"basket\";s:17:\"header_top_height\";s:2:\"30\";s:18:\"account_icon_style\";s:5:\"image\";s:13:\"color_primary\";s:7:\"#d5b3c5\";s:20:\"flatsome_lightbox_bg\";s:7:\"#000000\";s:16:\"footer_left_text\";s:69:\"Copyright [ux_current_year] © The Dragon Fashion House & Accessories\";s:13:\"default_title\";b:1;s:15:\"category_shadow\";s:1:\"0\";s:21:\"category_shadow_hover\";s:1:\"0\";s:11:\"body_layout\";s:6:\"framed\";s:13:\"content_color\";s:5:\"light\";s:19:\"featured_items_page\";s:4:\"shop\";s:14:\"header-block-1\";s:1:\"0\";s:11:\"topbar_left\";s:44:\"<strong class=\"uppercase\">Stay Safe</strong>\";s:10:\"nav_height\";s:2:\"16\";s:17:\"nav_height_bottom\";s:2:\"16\";s:17:\"dropdown_nav_size\";s:3:\"100\";s:19:\"dropdown_text_style\";s:6:\"simple\";s:13:\"contact_phone\";s:0:\"\";s:13:\"contact_email\";s:25:\"info@thedragonhouse.co.za\";s:13:\"contact_hours\";s:0:\"\";s:13:\"contact_style\";s:4:\"left\";s:19:\"contact_email_label\";s:0:\"\";s:22:\"contact_location_label\";s:0:\"\";s:28:\"woocommerce_store_notice_top\";b:1;s:16:\"category_sidebar\";s:4:\"none\";s:19:\"category_grid_style\";s:4:\"list\";s:27:\"category_force_image_height\";b:0;s:21:\"category_image_height\";s:2:\"99\";s:19:\"category_show_title\";b:0;s:27:\"category_header_transparent\";b:0;s:15:\"breadcrumb_size\";s:6:\"medium\";s:15:\"breadcrumb_case\";s:0:\"\";s:9:\"cat_style\";s:5:\"badge\";s:13:\"product_hover\";s:7:\"zoom_in\";s:17:\"add_to_cart_style\";s:4:\"flat\";s:18:\"product_box_rating\";b:0;s:20:\"equalize_product_box\";b:1;s:12:\"bubble_style\";s:6:\"style2\";s:18:\"category_row_count\";s:1:\"3\";}','yes'),(1279,'wpcf7','a:2:{s:7:\"version\";s:3:\"5.3\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1603544803;s:7:\"version\";s:3:\"5.3\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(1282,'nsl-version','3.0.25','yes'),(1283,'widget_nextend_social_login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1285,'yit_recently_activated','a:1:{i:0;s:34:\"yith-woocommerce-wishlist/init.php\";}','yes'),(1286,'yith_wcwl_wishlist_page_id','148','yes'),(1287,'yith_wcwl_version','3.0.15','yes'),(1288,'yith_wcwl_db_version','3.0.0','yes'),(1289,'yith_wcwl_ajax_enable','no','yes'),(1290,'yith_wfbt_enable_integration','yes','yes'),(1291,'yith_wcwl_after_add_to_wishlist_behaviour','view','yes'),(1292,'yith_wcwl_show_on_loop','no','yes'),(1293,'yith_wcwl_loop_position','after_add_to_cart','yes'),(1294,'yith_wcwl_button_position','after_add_to_cart','yes'),(1295,'yith_wcwl_add_to_wishlist_text','Add to wishlist','yes'),(1296,'yith_wcwl_product_added_text','Product added!','yes'),(1297,'yith_wcwl_browse_wishlist_text','Browse wishlist','yes'),(1298,'yith_wcwl_already_in_wishlist_text','The product is already in your wishlist!','yes'),(1299,'yith_wcwl_add_to_wishlist_style','link','yes'),(1300,'yith_wcwl_rounded_corners_radius','16','yes'),(1301,'yith_wcwl_add_to_wishlist_icon','fa-heart-o','yes'),(1302,'yith_wcwl_add_to_wishlist_custom_icon','','yes'),(1303,'yith_wcwl_added_to_wishlist_icon','fa-heart','yes'),(1304,'yith_wcwl_added_to_wishlist_custom_icon','','yes'),(1305,'yith_wcwl_custom_css','','yes'),(1306,'yith_wcwl_variation_show','','yes'),(1307,'yith_wcwl_price_show','','yes'),(1308,'yith_wcwl_stock_show','','yes'),(1309,'yith_wcwl_show_dateadded','','yes'),(1310,'yith_wcwl_add_to_cart_show','','yes'),(1311,'yith_wcwl_show_remove','yes','yes'),(1312,'yith_wcwl_repeat_remove_button','','yes'),(1313,'yith_wcwl_redirect_cart','no','yes'),(1314,'yith_wcwl_remove_after_add_to_cart','yes','yes'),(1315,'yith_wcwl_enable_share','yes','yes'),(1316,'yith_wcwl_share_fb','yes','yes'),(1317,'yith_wcwl_share_twitter','yes','yes'),(1318,'yith_wcwl_share_pinterest','yes','yes'),(1319,'yith_wcwl_share_email','yes','yes'),(1320,'yith_wcwl_share_whatsapp','yes','yes'),(1321,'yith_wcwl_share_url','no','yes'),(1322,'yith_wcwl_socials_title','My wishlist on The Dragon Fashion House and Accessories','yes'),(1323,'yith_wcwl_socials_text','','yes'),(1324,'yith_wcwl_socials_image_url','','yes'),(1325,'yith_wcwl_wishlist_title','My wishlist','yes'),(1326,'yith_wcwl_add_to_cart_text','Add to cart','yes'),(1327,'yith_wcwl_add_to_cart_style','link','yes'),(1328,'yith_wcwl_add_to_cart_rounded_corners_radius','16','yes'),(1329,'yith_wcwl_add_to_cart_icon','fa-shopping-cart','yes'),(1330,'yith_wcwl_add_to_cart_custom_icon','','yes'),(1331,'yith_wcwl_color_headers_background','#F4F4F4','yes'),(1332,'yith_wcwl_fb_button_icon','fa-facebook','yes'),(1333,'yith_wcwl_fb_button_custom_icon','','yes'),(1334,'yith_wcwl_tw_button_icon','fa-twitter','yes'),(1335,'yith_wcwl_tw_button_custom_icon','','yes'),(1336,'yith_wcwl_pr_button_icon','fa-pinterest','yes'),(1337,'yith_wcwl_pr_button_custom_icon','','yes'),(1338,'yith_wcwl_em_button_icon','fa-envelope-o','yes'),(1339,'yith_wcwl_em_button_custom_icon','','yes'),(1340,'yith_wcwl_wa_button_icon','fa-whatsapp','yes'),(1341,'yith_wcwl_wa_button_custom_icon','','yes'),(1342,'yit_plugin_fw_panel_wc_default_options_set','a:1:{s:15:\"yith_wcwl_panel\";b:1;}','yes'),(1350,'category_children','a:0:{}','yes'),(1371,'envato_setup_complete','1603546428','yes'),(1397,'yith_plugin_fw_promo_2019_bis','1','yes'),(1403,'_site_transient_timeout_yith_promo_message','3207181842','no'),(1404,'_site_transient_yith_promo_message','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!-- Default border color: #acc327 -->\n<!-- Default background color: #ecf7ed -->\n\n<promotions>\n <expiry_date>2019-12-10</expiry_date>\n <promo>\n <promo_id>yithblackfriday2019</promo_id>\n <title><![CDATA[<strong>YITH Black Friday</strong>]]></title>\n <description><![CDATA[\n Don\'t miss our <strong>30% discount</strong> on all our products! No coupon needed in cart. Valid from <strong>28th November</strong> to <strong>2nd December</strong>.\n ]]></description>\n <link>\n <label>Get your deals now!</label>\n <url><![CDATA[https://yithemes.com]]></url>\n </link>\n <style>\n <image_bg_color>#272121</image_bg_color>\n <border_color>#272121</border_color>\n <background_color>#ffffff</background_color>\n </style>\n <start_date>2019-11-27 23:59:59</start_date>\n <end_date>2019-12-03 08:00:00</end_date>\n </promo>\n</promotions>','no'),(1502,'product_cat_children','a:0:{}','yes'),(1609,'secret_key','TgJ,Xl|D:52RyrV#|./-yz+H;/X3mXg=x$7lM~a]6:CY^!)=?Vn-kB|;dL]>h{mc','no'),(1913,'_transient_orders-transient-version','1603801126','yes'),(1930,'woocommerce_demo_store_notice','Site under construction - No Sales will be fulfilled at this given time.','yes'),(1931,'woocommerce_shop_page_display','','yes'),(2073,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:25:\"info@thedragonhouse.co.za\";s:7:\"version\";s:6:\"5.5.17\";s:9:\"timestamp\";i:1759280210;}','no'),(27884,'woocommerce_db_version','4.6.3','yes'),(65525,'woocommerce_version','4.6.5','yes'),(65531,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(65542,'woocommerce_admin_version','1.6.4','yes'),(339999,'_transient_timeout_wc_related_391','1760989552','no'),(340000,'_transient_wc_related_391','a:1:{s:51:\"limit=8&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=391\";a:2:{i:0;s:3:\"389\";i:1;s:3:\"392\";}}','no'),(340976,'_transient_timeout_wc_shipping_method_count_legacy','1761418065','no'),(340977,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1603551920\";s:5:\"value\";i:0;}','no'),(341273,'_transient_timeout_wc_term_counts','1761827642','no'),(341274,'_transient_wc_term_counts','a:8:{i:38;s:1:\"2\";i:53;s:1:\"2\";i:54;s:1:\"2\";i:27;s:1:\"2\";i:51;s:1:\"2\";i:52;s:1:\"2\";i:55;s:1:\"2\";i:46;s:1:\"1\";}','no'),(343229,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:14:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.8.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.3\";s:7:\"version\";s:5:\"6.8.3\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.8.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.8.3.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.8.3-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.8.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.3\";s:7:\"version\";s:5:\"6.8.3\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.4.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.4-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.4\";s:7:\"version\";s:5:\"6.7.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.4.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.4-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.4\";s:7:\"version\";s:5:\"6.6.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.5.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.5.7.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.5.7-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.5.7-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.7\";s:7:\"version\";s:5:\"6.5.7\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.4.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.4.7.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.4.7-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.4.7-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.7\";s:7:\"version\";s:5:\"6.4.7\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:6;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.3.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.3.7.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.3.7-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.3.7-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.3.7\";s:7:\"version\";s:5:\"6.3.7\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:7;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.2.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.2.8.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.2.8-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.2.8-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.2.8\";s:7:\"version\";s:5:\"6.2.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:8;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.1.9.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.1.9.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.1.9-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.1.9-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.9\";s:7:\"version\";s:5:\"6.1.9\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:9;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:52:\"https://downloads.w.org/release/wordpress-6.0.11.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:52:\"https://downloads.w.org/release/wordpress-6.0.11.zip\";s:10:\"no_content\";s:63:\"https://downloads.w.org/release/wordpress-6.0.11-no-content.zip\";s:11:\"new_bundled\";s:64:\"https://downloads.w.org/release/wordpress-6.0.11-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:6:\"6.0.11\";s:7:\"version\";s:6:\"6.0.11\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:10;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:52:\"https://downloads.w.org/release/wordpress-5.9.12.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:52:\"https://downloads.w.org/release/wordpress-5.9.12.zip\";s:10:\"no_content\";s:63:\"https://downloads.w.org/release/wordpress-5.9.12-no-content.zip\";s:11:\"new_bundled\";s:64:\"https://downloads.w.org/release/wordpress-5.9.12-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:6:\"5.9.12\";s:7:\"version\";s:6:\"5.9.12\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:11;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:52:\"https://downloads.w.org/release/wordpress-5.8.12.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:52:\"https://downloads.w.org/release/wordpress-5.8.12.zip\";s:10:\"no_content\";s:63:\"https://downloads.w.org/release/wordpress-5.8.12-no-content.zip\";s:11:\"new_bundled\";s:64:\"https://downloads.w.org/release/wordpress-5.8.12-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:6:\"5.8.12\";s:7:\"version\";s:6:\"5.8.12\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:12;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:52:\"https://downloads.w.org/release/wordpress-5.7.14.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:52:\"https://downloads.w.org/release/wordpress-5.7.14.zip\";s:10:\"no_content\";s:63:\"https://downloads.w.org/release/wordpress-5.7.14-no-content.zip\";s:11:\"new_bundled\";s:64:\"https://downloads.w.org/release/wordpress-5.7.14-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:6:\"5.7.14\";s:7:\"version\";s:6:\"5.7.14\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:13;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:52:\"https://downloads.w.org/release/wordpress-5.6.16.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:52:\"https://downloads.w.org/release/wordpress-5.6.16.zip\";s:10:\"no_content\";s:63:\"https://downloads.w.org/release/wordpress-5.6.16-no-content.zip\";s:11:\"new_bundled\";s:64:\"https://downloads.w.org/release/wordpress-5.6.16-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:6:\"5.6.16\";s:7:\"version\";s:6:\"5.6.16\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1760878350;s:15:\"version_checked\";s:6:\"5.5.17\";s:12:\"translations\";a:0:{}}','no'),(347554,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1760880610','no'),(347555,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(351418,'_transient_timeout_wc_related_392','1760879400','no'),(351419,'_transient_wc_related_392','a:1:{s:51:\"limit=8&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=392\";a:2:{i:0;s:3:\"390\";i:1;s:3:\"391\";}}','no'),(351823,'_transient_timeout_wc_onboarding_product_data','1760928555','no'),(351824,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:17:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 19 Oct 2025 02:49:15 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";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:96:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type, X-VIP-Go-Segmentation\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:21:\"x-vip-go-segmentation\";s:13:\"no-connection\";s:5:\"allow\";s:3:\"GET\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-rq\";s:14:\"hhn2 0 40 9980\";s:13:\"cache-control\";s:7:\"private\";s:13:\"accept-ranges\";s:5:\"bytes\";s:7:\"x-cache\";s:5:\"STALE\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}}s:4:\"body\";s:51950:\"{\"products\":[{\"title\":\"Google Analytics for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.3,\"reviews_count\":51,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/icon-GoogleAnalytics_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Tax\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders \\u2014 by city, country, or state \\u2014 at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4,\"reviews_count\":14,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo_Tax_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Maximize revenue with the new checkout from Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.7,\"reviews_count\":47,\"vendor_name\":\"Stripe\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/stripe\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Klaviyo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/04\\/klaviyo-flag-profile-160x160-2.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"As Woo\\u2019s preferred marketing automation platform, Klaviyo unifies email and SMS marketing, customer analytics, and product reviews to help your brand achieve better marketing ROI.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klaviyo-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"41b11d83-699b-419f-9657-87357f84df77\",\"slug\":\"klaviyo\",\"id\":7664920,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.9,\"reviews_count\":28,\"vendor_name\":\"Klaviyo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/klaviyo\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/04\\/klaviyo-flag-profile-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Mailchimp\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Increase traffic, drive repeat purchases, and send personalized emails and SMS campaigns using Mailchimp\\u2019s AI marketing tools.\\r\\n\\r\\n \",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.7,\"reviews_count\":52,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.5,\"reviews_count\":21,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Facebook\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach your customers across Facebook and Instagram using this official extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.7,\"reviews_count\":130,\"vendor_name\":\"Facebook\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/facebook\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/04\\/fb-woodotcom.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooPayments\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The only payment solution fully integrated with WooCommerce. Accept credit\\/debit cards and local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woopayments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.9,\"reviews_count\":147,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/icon-WooPayments_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Google for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/Marketplace_card_Google.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Promote your products across Google \\u2014 from Search to YouTube and beyond \\u2014 so you can reach the right customers to make the most of your peak season.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.2,\"reviews_count\":149,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Add-Ons\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"is_on_sale\":false,\"regular_price\":79,\"rating\":3.4,\"reviews_count\":46,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/05\\/Product_Addons_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The official, all-in-one checkout solution that allows you to offer PayPal, Venmo (US), Pay Later, credit and debit cards, country-specific payment options, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.5,\"reviews_count\":303,\"vendor_name\":\"PayPal\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/paypal\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Square\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Woo\'s preferred POS partner, Square, makes online and in-person payments seamless with transparent rates, fast deposits, and integrated inventory management.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.3,\"reviews_count\":122,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"is_on_sale\":false,\"regular_price\":109,\"rating\":3.1,\"reviews_count\":25,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2,\"reviews_count\":25,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-UPS-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Shipment Tracking\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"is_on_sale\":false,\"regular_price\":59,\"rating\":3.1,\"reviews_count\":30,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Shipment_Tracking_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.9,\"reviews_count\":45,\"vendor_name\":\"Amazon Pay\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/amazon-pay-admin\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$279.00\",\"raw_price\":279,\"currency\":\"USD\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"is_on_sale\":false,\"regular_price\":279,\"rating\":3.2,\"reviews_count\":109,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Woo_Subscriptions_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Minimum and maximum quantity rules for products, orders and categories.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"is_on_sale\":false,\"regular_price\":49,\"rating\":4.1,\"reviews_count\":17,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/Min-Max_Quantities_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Bundles\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"is_on_sale\":false,\"regular_price\":79,\"rating\":4.7,\"reviews_count\":147,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Product_Bundles_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Print USPS, UPS, and DHL labels right from your WooCommerce dashboard and instantly save on shipping. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-shipping\",\"id\":2165910,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.4,\"reviews_count\":20,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/06\\/icon-shipping_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.6,\"reviews_count\":8,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-AustraliaPost.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2,\"reviews_count\":7,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Royal Mail Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.3,\"reviews_count\":3,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.3,\"reviews_count\":18,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Avalara\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate tax compliance for your WooCommerce store \\u2014 from sales tax calculation and tax returns to exempt sales and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.4,\"reviews_count\":57,\"vendor_name\":\"Avalara\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/avalara\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Avalara-Wordpress-Plugin-Creative_icon-80.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"is_on_sale\":false,\"regular_price\":0,\"rating\":1,\"reviews_count\":3,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/TaxJar.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Gift Cards\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer prepaid digital gift cards that customers can redeem online.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gift-cards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"4e0e8c35-e777-4ecc-b96b-202ee1eb256f\",\"slug\":\"woocommerce-gift-cards\",\"id\":5571998,\"is_on_sale\":false,\"regular_price\":79,\"rating\":4.2,\"reviews_count\":48,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/03\\/Gift_Cards_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"EU VAT Number\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$39.00\",\"raw_price\":39,\"currency\":\"USD\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592,\"is_on_sale\":false,\"regular_price\":39,\"rating\":3,\"reviews_count\":10,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/EU_VAT_Number_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Back In Stock Notifications\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Notify customers when your products are restocked.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/back-in-stock-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"755424b1-28b6-448a-aeb3-709cb3029eb6\",\"slug\":\"woocommerce-back-in-stock-notifications\",\"id\":6855144,\"is_on_sale\":false,\"regular_price\":59,\"rating\":4.1,\"reviews_count\":16,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/11\\/Back_in_Stock_Notifications_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Recommendations\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer smarter upsells, cross-sells, and \\\"frequently bought together\\\" recommendations. Measure their impact with in-depth analytics.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-recommendations\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$99.00\",\"raw_price\":99,\"currency\":\"USD\",\"hash\":\"4f9d0025-64b2-496f-97bb-ef553752d2d1\",\"slug\":\"woocommerce-product-recommendations\",\"id\":4486128,\"is_on_sale\":false,\"regular_price\":99,\"rating\":4.5,\"reviews_count\":15,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/07\\/Product_Recommendations_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"ShipStation\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.9,\"reviews_count\":18,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/ShipStation-Icon-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$159.00\",\"raw_price\":159,\"currency\":\"USD\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"is_on_sale\":false,\"regular_price\":159,\"rating\":3.6,\"reviews_count\":26,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Payfast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Stand-Alone-Safe-Zone@1x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take payments on your WooCommerce store via Payfast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.8,\"reviews_count\":5,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Payfast-favicon-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"TikTok\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/TikTok-logo-CMYK-Horizontal-black-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"*New and Improved Setup Process*\\u00a0\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\nSync your catalog to TikTok Shop, create TikTok ads to showcase your products, install the TikTok Pixel and Events API (server-to-server connection) to fuel performance, and measure results at scale!\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\nOnce connected, you can list more of your products in TikTok Shop, create advertising campaigns directly from your dashboard, generate leads, and reach over one billion global users across both TikTok ads and TikTok Shop - all with a streamlined experience that gets you selling faster.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tiktok-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"a6f95b36-133e-443e-8e31-6e7a67eb597c\",\"slug\":\"tiktok-for-woocommerce\",\"id\":18734000336353,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.5,\"reviews_count\":120,\"vendor_name\":\"TikTok for Business\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/tiktok-for-business\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/tt2.jpg\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Checkout Field Editor\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"is_on_sale\":false,\"regular_price\":49,\"rating\":2.7,\"reviews_count\":19,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Checkout_Field_Editor_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Table Rate Shipping\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$119.00\",\"raw_price\":119,\"currency\":\"USD\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"is_on_sale\":false,\"regular_price\":119,\"rating\":3.6,\"reviews_count\":18,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Table_Rate_Shipping_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$249.00\",\"raw_price\":249,\"currency\":\"USD\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"woocommerce-bookings\",\"id\":390890,\"is_on_sale\":false,\"regular_price\":249,\"rating\":2.7,\"reviews_count\":59,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/05\\/Bookings_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Pinterest\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/Marketplace_card_Pinterest.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get your products in front of Pinterest users searching for ideas and things to buy. Connect your WooCommerce store to make your entire catalog browsable.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pinterest-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"29785cce-92ef-4b3a-8bd7-979bc688fd47\",\"slug\":\"pinterest-for-woocommerce\",\"id\":8688768,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4,\"reviews_count\":24,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/icon@2x-pe5lqg.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Google, Facebook, Retargeting all-in-one Marketing\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach beyond your competition and grow your store sales in 5 Minutes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.3,\"reviews_count\":120,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo-80x80-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$199.00\",\"raw_price\":199,\"currency\":\"USD\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"is_on_sale\":false,\"regular_price\":199,\"rating\":4,\"reviews_count\":143,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Authorize.net, a Visa solution\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Online payments leader Authorize.net, a Visa Solution, helps thousands of businesses simplify payments by offering more solutions, more support, and more strength to stand on.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"is_on_sale\":false,\"regular_price\":79,\"rating\":4.1,\"reviews_count\":108,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/wooCommerceLogos_anet-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"is_on_sale\":false,\"regular_price\":59,\"rating\":2.8,\"reviews_count\":12,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Product_CSV_Import_Suite_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.5,\"reviews_count\":17,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"is_on_sale\":false,\"regular_price\":0,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/icon-accommodation_bookings_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$119.00\",\"raw_price\":119,\"currency\":\"USD\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"is_on_sale\":false,\"regular_price\":119,\"rating\":2.8,\"reviews_count\":25,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/Product_Vendors_icon_marketplace_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Zapier Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Connect your store to over 8,000 apps like Google Sheets, HubSpot, MailChimp, Slack, and Xero. No coding required.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$99.00\",\"raw_price\":99,\"currency\":\"USD\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"is_on_sale\":false,\"regular_price\":99,\"rating\":3.9,\"reviews_count\":80,\"vendor_name\":\"Tectalic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/tectalic\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$179.00\",\"raw_price\":179,\"currency\":\"USD\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"is_on_sale\":false,\"regular_price\":179,\"rating\":2.4,\"reviews_count\":20,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/Points_and_Rewards_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$39.00\",\"raw_price\":39,\"currency\":\"USD\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"is_on_sale\":false,\"regular_price\":39,\"rating\":3,\"reviews_count\":4,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Advanced_Notifications_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Unlimited images for your product variations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"is_on_sale\":false,\"regular_price\":59,\"rating\":2.2,\"reviews_count\":6,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Additional_Variation_Images_icon-marketplace-160x160-3.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$179.00\",\"raw_price\":179,\"currency\":\"USD\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"is_on_sale\":false,\"regular_price\":179,\"rating\":2.7,\"reviews_count\":10,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Pre_Order_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$219.00\",\"raw_price\":219,\"currency\":\"USD\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"is_on_sale\":false,\"regular_price\":219,\"rating\":1.9,\"reviews_count\":14,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Deposits_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"PayPal Braintree\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"is_on_sale\":false,\"regular_price\":0,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/icon-Braintree_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"is_on_sale\":false,\"regular_price\":59,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Woo_Subscriptions_Downloads_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Advanced discount rules, gift cards, BOGO deals, store credits, dynamic pricing, bulk coupon codes, URL coupons and more with this all-in-one Smart Coupons for WooCommerce plugin.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$129.00\",\"raw_price\":129,\"currency\":\"USD\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"is_on_sale\":false,\"regular_price\":129,\"rating\":4.4,\"reviews_count\":227,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"is_on_sale\":false,\"regular_price\":59,\"rating\":1.6,\"reviews_count\":8,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Shipping_Multiple_Addresses_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Seamlessly accept purchase orders as a payment method on your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"is_on_sale\":false,\"regular_price\":49,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/WooCommerce_Purchase_Order_Gateway_icon-markertplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Deliver your digital products with the speed, scale, and reliability of Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$89.00\",\"raw_price\":89,\"currency\":\"USD\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"is_on_sale\":false,\"regular_price\":89,\"rating\":3.5,\"reviews_count\":21,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Amazon-S3-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$129.00\",\"raw_price\":129,\"currency\":\"USD\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"is_on_sale\":false,\"regular_price\":129,\"rating\":1.7,\"reviews_count\":3,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/04\\/WooCommerce_Box_Office_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"is_on_sale\":false,\"regular_price\":49,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Bulk_Stock_Management_icon-marketplace-160x160-3.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.3,\"reviews_count\":12,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LiveChat.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"}],\"total_products\":1184,\"total_pages\":20}\";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:51950:\"{\"products\":[{\"title\":\"Google Analytics for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.3,\"reviews_count\":51,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/icon-GoogleAnalytics_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Tax\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders \\u2014 by city, country, or state \\u2014 at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4,\"reviews_count\":14,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo_Tax_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Maximize revenue with the new checkout from Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.7,\"reviews_count\":47,\"vendor_name\":\"Stripe\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/stripe\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Klaviyo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/04\\/klaviyo-flag-profile-160x160-2.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"As Woo\\u2019s preferred marketing automation platform, Klaviyo unifies email and SMS marketing, customer analytics, and product reviews to help your brand achieve better marketing ROI.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klaviyo-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"41b11d83-699b-419f-9657-87357f84df77\",\"slug\":\"klaviyo\",\"id\":7664920,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.9,\"reviews_count\":28,\"vendor_name\":\"Klaviyo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/klaviyo\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/04\\/klaviyo-flag-profile-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Mailchimp\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Increase traffic, drive repeat purchases, and send personalized emails and SMS campaigns using Mailchimp\\u2019s AI marketing tools.\\r\\n\\r\\n \",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.7,\"reviews_count\":52,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.5,\"reviews_count\":21,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Facebook\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach your customers across Facebook and Instagram using this official extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.7,\"reviews_count\":130,\"vendor_name\":\"Facebook\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/facebook\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/04\\/fb-woodotcom.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooPayments\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The only payment solution fully integrated with WooCommerce. Accept credit\\/debit cards and local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woopayments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.9,\"reviews_count\":147,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/icon-WooPayments_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Google for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/Marketplace_card_Google.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Promote your products across Google \\u2014 from Search to YouTube and beyond \\u2014 so you can reach the right customers to make the most of your peak season.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.2,\"reviews_count\":149,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Add-Ons\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"is_on_sale\":false,\"regular_price\":79,\"rating\":3.4,\"reviews_count\":46,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/05\\/Product_Addons_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The official, all-in-one checkout solution that allows you to offer PayPal, Venmo (US), Pay Later, credit and debit cards, country-specific payment options, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.5,\"reviews_count\":303,\"vendor_name\":\"PayPal\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/paypal\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Square\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Woo\'s preferred POS partner, Square, makes online and in-person payments seamless with transparent rates, fast deposits, and integrated inventory management.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.3,\"reviews_count\":122,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"is_on_sale\":false,\"regular_price\":109,\"rating\":3.1,\"reviews_count\":25,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2,\"reviews_count\":25,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-UPS-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Shipment Tracking\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"is_on_sale\":false,\"regular_price\":59,\"rating\":3.1,\"reviews_count\":30,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Shipment_Tracking_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.9,\"reviews_count\":45,\"vendor_name\":\"Amazon Pay\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/amazon-pay-admin\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$279.00\",\"raw_price\":279,\"currency\":\"USD\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"is_on_sale\":false,\"regular_price\":279,\"rating\":3.2,\"reviews_count\":109,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Woo_Subscriptions_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Minimum and maximum quantity rules for products, orders and categories.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"is_on_sale\":false,\"regular_price\":49,\"rating\":4.1,\"reviews_count\":17,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/Min-Max_Quantities_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Bundles\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"is_on_sale\":false,\"regular_price\":79,\"rating\":4.7,\"reviews_count\":147,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Product_Bundles_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Print USPS, UPS, and DHL labels right from your WooCommerce dashboard and instantly save on shipping. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-shipping\",\"id\":2165910,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.4,\"reviews_count\":20,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/06\\/icon-shipping_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.6,\"reviews_count\":8,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-AustraliaPost.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2,\"reviews_count\":7,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Royal Mail Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.3,\"reviews_count\":3,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.3,\"reviews_count\":18,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Avalara\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate tax compliance for your WooCommerce store \\u2014 from sales tax calculation and tax returns to exempt sales and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.4,\"reviews_count\":57,\"vendor_name\":\"Avalara\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/avalara\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Avalara-Wordpress-Plugin-Creative_icon-80.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"is_on_sale\":false,\"regular_price\":0,\"rating\":1,\"reviews_count\":3,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/TaxJar.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Gift Cards\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer prepaid digital gift cards that customers can redeem online.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gift-cards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"4e0e8c35-e777-4ecc-b96b-202ee1eb256f\",\"slug\":\"woocommerce-gift-cards\",\"id\":5571998,\"is_on_sale\":false,\"regular_price\":79,\"rating\":4.2,\"reviews_count\":48,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/03\\/Gift_Cards_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"EU VAT Number\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$39.00\",\"raw_price\":39,\"currency\":\"USD\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592,\"is_on_sale\":false,\"regular_price\":39,\"rating\":3,\"reviews_count\":10,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/EU_VAT_Number_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Back In Stock Notifications\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Notify customers when your products are restocked.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/back-in-stock-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"755424b1-28b6-448a-aeb3-709cb3029eb6\",\"slug\":\"woocommerce-back-in-stock-notifications\",\"id\":6855144,\"is_on_sale\":false,\"regular_price\":59,\"rating\":4.1,\"reviews_count\":16,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/11\\/Back_in_Stock_Notifications_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Recommendations\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer smarter upsells, cross-sells, and \\\"frequently bought together\\\" recommendations. Measure their impact with in-depth analytics.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-recommendations\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$99.00\",\"raw_price\":99,\"currency\":\"USD\",\"hash\":\"4f9d0025-64b2-496f-97bb-ef553752d2d1\",\"slug\":\"woocommerce-product-recommendations\",\"id\":4486128,\"is_on_sale\":false,\"regular_price\":99,\"rating\":4.5,\"reviews_count\":15,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/07\\/Product_Recommendations_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"ShipStation\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.9,\"reviews_count\":18,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/ShipStation-Icon-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$159.00\",\"raw_price\":159,\"currency\":\"USD\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"is_on_sale\":false,\"regular_price\":159,\"rating\":3.6,\"reviews_count\":26,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Payfast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Stand-Alone-Safe-Zone@1x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take payments on your WooCommerce store via Payfast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.8,\"reviews_count\":5,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Payfast-favicon-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"TikTok\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/TikTok-logo-CMYK-Horizontal-black-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"*New and Improved Setup Process*\\u00a0\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\nSync your catalog to TikTok Shop, create TikTok ads to showcase your products, install the TikTok Pixel and Events API (server-to-server connection) to fuel performance, and measure results at scale!\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\nOnce connected, you can list more of your products in TikTok Shop, create advertising campaigns directly from your dashboard, generate leads, and reach over one billion global users across both TikTok ads and TikTok Shop - all with a streamlined experience that gets you selling faster.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tiktok-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"a6f95b36-133e-443e-8e31-6e7a67eb597c\",\"slug\":\"tiktok-for-woocommerce\",\"id\":18734000336353,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.5,\"reviews_count\":120,\"vendor_name\":\"TikTok for Business\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/tiktok-for-business\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/tt2.jpg\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Checkout Field Editor\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"is_on_sale\":false,\"regular_price\":49,\"rating\":2.7,\"reviews_count\":19,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Checkout_Field_Editor_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Table Rate Shipping\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$119.00\",\"raw_price\":119,\"currency\":\"USD\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"is_on_sale\":false,\"regular_price\":119,\"rating\":3.6,\"reviews_count\":18,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Table_Rate_Shipping_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$249.00\",\"raw_price\":249,\"currency\":\"USD\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"woocommerce-bookings\",\"id\":390890,\"is_on_sale\":false,\"regular_price\":249,\"rating\":2.7,\"reviews_count\":59,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/05\\/Bookings_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Pinterest\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/Marketplace_card_Pinterest.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get your products in front of Pinterest users searching for ideas and things to buy. Connect your WooCommerce store to make your entire catalog browsable.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pinterest-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"29785cce-92ef-4b3a-8bd7-979bc688fd47\",\"slug\":\"pinterest-for-woocommerce\",\"id\":8688768,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4,\"reviews_count\":24,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/icon@2x-pe5lqg.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Google, Facebook, Retargeting all-in-one Marketing\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach beyond your competition and grow your store sales in 5 Minutes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.3,\"reviews_count\":120,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo-80x80-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$199.00\",\"raw_price\":199,\"currency\":\"USD\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"is_on_sale\":false,\"regular_price\":199,\"rating\":4,\"reviews_count\":143,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Authorize.net, a Visa solution\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Online payments leader Authorize.net, a Visa Solution, helps thousands of businesses simplify payments by offering more solutions, more support, and more strength to stand on.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"is_on_sale\":false,\"regular_price\":79,\"rating\":4.1,\"reviews_count\":108,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/wooCommerceLogos_anet-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"is_on_sale\":false,\"regular_price\":59,\"rating\":2.8,\"reviews_count\":12,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Product_CSV_Import_Suite_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.5,\"reviews_count\":17,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"is_on_sale\":false,\"regular_price\":0,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/icon-accommodation_bookings_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$119.00\",\"raw_price\":119,\"currency\":\"USD\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"is_on_sale\":false,\"regular_price\":119,\"rating\":2.8,\"reviews_count\":25,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/Product_Vendors_icon_marketplace_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Zapier Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Connect your store to over 8,000 apps like Google Sheets, HubSpot, MailChimp, Slack, and Xero. No coding required.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$99.00\",\"raw_price\":99,\"currency\":\"USD\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"is_on_sale\":false,\"regular_price\":99,\"rating\":3.9,\"reviews_count\":80,\"vendor_name\":\"Tectalic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/tectalic\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$179.00\",\"raw_price\":179,\"currency\":\"USD\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"is_on_sale\":false,\"regular_price\":179,\"rating\":2.4,\"reviews_count\":20,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/Points_and_Rewards_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$39.00\",\"raw_price\":39,\"currency\":\"USD\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"is_on_sale\":false,\"regular_price\":39,\"rating\":3,\"reviews_count\":4,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Advanced_Notifications_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Unlimited images for your product variations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"is_on_sale\":false,\"regular_price\":59,\"rating\":2.2,\"reviews_count\":6,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Additional_Variation_Images_icon-marketplace-160x160-3.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$179.00\",\"raw_price\":179,\"currency\":\"USD\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"is_on_sale\":false,\"regular_price\":179,\"rating\":2.7,\"reviews_count\":10,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Pre_Order_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$219.00\",\"raw_price\":219,\"currency\":\"USD\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"is_on_sale\":false,\"regular_price\":219,\"rating\":1.9,\"reviews_count\":14,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Deposits_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"PayPal Braintree\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"is_on_sale\":false,\"regular_price\":0,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/icon-Braintree_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"is_on_sale\":false,\"regular_price\":59,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Woo_Subscriptions_Downloads_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Advanced discount rules, gift cards, BOGO deals, store credits, dynamic pricing, bulk coupon codes, URL coupons and more with this all-in-one Smart Coupons for WooCommerce plugin.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$129.00\",\"raw_price\":129,\"currency\":\"USD\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"is_on_sale\":false,\"regular_price\":129,\"rating\":4.4,\"reviews_count\":227,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"is_on_sale\":false,\"regular_price\":59,\"rating\":1.6,\"reviews_count\":8,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Shipping_Multiple_Addresses_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Seamlessly accept purchase orders as a payment method on your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"is_on_sale\":false,\"regular_price\":49,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/WooCommerce_Purchase_Order_Gateway_icon-markertplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Deliver your digital products with the speed, scale, and reliability of Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$89.00\",\"raw_price\":89,\"currency\":\"USD\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"is_on_sale\":false,\"regular_price\":89,\"rating\":3.5,\"reviews_count\":21,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Amazon-S3-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$129.00\",\"raw_price\":129,\"currency\":\"USD\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"is_on_sale\":false,\"regular_price\":129,\"rating\":1.7,\"reviews_count\":3,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/04\\/WooCommerce_Box_Office_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"is_on_sale\":false,\"regular_price\":49,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Bulk_Stock_Management_icon-marketplace-160x160-3.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.3,\"reviews_count\":12,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LiveChat.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"}],\"total_products\":1184,\"total_pages\":20}\";s:3:\"raw\";s:52654:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Sun, 19 Oct 2025 02:49:15 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nTransfer-Encoding: chunked\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, X-VIP-Go-Segmentation\r\nX-WCCOM-Cache: HIT\r\nX-VIP-Go-Segmentation: no-connection\r\nAllow: GET\r\nContent-Encoding: br\r\nx-rq: hhn2 0 40 9980\r\ncache-control: private\r\naccept-ranges: bytes\r\nx-cache: STALE\r\nStrict-Transport-Security: max-age=31536000\r\n\r\n{\"products\":[{\"title\":\"Google Analytics for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.3,\"reviews_count\":51,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/icon-GoogleAnalytics_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Tax\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders \\u2014 by city, country, or state \\u2014 at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4,\"reviews_count\":14,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo_Tax_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Maximize revenue with the new checkout from Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.7,\"reviews_count\":47,\"vendor_name\":\"Stripe\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/stripe\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Klaviyo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/04\\/klaviyo-flag-profile-160x160-2.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"As Woo\\u2019s preferred marketing automation platform, Klaviyo unifies email and SMS marketing, customer analytics, and product reviews to help your brand achieve better marketing ROI.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klaviyo-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"41b11d83-699b-419f-9657-87357f84df77\",\"slug\":\"klaviyo\",\"id\":7664920,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.9,\"reviews_count\":28,\"vendor_name\":\"Klaviyo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/klaviyo\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/04\\/klaviyo-flag-profile-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Mailchimp\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Increase traffic, drive repeat purchases, and send personalized emails and SMS campaigns using Mailchimp\\u2019s AI marketing tools.\\r\\n\\r\\n \",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.7,\"reviews_count\":52,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.5,\"reviews_count\":21,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Facebook\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach your customers across Facebook and Instagram using this official extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.7,\"reviews_count\":130,\"vendor_name\":\"Facebook\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/facebook\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/04\\/fb-woodotcom.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooPayments\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The only payment solution fully integrated with WooCommerce. Accept credit\\/debit cards and local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woopayments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.9,\"reviews_count\":147,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/icon-WooPayments_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Google for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/Marketplace_card_Google.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Promote your products across Google \\u2014 from Search to YouTube and beyond \\u2014 so you can reach the right customers to make the most of your peak season.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.2,\"reviews_count\":149,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Add-Ons\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"is_on_sale\":false,\"regular_price\":79,\"rating\":3.4,\"reviews_count\":46,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/05\\/Product_Addons_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The official, all-in-one checkout solution that allows you to offer PayPal, Venmo (US), Pay Later, credit and debit cards, country-specific payment options, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.5,\"reviews_count\":303,\"vendor_name\":\"PayPal\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/paypal\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Square\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Woo\'s preferred POS partner, Square, makes online and in-person payments seamless with transparent rates, fast deposits, and integrated inventory management.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.3,\"reviews_count\":122,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"is_on_sale\":false,\"regular_price\":109,\"rating\":3.1,\"reviews_count\":25,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2,\"reviews_count\":25,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-UPS-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Shipment Tracking\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"is_on_sale\":false,\"regular_price\":59,\"rating\":3.1,\"reviews_count\":30,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Shipment_Tracking_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.9,\"reviews_count\":45,\"vendor_name\":\"Amazon Pay\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/amazon-pay-admin\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$279.00\",\"raw_price\":279,\"currency\":\"USD\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"is_on_sale\":false,\"regular_price\":279,\"rating\":3.2,\"reviews_count\":109,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Woo_Subscriptions_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Minimum and maximum quantity rules for products, orders and categories.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"is_on_sale\":false,\"regular_price\":49,\"rating\":4.1,\"reviews_count\":17,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/Min-Max_Quantities_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Bundles\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"is_on_sale\":false,\"regular_price\":79,\"rating\":4.7,\"reviews_count\":147,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Product_Bundles_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Print USPS, UPS, and DHL labels right from your WooCommerce dashboard and instantly save on shipping. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-shipping\",\"id\":2165910,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.4,\"reviews_count\":20,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/06\\/icon-shipping_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.6,\"reviews_count\":8,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-AustraliaPost.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2,\"reviews_count\":7,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Royal Mail Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.3,\"reviews_count\":3,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.3,\"reviews_count\":18,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Avalara\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate tax compliance for your WooCommerce store \\u2014 from sales tax calculation and tax returns to exempt sales and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.4,\"reviews_count\":57,\"vendor_name\":\"Avalara\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/avalara\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Avalara-Wordpress-Plugin-Creative_icon-80.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"is_on_sale\":false,\"regular_price\":0,\"rating\":1,\"reviews_count\":3,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/TaxJar.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Gift Cards\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer prepaid digital gift cards that customers can redeem online.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gift-cards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"4e0e8c35-e777-4ecc-b96b-202ee1eb256f\",\"slug\":\"woocommerce-gift-cards\",\"id\":5571998,\"is_on_sale\":false,\"regular_price\":79,\"rating\":4.2,\"reviews_count\":48,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/03\\/Gift_Cards_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"EU VAT Number\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$39.00\",\"raw_price\":39,\"currency\":\"USD\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592,\"is_on_sale\":false,\"regular_price\":39,\"rating\":3,\"reviews_count\":10,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/EU_VAT_Number_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Back In Stock Notifications\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Notify customers when your products are restocked.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/back-in-stock-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"755424b1-28b6-448a-aeb3-709cb3029eb6\",\"slug\":\"woocommerce-back-in-stock-notifications\",\"id\":6855144,\"is_on_sale\":false,\"regular_price\":59,\"rating\":4.1,\"reviews_count\":16,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/11\\/Back_in_Stock_Notifications_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Recommendations\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer smarter upsells, cross-sells, and \\\"frequently bought together\\\" recommendations. Measure their impact with in-depth analytics.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-recommendations\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$99.00\",\"raw_price\":99,\"currency\":\"USD\",\"hash\":\"4f9d0025-64b2-496f-97bb-ef553752d2d1\",\"slug\":\"woocommerce-product-recommendations\",\"id\":4486128,\"is_on_sale\":false,\"regular_price\":99,\"rating\":4.5,\"reviews_count\":15,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/07\\/Product_Recommendations_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"ShipStation\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"is_on_sale\":false,\"regular_price\":0,\"rating\":3.9,\"reviews_count\":18,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/ShipStation-Icon-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$159.00\",\"raw_price\":159,\"currency\":\"USD\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"is_on_sale\":false,\"regular_price\":159,\"rating\":3.6,\"reviews_count\":26,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Payfast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Stand-Alone-Safe-Zone@1x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take payments on your WooCommerce store via Payfast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.8,\"reviews_count\":5,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Payfast-favicon-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"TikTok\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/TikTok-logo-CMYK-Horizontal-black-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"*New and Improved Setup Process*\\u00a0\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\nSync your catalog to TikTok Shop, create TikTok ads to showcase your products, install the TikTok Pixel and Events API (server-to-server connection) to fuel performance, and measure results at scale!\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\nOnce connected, you can list more of your products in TikTok Shop, create advertising campaigns directly from your dashboard, generate leads, and reach over one billion global users across both TikTok ads and TikTok Shop - all with a streamlined experience that gets you selling faster.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tiktok-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"a6f95b36-133e-443e-8e31-6e7a67eb597c\",\"slug\":\"tiktok-for-woocommerce\",\"id\":18734000336353,\"is_on_sale\":false,\"regular_price\":0,\"rating\":2.5,\"reviews_count\":120,\"vendor_name\":\"TikTok for Business\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/tiktok-for-business\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/tt2.jpg\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Checkout Field Editor\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"is_on_sale\":false,\"regular_price\":49,\"rating\":2.7,\"reviews_count\":19,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Checkout_Field_Editor_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Table Rate Shipping\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$119.00\",\"raw_price\":119,\"currency\":\"USD\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"is_on_sale\":false,\"regular_price\":119,\"rating\":3.6,\"reviews_count\":18,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Table_Rate_Shipping_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$249.00\",\"raw_price\":249,\"currency\":\"USD\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"woocommerce-bookings\",\"id\":390890,\"is_on_sale\":false,\"regular_price\":249,\"rating\":2.7,\"reviews_count\":59,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/05\\/Bookings_icon-marketplace-160x160-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Pinterest\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/Marketplace_card_Pinterest.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get your products in front of Pinterest users searching for ideas and things to buy. Connect your WooCommerce store to make your entire catalog browsable.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pinterest-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"29785cce-92ef-4b3a-8bd7-979bc688fd47\",\"slug\":\"pinterest-for-woocommerce\",\"id\":8688768,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4,\"reviews_count\":24,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/icon@2x-pe5lqg.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Google, Facebook, Retargeting all-in-one Marketing\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach beyond your competition and grow your store sales in 5 Minutes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.3,\"reviews_count\":120,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo-80x80-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$199.00\",\"raw_price\":199,\"currency\":\"USD\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"is_on_sale\":false,\"regular_price\":199,\"rating\":4,\"reviews_count\":143,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Authorize.net, a Visa solution\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Online payments leader Authorize.net, a Visa Solution, helps thousands of businesses simplify payments by offering more solutions, more support, and more strength to stand on.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$79.00\",\"raw_price\":79,\"currency\":\"USD\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"is_on_sale\":false,\"regular_price\":79,\"rating\":4.1,\"reviews_count\":108,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/wooCommerceLogos_anet-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"is_on_sale\":false,\"regular_price\":59,\"rating\":2.8,\"reviews_count\":12,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Product_CSV_Import_Suite_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$109.00\",\"raw_price\":109,\"currency\":\"USD\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"is_on_sale\":false,\"regular_price\":109,\"rating\":2.5,\"reviews_count\":17,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"is_on_sale\":false,\"regular_price\":0,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/icon-accommodation_bookings_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$119.00\",\"raw_price\":119,\"currency\":\"USD\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"is_on_sale\":false,\"regular_price\":119,\"rating\":2.8,\"reviews_count\":25,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/Product_Vendors_icon_marketplace_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Zapier Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Connect your store to over 8,000 apps like Google Sheets, HubSpot, MailChimp, Slack, and Xero. No coding required.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$99.00\",\"raw_price\":99,\"currency\":\"USD\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"is_on_sale\":false,\"regular_price\":99,\"rating\":3.9,\"reviews_count\":80,\"vendor_name\":\"Tectalic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/tectalic\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$179.00\",\"raw_price\":179,\"currency\":\"USD\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"is_on_sale\":false,\"regular_price\":179,\"rating\":2.4,\"reviews_count\":20,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/Points_and_Rewards_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$39.00\",\"raw_price\":39,\"currency\":\"USD\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"is_on_sale\":false,\"regular_price\":39,\"rating\":3,\"reviews_count\":4,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Advanced_Notifications_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Unlimited images for your product variations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"is_on_sale\":false,\"regular_price\":59,\"rating\":2.2,\"reviews_count\":6,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Additional_Variation_Images_icon-marketplace-160x160-3.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$179.00\",\"raw_price\":179,\"currency\":\"USD\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"is_on_sale\":false,\"regular_price\":179,\"rating\":2.7,\"reviews_count\":10,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Pre_Order_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$219.00\",\"raw_price\":219,\"currency\":\"USD\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"is_on_sale\":false,\"regular_price\":219,\"rating\":1.9,\"reviews_count\":14,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Deposits_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"PayPal Braintree\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"is_on_sale\":false,\"regular_price\":0,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/icon-Braintree_160x160.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"is_on_sale\":false,\"regular_price\":59,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Woo_Subscriptions_Downloads_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Advanced discount rules, gift cards, BOGO deals, store credits, dynamic pricing, bulk coupon codes, URL coupons and more with this all-in-one Smart Coupons for WooCommerce plugin.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$129.00\",\"raw_price\":129,\"currency\":\"USD\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"is_on_sale\":false,\"regular_price\":129,\"rating\":4.4,\"reviews_count\":227,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$59.00\",\"raw_price\":59,\"currency\":\"USD\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"is_on_sale\":false,\"regular_price\":59,\"rating\":1.6,\"reviews_count\":8,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Shipping_Multiple_Addresses_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Seamlessly accept purchase orders as a payment method on your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"is_on_sale\":false,\"regular_price\":49,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/WooCommerce_Purchase_Order_Gateway_icon-markertplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Deliver your digital products with the speed, scale, and reliability of Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$89.00\",\"raw_price\":89,\"currency\":\"USD\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"is_on_sale\":false,\"regular_price\":89,\"rating\":3.5,\"reviews_count\":21,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Amazon-S3-1.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$129.00\",\"raw_price\":129,\"currency\":\"USD\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"is_on_sale\":false,\"regular_price\":129,\"rating\":1.7,\"reviews_count\":3,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/04\\/WooCommerce_Box_Office_icon-marketplace-160x160-2.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$49.00\",\"raw_price\":49,\"currency\":\"USD\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"is_on_sale\":false,\"regular_price\":49,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Woo\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Bulk_Stock_Management_icon-marketplace-160x160-3.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"price\":\"$0.00\",\"raw_price\":0,\"currency\":\"USD\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"is_on_sale\":false,\"regular_price\":0,\"rating\":4.3,\"reviews_count\":12,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LiveChat.png\",\"is_installable\":false,\"billing_period\":\"\",\"billing_period_interval\":\"\"}],\"total_products\":1184,\"total_pages\":20}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:17:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Sun, 19 Oct 2025 02:49:15 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}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:96:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type, X-VIP-Go-Segmentation\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:21:\"x-vip-go-segmentation\";a:1:{i:0;s:13:\"no-connection\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}s:4:\"x-rq\";a:1:{i:0;s:14:\"hhn2 0 40 9980\";}s:13:\"cache-control\";a:1:{i:0;s:7:\"private\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}s:7:\"x-cache\";a:1:{i:0;s:5:\"STALE\";}s:25:\"strict-transport-security\";a:1:{i:0;s:16:\"max-age=31536000\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s: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'),(352029,'_transient_timeout__woocommerce_helper_subscriptions','1760879251','no'),(352030,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(352033,'_transient_timeout__woocommerce_helper_updates','1760921551','no'),(352034,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1760878351;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(352035,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1760878352;s:7:\"checked\";a:11:{s:10:\"fancy-shop\";s:6:\"1.0.10\";s:14:\"flatsome-child\";s:3:\"3.0\";s:8:\"flatsome\";s:6:\"3.12.2\";s:12:\"instock-lite\";s:5:\"1.0.7\";s:17:\"new-york-business\";s:5:\"1.3.7\";s:12:\"shuttle-dark\";s:5:\"1.0.3\";s:7:\"shuttle\";s:5:\"1.2.8\";s:10:\"storefront\";s:5:\"2.8.0\";s:14:\"twentynineteen\";s:3:\"1.7\";s:15:\"twentyseventeen\";s:3:\"2.4\";s:12:\"twentytwenty\";s:3:\"1.5\";}s:8:\"response\";a:7:{s:17:\"new-york-business\";a:6:{s:5:\"theme\";s:17:\"new-york-business\";s:11:\"new_version\";s:5:\"1.4.1\";s:3:\"url\";s:47:\"https://wordpress.org/themes/new-york-business/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/theme/new-york-business.1.4.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:12:\"shuttle-dark\";a:6:{s:5:\"theme\";s:12:\"shuttle-dark\";s:11:\"new_version\";s:5:\"1.0.7\";s:3:\"url\";s:42:\"https://wordpress.org/themes/shuttle-dark/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/shuttle-dark.1.0.7.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:7:\"shuttle\";a:6:{s:5:\"theme\";s:7:\"shuttle\";s:11:\"new_version\";s:5:\"1.5.0\";s:3:\"url\";s:37:\"https://wordpress.org/themes/shuttle/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/shuttle.1.5.0.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"storefront\";a:6:{s:5:\"theme\";s:10:\"storefront\";s:11:\"new_version\";s:5:\"4.6.1\";s:3:\"url\";s:40:\"https://wordpress.org/themes/storefront/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/storefront.4.6.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.6.0\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.3.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"3.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.3.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:9:\"no_update\";a:2:{s:10:\"fancy-shop\";a:6:{s:5:\"theme\";s:10:\"fancy-shop\";s:11:\"new_version\";s:6:\"1.0.10\";s:3:\"url\";s:40:\"https://wordpress.org/themes/fancy-shop/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/fancy-shop.1.0.10.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:12:\"instock-lite\";a:6:{s:5:\"theme\";s:12:\"instock-lite\";s:11:\"new_version\";s:5:\"1.0.7\";s:3:\"url\";s:42:\"https://wordpress.org/themes/instock-lite/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/instock-lite.1.0.7.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(352036,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1760878352;s:7:\"checked\";a:10:{s:19:\"akismet/akismet.php\";s:5:\"4.1.7\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.3\";s:23:\"elementor/elementor.php\";s:6:\"3.0.12\";s:9:\"hello.php\";s:5:\"1.7.2\";s:41:\"mega-addons-for-visual-composer/index.php\";s:5:\"4.2.0\";s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";s:6:\"3.0.25\";s:69:\"slider-revolution-search-replace/slider-revolution-search-replace.php\";s:3:\"1.0\";s:33:\"smart-slider-3/smart-slider-3.php\";s:7:\"3.4.1.9\";s:27:\"woocommerce/woocommerce.php\";s:5:\"4.6.5\";s:34:\"yith-woocommerce-wishlist/init.php\";s:6:\"3.0.15\";}s:8:\"response\";a:3:{s:41:\"mega-addons-for-visual-composer/index.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:45:\"w.org/plugins/mega-addons-for-visual-composer\";s:4:\"slug\";s:31:\"mega-addons-for-visual-composer\";s:6:\"plugin\";s:41:\"mega-addons-for-visual-composer/index.php\";s:11:\"new_version\";s:5:\"4.3.0\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/mega-addons-for-visual-composer/\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/plugin/mega-addons-for-visual-composer.4.3.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:84:\"https://ps.w.org/mega-addons-for-visual-composer/assets/icon-128x128.jpg?rev=2205499\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:86:\"https://ps.w.org/mega-addons-for-visual-composer/assets/banner-772x250.png?rev=2339102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:5:\"6.2.8\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:38:\"w.org/plugins/nextend-facebook-connect\";s:4:\"slug\";s:24:\"nextend-facebook-connect\";s:6:\"plugin\";s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";s:11:\"new_version\";s:6:\"3.1.20\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/nextend-facebook-connect/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/nextend-facebook-connect.3.1.20.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:69:\"https://ps.w.org/nextend-facebook-connect/assets/icon.svg?rev=3336394\";s:3:\"svg\";s:69:\"https://ps.w.org/nextend-facebook-connect/assets/icon.svg?rev=3336394\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/nextend-facebook-connect/assets/banner-1544x500.png?rev=3336394\";s:2:\"1x\";s:79:\"https://ps.w.org/nextend-facebook-connect/assets/banner-772x250.png?rev=3336394\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"smart-slider-3/smart-slider-3.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:28:\"w.org/plugins/smart-slider-3\";s:4:\"slug\";s:14:\"smart-slider-3\";s:6:\"plugin\";s:33:\"smart-slider-3/smart-slider-3.php\";s:11:\"new_version\";s:8:\"3.5.1.29\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/smart-slider-3/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.29.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/smart-slider-3/assets/icon.svg?rev=2307688\";s:3:\"svg\";s:59:\"https://ps.w.org/smart-slider-3/assets/icon.svg?rev=2307688\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/smart-slider-3/assets/banner-1544x500.png?rev=2974547\";s:2:\"1x\";s:69:\"https://ps.w.org/smart-slider-3/assets/banner-772x250.png?rev=2974547\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.5\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}s:13:\"compatibility\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"6.1.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.6.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:13:\"compatibility\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":14:{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.32.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.4.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.6\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:13:\"compatibility\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:69:\"slider-revolution-search-replace/slider-revolution-search-replace.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:46:\"w.org/plugins/slider-revolution-search-replace\";s:4:\"slug\";s:32:\"slider-revolution-search-replace\";s:6:\"plugin\";s:69:\"slider-revolution-search-replace/slider-revolution-search-replace.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/slider-revolution-search-replace/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/slider-revolution-search-replace.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/slider-revolution-search-replace/assets/icon-256x256.png?rev=2300202\";s:2:\"1x\";s:85:\"https://ps.w.org/slider-revolution-search-replace/assets/icon-256x256.png?rev=2300202\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:87:\"https://ps.w.org/slider-revolution-search-replace/assets/banner-772x250.png?rev=2300202\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":14:{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:6:\"10.2.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:13:\"compatibility\";a:0:{}}s:34:\"yith-woocommerce-wishlist/init.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:39:\"w.org/plugins/yith-woocommerce-wishlist\";s:4:\"slug\";s:25:\"yith-woocommerce-wishlist\";s:6:\"plugin\";s:34:\"yith-woocommerce-wishlist/init.php\";s:11:\"new_version\";s:6:\"4.10.0\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/yith-woocommerce-wishlist/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/yith-woocommerce-wishlist.4.10.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/yith-woocommerce-wishlist/assets/icon-128x128.gif?rev=3129302\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-1544x500.gif?rev=3129931\";s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-772x250.gif?rev=3129931\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:13:\"compatibility\";a:0:{}}}}','no'),(352052,'_site_transient_timeout_theme_roots','1760882083','no'),(352053,'_site_transient_theme_roots','a:11:{s:10:\"fancy-shop\";s:7:\"/themes\";s:14:\"flatsome-child\";s:7:\"/themes\";s:8:\"flatsome\";s:7:\"/themes\";s:12:\"instock-lite\";s:7:\"/themes\";s:17:\"new-york-business\";s:7:\"/themes\";s:12:\"shuttle-dark\";s:7:\"/themes\";s:7:\"shuttle\";s:7:\"/themes\";s:10:\"storefront\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) 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=1796 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (2,3,'_wp_page_template','default'),(75,3,'_edit_lock','1602855105:1'),(76,3,'_wp_suggested_privacy_policy_content','a:3:{s:11:\"plugin_name\";s:9:\"WordPress\";s:11:\"policy_text\";s:11790:\"<div class=\"wp-suggested-text\"><h2>Who we are</h2><p class=\"privacy-policy-tutorial\">In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.</p><p class=\"privacy-policy-tutorial\">The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.</p><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://www.thedragonhouse.co.za.</p><h2>What personal data we collect and why we collect it</h2><p class=\"privacy-policy-tutorial\">In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.</p><p class=\"privacy-policy-tutorial\">You should also note any collection and retention of sensitive personal data, such as data concerning health.</p><p class=\"privacy-policy-tutorial\">In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.</p><p class=\"privacy-policy-tutorial\">Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds.</p><p class=\"privacy-policy-tutorial\">By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.</p><h3>Comments</h3><p class=\"privacy-policy-tutorial\">In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.</p><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’s IP address and browser user agent string to help spam detection.</p><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><h3>Media</h3><p class=\"privacy-policy-tutorial\">In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.</p><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><h3>Contact forms</h3><p class=\"privacy-policy-tutorial\">By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.</p><h3>Cookies</h3><p class=\"privacy-policy-tutorial\">In this subsection you should list the cookies your web site uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.</p><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><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><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 "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><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><h3>Embedded content from other websites</h3><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><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><h3>Analytics</h3><p class=\"privacy-policy-tutorial\">In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.</p><p class=\"privacy-policy-tutorial\">By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.</p><h2>Who we share your data with</h2><p class=\"privacy-policy-tutorial\">In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.</p><p class=\"privacy-policy-tutorial\">By default WordPress does not share any personal data with anyone.</p><h2>How long we retain your data</h2><p class=\"privacy-policy-tutorial\">In this section you should explain how long you retain personal data collected or processed by the web site. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.</p><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><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><h2>What rights you have over your data</h2><p class=\"privacy-policy-tutorial\">In this section you should explain what rights your users have over their data and how they can invoke those rights.</p><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><h2>Where we send your data</h2><p class=\"privacy-policy-tutorial\">In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.</p><p class=\"privacy-policy-tutorial\">European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.</p><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><h2>Your contact information</h2><p class=\"privacy-policy-tutorial\">In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.</p><h2>Additional information</h2><p class=\"privacy-policy-tutorial\">If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.</p><h3>How we protect your data</h3><p class=\"privacy-policy-tutorial\">In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.</p><h3>What data breach procedures we have in place</h3><p class=\"privacy-policy-tutorial\">In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.</p><h3>What third parties we receive data from</h3><p class=\"privacy-policy-tutorial\">If your web site receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.</p><h3>What automated decision making and/or profiling we do with user data</h3><p class=\"privacy-policy-tutorial\">If your web site provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.</p><h3>Industry regulatory disclosure requirements</h3><p class=\"privacy-policy-tutorial\">If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.</p></div>\";s:5:\"added\";i:1602855225;}'),(83,40,'_elementor_edit_mode','builder'),(84,40,'_elementor_template_type','kit'),(85,40,'_elementor_version','3.0.11'),(87,40,'_elementor_css','a:6:{s:4:\"time\";i:1602855467;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(91,43,'_elementor_edit_mode','builder'),(92,43,'_elementor_template_type','kit'),(93,43,'_elementor_version','3.0.11'),(94,43,'_elementor_css','a:6:{s:4:\"time\";i:1602855467;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(95,40,'_wp_page_template','default'),(96,40,'_elementor_page_settings','a:2:{s:9:\"site_name\";s:40:\"The Dragon Fashion House and Accessories\";s:16:\"site_description\";s:0:\"\";}'),(99,44,'_wp_attached_file','2020/10/Row1-002-scaled.jpg'),(100,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1192;s:4:\"file\";s:27:\"2020/10/Row1-002-scaled.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Row1-002-scaled-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Row1-002-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"Row1-002-scaled-510x237.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Row1-002-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Row1-002-1024x477.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Row1-002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Row1-002-768x358.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"Row1-002-1536x715.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:715;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:21:\"Row1-002-2048x954.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:954;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Row1-002-1200x559.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"twentytwenty-fullscreen\";a:4:{s:4:\"file\";s:21:\"Row1-002-1980x922.jpg\";s:5:\"width\";i:1980;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:27:\"Row1-002-scaled-247x445.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(101,44,'_wp_attachment_is_custom_background','storefront'),(105,46,'_wp_attached_file','2020/10/cropped-Row1-002-scaled-1.jpg'),(106,46,'_wp_attachment_context','custom-header'),(107,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1199;s:4:\"file\";s:37:\"2020/10/cropped-Row1-002-scaled-1.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"cropped-Row1-002-scaled-1-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"cropped-Row1-002-scaled-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"cropped-Row1-002-scaled-1-510x306.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"cropped-Row1-002-scaled-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"cropped-Row1-002-scaled-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cropped-Row1-002-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"cropped-Row1-002-scaled-1-768x460.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"cropped-Row1-002-scaled-1-1536x921.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:921;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:37:\"cropped-Row1-002-scaled-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(108,46,'_wp_attachment_custom_header_last_used_twentyseventeen','1602857269'),(109,46,'_wp_attachment_is_custom_header','twentyseventeen'),(118,51,'_wp_attached_file','2020/10/cropped-Dragon.jpg'),(119,51,'_wp_attachment_context','custom-logo'),(120,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:301;s:6:\"height\";i:334;s:4:\"file\";s:26:\"2020/10/cropped-Dragon.jpg\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-Dragon-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-Dragon-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-Dragon-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-Dragon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(123,53,'_wp_attached_file','2020/10/cropped-Dragon-1.jpg'),(124,53,'_wp_attachment_context','custom-logo'),(125,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:301;s:6:\"height\";i:332;s:4:\"file\";s:28:\"2020/10/cropped-Dragon-1.jpg\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"cropped-Dragon-1-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-1-272x300.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(155,40,'_edit_lock','1602859633:1'),(186,1,'_edit_lock','1602860432:1'),(191,1,'_edit_last','1'),(192,1,'_wp_page_template','default'),(195,1,'_wp_old_slug','hello-world'),(204,72,'_wp_attached_file','woocommerce-placeholder.png'),(205,72,'_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-247x395.png\";s:5:\"width\";i:247;s:6:\"height\";i:395;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-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;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:{}}}'),(207,78,'_wp_attached_file','2020/10/cropped-Dragon-2.jpg'),(208,78,'_wp_attachment_context','custom-logo'),(209,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:301;s:6:\"height\";i:334;s:4:\"file\";s:28:\"2020/10/cropped-Dragon-2.jpg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"cropped-Dragon-2-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-2-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"cropped-Dragon-2-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(212,80,'_wp_attached_file','2020/10/cropped-Dragon-3.jpg'),(213,80,'_wp_attachment_context','custom-logo'),(214,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:301;s:6:\"height\";i:334;s:4:\"file\";s:28:\"2020/10/cropped-Dragon-3.jpg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"cropped-Dragon-3-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-3-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"cropped-Dragon-3-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Dragon-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(536,22,'_customize_restore_dismissed','1'),(538,114,'_wp_attached_file','2020/10/Logo-1-Dragon-House.png'),(539,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2020/10/Logo-1-Dragon-House.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Logo-1-Dragon-House-247x296.png\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Logo-1-Dragon-House-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:31:\"Logo-1-Dragon-House-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:31:\"Logo-1-Dragon-House-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Logo-1-Dragon-House-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Logo-1-Dragon-House-247x296.png\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"Logo-1-Dragon-House-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:31:\"Logo-1-Dragon-House-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:{}}}'),(540,115,'_wp_attached_file','2020/10/cropped-Logo-1-Dragon-House.png'),(541,115,'_wp_attachment_context','custom-logo'),(542,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:154;s:4:\"file\";s:39:\"2020/10/cropped-Logo-1-Dragon-House.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"cropped-Logo-1-Dragon-House-247x154.png\";s:5:\"width\";i:247;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-1-Dragon-House-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:39:\"cropped-Logo-1-Dragon-House-416x128.png\";s:5:\"width\";i:416;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"cropped-Logo-1-Dragon-House-300x92.png\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-1-Dragon-House-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:39:\"cropped-Logo-1-Dragon-House-247x154.png\";s:5:\"width\";i:247;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-1-Dragon-House-416x128.png\";s:5:\"width\";i:416;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-1-Dragon-House-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:{}}}'),(543,116,'_wp_attached_file','2020/10/Logo-2-Dragon-House.png'),(544,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2020/10/Logo-2-Dragon-House.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Logo-2-Dragon-House-247x296.png\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Logo-2-Dragon-House-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:31:\"Logo-2-Dragon-House-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:31:\"Logo-2-Dragon-House-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Logo-2-Dragon-House-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Logo-2-Dragon-House-247x296.png\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"Logo-2-Dragon-House-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:31:\"Logo-2-Dragon-House-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:{}}}'),(545,117,'_wp_attached_file','2020/10/cropped-Logo-2-Dragon-House.png'),(546,117,'_wp_attachment_context','custom-logo'),(547,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:165;s:4:\"file\";s:39:\"2020/10/cropped-Logo-2-Dragon-House.png\";s:5:\"sizes\";a:3:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"cropped-Logo-2-Dragon-House-247x165.png\";s:5:\"width\";i:247;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-2-Dragon-House-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:39:\"cropped-Logo-2-Dragon-House-416x137.png\";s:5:\"width\";i:416;s:6:\"height\";i:137;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,123,'_edit_lock','1603801593:1'),(558,125,'_edit_lock','1603537053:1'),(559,127,'_edit_lock','1603537077:1'),(560,129,'_edit_lock','1603537111:1'),(561,131,'_menu_item_type','custom'),(562,131,'_menu_item_menu_item_parent','0'),(563,131,'_menu_item_object_id','131'),(564,131,'_menu_item_object','custom'),(565,131,'_menu_item_target',''),(566,131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(567,131,'_menu_item_xfn',''),(568,131,'_menu_item_url','http://www.thedragonhouse.co.za/'),(597,135,'_menu_item_type','post_type'),(598,135,'_menu_item_menu_item_parent','0'),(599,135,'_menu_item_object_id','73'),(600,135,'_menu_item_object','page'),(601,135,'_menu_item_target',''),(602,135,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(603,135,'_menu_item_xfn',''),(604,135,'_menu_item_url',''),(606,136,'_menu_item_type','post_type'),(607,136,'_menu_item_menu_item_parent','0'),(608,136,'_menu_item_object_id','75'),(609,136,'_menu_item_object','page'),(610,136,'_menu_item_target',''),(611,136,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(612,136,'_menu_item_xfn',''),(613,136,'_menu_item_url',''),(619,139,'_wp_attached_file','2020/10/cropped-Logo-2-Dragon-House-1.png'),(620,139,'_wp_attachment_context','custom-logo'),(621,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:164;s:4:\"file\";s:41:\"2020/10/cropped-Logo-2-Dragon-House-1.png\";s:5:\"sizes\";a:3:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"cropped-Logo-2-Dragon-House-1-247x164.png\";s:5:\"width\";i:247;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"cropped-Logo-2-Dragon-House-1-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:41:\"cropped-Logo-2-Dragon-House-1-416x136.png\";s:5:\"width\";i:416;s:6:\"height\";i:136;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:{}}}'),(624,142,'_wp_attached_file','2020/10/Mens-001.jpg'),(625,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1752;s:6:\"height\";i:2526;s:4:\"file\";s:20:\"2020/10/Mens-001.jpg\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"Mens-001-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"Mens-001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"Mens-001-510x735.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Mens-001-208x300.jpg\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Mens-001-710x1024.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Mens-001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Mens-001-768x1107.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"Mens-001-1065x1536.jpg\";s:5:\"width\";i:1065;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"Mens-001-1420x2048.jpg\";s:5:\"width\";i:1420;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Mens-001-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"Mens-001-510x735.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"Mens-001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:20:\"Mens-001-247x445.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602640296\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(626,143,'_wp_attached_file','2020/10/Mens-002.jpg'),(627,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1766;s:6:\"height\";i:2069;s:4:\"file\";s:20:\"2020/10/Mens-002.jpg\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"Mens-002-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"Mens-002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"Mens-002-510x598.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Mens-002-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Mens-002-874x1024.jpg\";s:5:\"width\";i:874;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Mens-002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Mens-002-768x900.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"Mens-002-1311x1536.jpg\";s:5:\"width\";i:1311;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"Mens-002-1748x2048.jpg\";s:5:\"width\";i:1748;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Mens-002-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"Mens-002-510x598.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"Mens-002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:20:\"Mens-002-247x445.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602640389\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(634,147,'_form','<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]'),(635,147,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <info@thedragonhouse.co.za>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(636,147,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <info@thedragonhouse.co.za>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(637,147,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(639,147,'_locale','en_US'),(640,149,'_form','<div class=\"form-flat\">\n[text* your-name placeholder \"Your Name (required)\"]\n\n[email* your-email placeholder \"Your Email (required)\"] </p>\n\n[textarea your-message placeholder \"Your Message (required)\"] </p>\n\n[submit class:button primary \"Submit\"]\n</div>'),(641,149,'_mail',''),(642,149,'_mail_2',''),(643,149,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(644,149,'_additional_settings',''),(645,149,'_locale','en_US'),(646,150,'_form','<div class=\"form-flat\">\n [email* your-email placeholder \"Your Email (required)\"]\n\n [submit class:button primary \"Sign Up\"]\n</div>'),(647,150,'_mail','a:8:{s:7:\"subject\";s:11:\"New signup!\";s:6:\"sender\";s:34:\"Flatsome Theme <mail@flatsome.dev>\";s:4:\"body\";s:24:\"New signup: [your-email]\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(648,150,'_mail_2',''),(649,150,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(650,150,'_additional_settings',''),(651,150,'_locale','en_US'),(652,151,'_form','<div class=\"flex-row form-flat medium-flex-wrap\">\n<div class=\"flex-col flex-grow\">\n [email* your-email placeholder \"Your Email (required)\"]\n</div>\n<div class=\"flex-col ml-half\">\n [submit class:button primary \"Sign Up\"]\n</div>\n</div>'),(653,151,'_mail',''),(654,151,'_mail_2',''),(655,151,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(656,151,'_additional_settings',''),(657,151,'_locale','en_US'),(658,152,'_form','<label>Your Name (required)</label>\n[text* your-name]\n\n<label>Your Email (required)</label>\n[email* your-email] </p>\n\n<label>Your Message (required)</label>\n[textarea your-message] </p>\n\n[submit class:button primary \"Submit\"]'),(659,152,'_mail',''),(660,152,'_mail_2',''),(661,152,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(662,152,'_additional_settings',''),(663,152,'_locale','en_US'),(664,153,'_wp_attached_file','2016/08/dummy-1.jpg'),(665,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:260;s:4:\"file\";s:19:\"2016/08/dummy-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"dummy-1-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-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:19:\"dummy-1-247x260.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-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:19:\"dummy-1-247x260.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(666,154,'_wp_attached_file','2016/08/dummy-2.jpg'),(667,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:650;s:4:\"file\";s:19:\"2016/08/dummy-2.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"dummy-2-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-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:19:\"dummy-2-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"dummy-2-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"dummy-2-510x332.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-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:19:\"dummy-2-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"dummy-2-510x332.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(668,155,'_wp_attached_file','2016/08/dummy-prod-1.jpg'),(669,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2016/08/dummy-prod-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-250x300.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"dummy-prod-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:\"dummy-prod-1-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"dummy-prod-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:\"dummy-prod-1-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-247x445.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(672,156,'_thumbnail_id','153'),(675,157,'_thumbnail_id','153'),(678,158,'_thumbnail_id','153'),(681,159,'_thumbnail_id','153'),(684,160,'_thumbnail_id','153'),(687,161,'_thumbnail_id','153'),(690,162,'_thumbnail_id','153'),(693,163,'_thumbnail_id','153'),(694,164,'_footer','normal'),(695,164,'_wp_page_template','default'),(696,165,'_footer','normal'),(697,165,'_wp_page_template','page-left-sidebar.php'),(698,166,'_footer','normal'),(699,166,'_thumbnail_id','153'),(700,166,'_wp_page_template','page-blank.php'),(701,167,'_footer','transparent'),(702,167,'_wp_page_template','page-transparent-header-light.php'),(703,167,'_thumbnail_id','153'),(704,168,'_footer','normal'),(705,168,'_wp_page_template','page-blank-landingpage.php'),(706,169,'_footer','transparent'),(707,169,'_wp_page_template','page-transparent-header-light.php'),(708,169,'_thumbnail_id','153'),(709,170,'_footer','normal'),(710,170,'_wp_page_template','page-blank.php'),(711,170,'_thumbnail_id','153'),(712,171,'_footer','normal'),(713,171,'_wp_page_template','page-blank.php'),(714,171,'_thumbnail_id','153'),(715,172,'_footer','transparent'),(716,172,'_wp_page_template','page-transparent-header-light.php'),(717,172,'_thumbnail_id','153'),(718,173,'_footer','normal'),(719,173,'_wp_page_template','page-blank.php'),(720,173,'_thumbnail_id','153'),(721,174,'_footer','normal'),(722,174,'_wp_page_template','default'),(723,174,'_thumbnail_id','153'),(724,175,'_footer','normal'),(725,175,'_wp_page_template','page-blank.php'),(726,175,'_thumbnail_id','153'),(727,176,'_footer','normal'),(728,176,'_wp_page_template','page-blank.php'),(729,176,'_thumbnail_id','153'),(730,177,'_footer','normal'),(731,177,'_wp_page_template','default'),(732,177,'_thumbnail_id','153'),(733,178,'_footer','normal'),(734,178,'_wp_page_template','page-blank.php'),(735,178,'_thumbnail_id','153'),(736,179,'_footer','normal'),(737,179,'_wp_page_template','page-blank.php'),(738,179,'_thumbnail_id','153'),(739,180,'_wp_page_template','page-transparent-header.php'),(740,180,'_footer','normal'),(741,180,'_thumbnail_id','153'),(742,181,'_wp_page_template','page-blank.php'),(743,181,'_footer','normal'),(744,181,'_thumbnail_id','153'),(745,182,'_thumbnail_id','153'),(746,182,'_wp_page_template','page-blank.php'),(747,182,'_footer','normal'),(748,183,'_thumbnail_id','153'),(749,183,'_wp_page_template','page-blank.php'),(750,183,'_footer','normal'),(751,184,'_thumbnail_id','153'),(752,184,'_wp_page_template','page-blank.php'),(753,184,'_footer','normal'),(754,185,'_thumbnail_id','153'),(755,185,'_wp_page_template','page-blank.php'),(756,185,'_footer','normal'),(757,186,'_wp_page_template','page-blank.php'),(758,186,'_thumbnail_id','153'),(759,186,'_footer','normal'),(760,187,'_wp_page_template','page-blank.php'),(761,187,'_thumbnail_id','153'),(762,187,'_footer','normal'),(763,188,'_thumbnail_id','153'),(764,188,'_wp_page_template','page-blank.php'),(765,188,'_footer','normal'),(766,189,'_thumbnail_id','153'),(767,189,'_wp_page_template','page-transparent-header-light.php'),(768,189,'_footer','normal'),(769,190,'_wp_page_template','page-blank.php'),(770,190,'_thumbnail_id','153'),(771,190,'_footer','normal'),(772,191,'_wp_page_template','page-blank.php'),(773,191,'_thumbnail_id','153'),(774,191,'_footer','normal'),(775,192,'_wp_page_template','page-transparent-header-light.php'),(776,192,'_footer','normal'),(777,192,'_thumbnail_id','153'),(778,193,'_wp_page_template','page-blank.php'),(779,193,'_thumbnail_id','153'),(780,193,'_footer','normal'),(781,194,'_wp_page_template','page-blank.php'),(782,194,'_footer','normal'),(783,194,'_thumbnail_id','153'),(784,195,'_wp_page_template','page-blank.php'),(785,195,'_footer','normal'),(786,195,'_thumbnail_id','153'),(787,196,'_wp_page_template','page-blank.php'),(788,196,'_footer','normal'),(789,196,'_thumbnail_id','153'),(790,197,'_wp_page_template','page-blank.php'),(791,197,'_footer','normal'),(792,197,'_thumbnail_id','153'),(793,198,'_wp_page_template','page-blank.php'),(794,198,'_footer','normal'),(795,198,'_thumbnail_id','153'),(796,199,'_wp_page_template','page-blank.php'),(797,199,'_footer','normal'),(798,199,'_thumbnail_id','153'),(799,200,'_wp_page_template','default'),(800,201,'_wp_page_template','page-blank.php'),(801,201,'_thumbnail_id','153'),(802,201,'_footer','normal'),(803,202,'_wp_page_template','default'),(804,202,'_footer','normal'),(805,202,'_thumbnail_id','153'),(806,203,'_wp_page_template','default'),(807,203,'_footer','normal'),(808,203,'_thumbnail_id','153'),(809,204,'_wp_page_template','page-transparent-header-light.php'),(810,204,'_footer','normal'),(811,204,'_thumbnail_id','153'),(812,205,'_wp_page_template','page-blank.php'),(813,205,'_footer','normal'),(814,206,'_wp_page_template','default'),(815,207,'_wp_page_template','default'),(816,207,'_footer','normal'),(817,208,'_wp_page_template','page-blank.php'),(818,208,'_footer','normal'),(819,208,'_thumbnail_id','153'),(820,209,'_wp_page_template','page-blank.php'),(821,209,'_thumbnail_id','153'),(822,209,'_footer','normal'),(823,210,'_wp_page_template','page-blank.php'),(824,210,'_footer','normal'),(825,210,'_thumbnail_id','153'),(826,211,'_wp_page_template','page-blank.php'),(827,211,'_thumbnail_id','153'),(828,211,'_footer','normal'),(829,212,'_wp_page_template','page-transparent-header-light.php'),(830,212,'_footer','normal'),(831,212,'_thumbnail_id','153'),(832,213,'_wp_page_template','page-my-account.php'),(833,214,'_wp_page_template','page-blank.php'),(834,214,'_thumbnail_id','153'),(835,214,'_footer','normal'),(836,215,'_wp_page_template','page-blank.php'),(837,215,'_thumbnail_id','153'),(838,215,'_footer','normal'),(839,216,'_wp_page_template','page-blank.php'),(840,216,'_thumbnail_id','153'),(841,216,'_footer',''),(842,217,'_wp_page_template','page-blank.php'),(843,217,'_thumbnail_id','153'),(844,217,'_footer','normal'),(845,218,'_wp_page_template','page-blank.php'),(846,218,'_thumbnail_id','153'),(847,218,'_footer','normal'),(848,219,'_wp_page_template','page-blank.php'),(849,219,'_thumbnail_id','153'),(850,219,'_footer','normal'),(851,220,'_wp_page_template','page-blank.php'),(852,220,'_thumbnail_id','153'),(853,220,'_footer','normal'),(854,221,'_wp_page_template','page-blank.php'),(855,221,'_footer','normal'),(856,221,'_thumbnail_id','153'),(857,222,'_wp_page_template','page-blank.php'),(858,222,'_thumbnail_id','153'),(859,222,'_footer','normal'),(860,223,'_wp_page_template','page-blank.php'),(861,223,'_footer','normal'),(862,223,'_thumbnail_id','153'),(863,224,'_wp_page_template','page-transparent-header-light.php'),(864,224,'_footer','normal'),(865,224,'_thumbnail_id','153'),(866,225,'_wp_page_template','page-blank.php'),(867,225,'_thumbnail_id','153'),(868,225,'_footer','normal'),(869,226,'_wp_page_template','default'),(870,226,'_thumbnail_id','153'),(871,226,'_footer','normal'),(872,227,'_wp_page_template','page-transparent-header-light.php'),(873,227,'_thumbnail_id','153'),(874,227,'_footer','normal'),(875,228,'_wp_page_template','page-blank.php'),(876,228,'_footer','normal'),(877,228,'_thumbnail_id','153'),(878,229,'_wp_page_template','page-blank.php'),(879,229,'_footer','normal'),(880,229,'_thumbnail_id','153'),(881,230,'_wp_page_template','page-blank.php'),(882,230,'_footer','normal'),(883,230,'_thumbnail_id','153'),(884,231,'_wp_page_template','page-blank.php'),(885,231,'_footer','normal'),(886,231,'_thumbnail_id','153'),(887,291,'_thumbnail_id','153'),(888,292,'_thumbnail_id','153'),(889,293,'_thumbnail_id','153'),(890,294,'_thumbnail_id','153'),(891,296,'_wp_page_template',''),(892,296,'_footer',''),(1514,317,'_wp_attached_file','2020/10/Singles-001.jpg'),(1515,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1631;s:4:\"file\";s:23:\"2020/10/Singles-001.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Singles-001-265x300.jpg\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Singles-001-904x1024.jpg\";s:5:\"width\";i:904;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Singles-001-768x870.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:870;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Singles-001-1356x1536.jpg\";s:5:\"width\";i:1356;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Singles-001-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"Singles-001-510x578.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-001-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:23:\"Singles-001-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Singles-001-510x578.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:23:\"Singles-001-247x445.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"18\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602638482\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1516,123,'_wp_page_template','page-blank.php'),(1517,123,'_footer','normal'),(1518,123,'_thumbnail_id',''),(1523,320,'_wp_attached_file','2014/08/Ladies-001.jpg'),(1524,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1670;s:6:\"height\";i:2559;s:4:\"file\";s:22:\"2014/08/Ladies-001.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Ladies-001-196x300.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Ladies-001-668x1024.jpg\";s:5:\"width\";i:668;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Ladies-001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Ladies-001-768x1177.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"Ladies-001-1002x1536.jpg\";s:5:\"width\";i:1002;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"Ladies-001-1337x2048.jpg\";s:5:\"width\";i:1337;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"Ladies-001-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"Ladies-001-510x781.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:781;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Ladies-001-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:\"Ladies-001-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"Ladies-001-510x781.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:781;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Ladies-001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:22:\"Ladies-001-247x445.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602639895\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1560,324,'_wp_attached_file','2020/10/Singles-007.jpg'),(1561,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1798;s:6:\"height\";i:1911;s:4:\"file\";s:23:\"2020/10/Singles-007.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Singles-007-282x300.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Singles-007-963x1024.jpg\";s:5:\"width\";i:963;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-007-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Singles-007-768x816.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:816;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Singles-007-1445x1536.jpg\";s:5:\"width\";i:1445;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Singles-007-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"Singles-007-510x542.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-007-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:23:\"Singles-007-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Singles-007-510x542.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-007-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:23:\"Singles-007-247x445.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602640722\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"62\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1562,325,'_wp_attached_file','2020/10/Singles-004.jpg'),(1563,325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1798;s:6:\"height\";i:1795;s:4:\"file\";s:23:\"2020/10/Singles-004.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Singles-004-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Singles-004-1024x1022.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1022;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Singles-004-768x767.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Singles-004-1536x1533.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Singles-004-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"Singles-004-510x509.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-004-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:23:\"Singles-004-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Singles-004-510x509.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:23:\"Singles-004-247x445.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"18\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602639204\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"65\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1564,326,'_wp_attached_file','2020/10/Singles-006.jpg'),(1565,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1706;s:6:\"height\";i:1723;s:4:\"file\";s:23:\"2020/10/Singles-006.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Singles-006-297x300.jpg\";s:5:\"width\";i:297;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Singles-006-1014x1024.jpg\";s:5:\"width\";i:1014;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Singles-006-768x776.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:776;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Singles-006-1521x1536.jpg\";s:5:\"width\";i:1521;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Singles-006-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"Singles-006-510x515.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-006-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:23:\"Singles-006-247x296.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Singles-006-510x515.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-006-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:2:\"18\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602639267\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"57\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1567,74,'_edit_lock','1603553435:1'),(1568,174,'_oembed_97120786a5d618011442f73be26e093f','<iframe title=\"Most beautiful drone videos ever filmed 2015 – Our planet is amazing\" width=\"1020\" height=\"574\" src=\"https://www.youtube.com/embed/AoPiLg8DZ3A?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(1569,174,'_oembed_time_97120786a5d618011442f73be26e093f','1603553580'),(1570,174,'_oembed_9b3d7988e213d0f6db44b486cf8ab762','<iframe title=\"Tigerilla - TULIPS ft. Gill Bates\" src=\"https://player.vimeo.com/video/180255453?dnt=1&app_id=122963\" width=\"1020\" height=\"574\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1571,174,'_oembed_time_9b3d7988e213d0f6db44b486cf8ab762','1603553582'),(1581,123,'_edit_last','1'),(1582,334,'_wp_attached_file','2020/10/features.fp_.-7-of-18-304x1024-1.jpg'),(1583,334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:304;s:6:\"height\";i:1024;s:4:\"file\";s:44:\"2020/10/features.fp_.-7-of-18-304x1024-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"features.fp_.-7-of-18-304x1024-1-89x300.jpg\";s:5:\"width\";i:89;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"features.fp_.-7-of-18-304x1024-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:44:\"features.fp_.-7-of-18-304x1024-1-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"features.fp_.-7-of-18-304x1024-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:\"features.fp_.-7-of-18-304x1024-1-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"features.fp_.-7-of-18-304x1024-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(1584,334,'_flatsome_studio_id','8102'),(1585,335,'_wp_attached_file','2020/10/lifestyle-01-1024x550-1.jpg'),(1586,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:550;s:4:\"file\";s:35:\"2020/10/lifestyle-01-1024x550-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"lifestyle-01-1024x550-1-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"lifestyle-01-1024x550-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:35:\"lifestyle-01-1024x550-1-768x413.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"lifestyle-01-1024x550-1-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"lifestyle-01-1024x550-1-510x274.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"lifestyle-01-1024x550-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:35:\"lifestyle-01-1024x550-1-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"lifestyle-01-1024x550-1-510x274.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"lifestyle-01-1024x550-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(1587,335,'_flatsome_studio_id','13995'),(1588,336,'_wp_attached_file','2020/10/daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1.jpg'),(1589,336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:589;s:4:\"file\";s:57:\"2020/10/daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-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:57:\"daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1-768x442.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:57:\"daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:57:\"daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1-510x293.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:57:\"daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-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:57:\"daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:57:\"daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1-510x293.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:57:\"daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(1590,336,'_flatsome_studio_id','14001'),(1591,337,'_wp_attached_file','2020/10/tamara-bellis-68csPWTnafo-unsplash-small.jpg'),(1592,337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:825;s:4:\"file\";s:52:\"2020/10/tamara-bellis-68csPWTnafo-unsplash-small.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"tamara-bellis-68csPWTnafo-unsplash-small-300x248.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"tamara-bellis-68csPWTnafo-unsplash-small-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:52:\"tamara-bellis-68csPWTnafo-unsplash-small-768x634.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"tamara-bellis-68csPWTnafo-unsplash-small-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"tamara-bellis-68csPWTnafo-unsplash-small-510x421.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"tamara-bellis-68csPWTnafo-unsplash-small-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:52:\"tamara-bellis-68csPWTnafo-unsplash-small-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"tamara-bellis-68csPWTnafo-unsplash-small-510x421.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"tamara-bellis-68csPWTnafo-unsplash-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1593,337,'_flatsome_studio_id','14921'),(1594,338,'_wp_attached_file','2020/10/chuttersnap-1efPs5z4uZ0-unsplash-small.jpg'),(1595,338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:50:\"2020/10/chuttersnap-1efPs5z4uZ0-unsplash-small.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"chuttersnap-1efPs5z4uZ0-unsplash-small-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"chuttersnap-1efPs5z4uZ0-unsplash-small-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:50:\"chuttersnap-1efPs5z4uZ0-unsplash-small-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"chuttersnap-1efPs5z4uZ0-unsplash-small-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:50:\"chuttersnap-1efPs5z4uZ0-unsplash-small-510x340.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:50:\"chuttersnap-1efPs5z4uZ0-unsplash-small-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:50:\"chuttersnap-1efPs5z4uZ0-unsplash-small-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:50:\"chuttersnap-1efPs5z4uZ0-unsplash-small-510x340.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:50:\"chuttersnap-1efPs5z4uZ0-unsplash-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1596,338,'_flatsome_studio_id','14933'),(1597,339,'_wp_attached_file','2020/10/curology-2hqcQW_kWl8-unsplash-small.jpg'),(1598,339,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:47:\"2020/10/curology-2hqcQW_kWl8-unsplash-small.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"curology-2hqcQW_kWl8-unsplash-small-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"curology-2hqcQW_kWl8-unsplash-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"curology-2hqcQW_kWl8-unsplash-small-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"curology-2hqcQW_kWl8-unsplash-small-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:47:\"curology-2hqcQW_kWl8-unsplash-small-510x340.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:47:\"curology-2hqcQW_kWl8-unsplash-small-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:47:\"curology-2hqcQW_kWl8-unsplash-small-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:47:\"curology-2hqcQW_kWl8-unsplash-small-510x340.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:47:\"curology-2hqcQW_kWl8-unsplash-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1599,339,'_flatsome_studio_id','14934'),(1605,347,'_wp_attached_file','2020/10/logo-light.png'),(1606,347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:84;s:4:\"file\";s:22:\"2020/10/logo-light.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"logo-light-300x63.png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"logo-light-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"logo-light-247x84.png\";s:5:\"width\";i:247;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"logo-light-100x84.png\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"logo-light-247x84.png\";s:5:\"width\";i:247;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"logo-light-100x84.png\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1607,347,'_flatsome_studio_id','14586'),(1658,384,'_wp_attached_file','2014/08/Ladies-002.jpg'),(1659,384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1618;s:6:\"height\";i:2047;s:4:\"file\";s:22:\"2014/08/Ladies-002.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Ladies-002-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Ladies-002-809x1024.jpg\";s:5:\"width\";i:809;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Ladies-002-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:22:\"Ladies-002-768x972.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:972;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"Ladies-002-1214x1536.jpg\";s:5:\"width\";i:1214;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"Ladies-002-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"Ladies-002-510x645.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Ladies-002-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:\"Ladies-002-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"Ladies-002-510x645.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Ladies-002-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:2:\"16\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602640059\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1660,385,'_wp_attached_file','2014/08/Singles-002.jpg'),(1661,385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1631;s:4:\"file\";s:23:\"2014/08/Singles-002.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Singles-002-265x300.jpg\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Singles-002-904x1024.jpg\";s:5:\"width\";i:904;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Singles-002-768x870.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:870;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Singles-002-1356x1536.jpg\";s:5:\"width\";i:1356;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Singles-002-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"Singles-002-510x578.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-002-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:23:\"Singles-002-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Singles-002-510x578.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-002-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:2:\"18\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602638130\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1662,386,'_wp_attached_file','2014/08/Singles-003.jpg'),(1663,386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1631;s:4:\"file\";s:23:\"2014/08/Singles-003.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Singles-003-265x300.jpg\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Singles-003-904x1024.jpg\";s:5:\"width\";i:904;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Singles-003-768x870.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:870;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Singles-003-1356x1536.jpg\";s:5:\"width\";i:1356;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Singles-003-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"Singles-003-510x578.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-003-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:23:\"Singles-003-247x395.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Singles-003-510x578.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Singles-003-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:2:\"18\";s:6:\"credit\";s:11:\"DIS PTY LTD\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:23:\"Cov RGB to SSh nov 2014\";s:17:\"created_timestamp\";s:10:\"1602638314\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:15:\"50% of original\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1664,389,'_regular_price','1099'),(1665,389,'total_sales','0'),(1666,389,'_tax_status','taxable'),(1667,389,'_tax_class',''),(1668,389,'_manage_stock','no'),(1669,389,'_backorders','no'),(1670,389,'_sold_individually','no'),(1671,389,'_virtual','no'),(1672,389,'_downloadable','no'),(1673,389,'_product_image_gallery','143'),(1674,389,'_download_limit','-1'),(1675,389,'_download_expiry','-1'),(1676,389,'_thumbnail_id','142'),(1677,389,'_stock',NULL),(1678,389,'_stock_status','instock'),(1679,389,'_wc_average_rating','0'),(1680,389,'_wc_review_count','0'),(1681,389,'_product_version','4.6.1'),(1682,389,'_price','1099'),(1683,389,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1684,389,'_min_variation_price','29'),(1685,389,'_max_variation_price','29'),(1686,389,'_min_variation_regular_price','29'),(1687,389,'_max_variation_regular_price','29'),(1688,389,'_dp_original','250'),(1689,389,'_max_regular_price_variation_id','8870'),(1690,389,'pv_commission_rate',''),(1691,389,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(1692,389,'_edit_lock','1603804132:1'),(1693,389,'_edit_last','1'),(1700,390,'_regular_price','89'),(1701,390,'total_sales','0'),(1702,390,'_tax_status','taxable'),(1703,390,'_tax_class',''),(1704,390,'_manage_stock','no'),(1705,390,'_backorders','no'),(1706,390,'_sold_individually','no'),(1707,390,'_virtual','no'),(1708,390,'_downloadable','no'),(1709,390,'_product_image_gallery','325,326'),(1710,390,'_download_limit','-1'),(1711,390,'_download_expiry','-1'),(1712,390,'_thumbnail_id','324'),(1713,390,'_stock',NULL),(1714,390,'_stock_status','instock'),(1715,390,'_wc_average_rating','0'),(1716,390,'_wc_review_count','0'),(1717,390,'_product_version','4.6.1'),(1718,390,'_price','89'),(1719,390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1720,390,'_min_variation_price','39'),(1721,390,'_max_variation_price','39'),(1722,390,'_min_variation_regular_price','39'),(1723,390,'_max_variation_regular_price','39'),(1724,390,'_min_variation_sale_price',''),(1725,390,'_max_variation_sale_price',''),(1726,390,'_dp_original','157'),(1727,390,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(1728,390,'_edit_lock','1603804282:1'),(1729,390,'_edit_last','1'),(1730,391,'_regular_price','1099'),(1731,391,'total_sales','0'),(1732,391,'_tax_status','taxable'),(1733,391,'_tax_class',''),(1734,391,'_manage_stock','no'),(1735,391,'_backorders','no'),(1736,391,'_sold_individually','no'),(1737,391,'_virtual','no'),(1738,391,'_downloadable','no'),(1739,391,'_product_image_gallery','384'),(1740,391,'_download_limit','-1'),(1741,391,'_download_expiry','-1'),(1742,391,'_thumbnail_id','320'),(1743,391,'_stock',NULL),(1744,391,'_stock_status','instock'),(1745,391,'_wc_average_rating','0'),(1746,391,'_wc_review_count','0'),(1747,391,'_product_version','4.6.1'),(1748,391,'_price','1099'),(1749,391,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1750,391,'_min_variation_price','29'),(1751,391,'_max_variation_price','29'),(1752,391,'_min_variation_regular_price','29'),(1753,391,'_max_variation_regular_price','29'),(1754,391,'_dp_original','250'),(1755,391,'_max_regular_price_variation_id','8870'),(1756,391,'pv_commission_rate',''),(1757,391,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(1758,391,'_edit_lock','1603804589:1'),(1759,392,'_regular_price','89'),(1760,392,'total_sales','0'),(1761,392,'_tax_status','taxable'),(1762,392,'_tax_class',''),(1763,392,'_manage_stock','no'),(1764,392,'_backorders','no'),(1765,392,'_sold_individually','no'),(1766,392,'_virtual','no'),(1767,392,'_downloadable','no'),(1768,392,'_product_image_gallery','317,386'),(1769,392,'_download_limit','-1'),(1770,392,'_download_expiry','-1'),(1771,392,'_thumbnail_id','385'),(1772,392,'_stock',NULL),(1773,392,'_stock_status','instock'),(1774,392,'_wc_average_rating','0'),(1775,392,'_wc_review_count','0'),(1776,392,'_product_version','4.6.1'),(1777,392,'_price','89'),(1778,392,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1779,392,'_min_variation_price','39'),(1780,392,'_max_variation_price','39'),(1781,392,'_min_variation_regular_price','39'),(1782,392,'_max_variation_regular_price','39'),(1783,392,'_min_variation_sale_price',''),(1784,392,'_max_variation_sale_price',''),(1785,392,'_dp_original','157'),(1786,392,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(1787,392,'_edit_lock','1603804405:1'),(1794,392,'_edit_last','1'),(1795,391,'_edit_last','1');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext 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=394 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2020-10-16 12:49:59','2020-10-16 12:49:59','','Coming Soon','','publish','open','open','','coming-soon','','','2020-10-16 15:00:32','2020-10-16 15:00:32','',0,'http://www.thedragonhouse.co.za/?p=1',0,'post','',1),(3,1,'2020-10-16 12:49:59','2020-10-16 12:49:59','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://www.thedragonhouse.co.za.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2020-10-16 12:49:59','2020-10-16 12:49:59','',0,'http://www.thedragonhouse.co.za/?page_id=3',0,'page','',0),(40,1,'2020-10-16 13:37:35','2020-10-16 13:37:35','','Default Kit','','publish','closed','closed','','default-kit','','','2020-10-16 14:57:41','2020-10-16 14:57:41','',0,'http://www.thedragonhouse.co.za/?elementor_library=default-kit',0,'elementor_library','',0),(43,1,'2020-10-16 13:56:07','2020-10-16 13:56:07','','Default Kit','','inherit','closed','closed','','40-revision-v1','','','2020-10-16 13:56:07','2020-10-16 13:56:07','',40,'http://www.thedragonhouse.co.za/2020/10/16/40-revision-v1/',0,'revision','',0),(44,1,'2020-10-16 14:03:05','2020-10-16 14:03:05','','50 % of original','Cov RGB to SSh nov 2014','inherit','open','closed','','100-of-original','','','2020-10-16 14:05:21','2020-10-16 14:05:21','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Row1-002.jpg',0,'attachment','image/jpeg',0),(46,1,'2020-10-16 14:07:45','2020-10-16 14:07:45','','cropped-Row1-002-scaled-1.jpg','','inherit','open','closed','','cropped-row1-002-scaled-1-jpg','','','2020-10-16 14:07:45','2020-10-16 14:07:45','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Row1-002-scaled-1.jpg',0,'attachment','image/jpeg',0),(51,1,'2020-10-16 14:36:43','2020-10-16 14:36:43','http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Dragon.jpg','cropped-Dragon.jpg','','inherit','open','closed','','cropped-dragon-jpg','','','2020-10-16 14:36:43','2020-10-16 14:36:43','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Dragon.jpg',0,'attachment','image/jpeg',0),(53,1,'2020-10-16 14:40:31','2020-10-16 14:40:31','http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Dragon-1.jpg','cropped-Dragon-1.jpg','','inherit','open','closed','','cropped-dragon-1-jpg','','','2020-10-16 14:40:31','2020-10-16 14:40:31','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Dragon-1.jpg',0,'attachment','image/jpeg',0),(68,1,'2020-10-16 14:54:49','2020-10-16 14:54:49','','Coming Soon','','inherit','closed','closed','','1-revision-v1','','','2020-10-16 14:54:49','2020-10-16 14:54:49','',1,'http://www.thedragonhouse.co.za/2020/10/16/1-revision-v1/',0,'revision','',0),(72,1,'2020-10-19 05:58:37','2020-10-19 05:58:37','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2020-10-19 05:58:37','2020-10-19 05:58:37','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/woocommerce-placeholder.png',0,'attachment','image/png',0),(73,1,'2020-10-19 05:58:38','2020-10-19 05:58:38','','Shop','','publish','closed','closed','','shop','','','2020-10-19 05:58:38','2020-10-19 05:58:38','',0,'http://www.thedragonhouse.co.za/shop/',0,'page','',0),(74,1,'2020-10-19 05:58:38','2020-10-19 05:58:38','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2020-10-19 05:58:38','2020-10-19 05:58:38','',0,'http://www.thedragonhouse.co.za/cart/',0,'page','',0),(75,1,'2020-10-19 05:58:38','2020-10-19 05:58:38','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2020-10-19 05:58:38','2020-10-19 05:58:38','',0,'http://www.thedragonhouse.co.za/checkout/',0,'page','',0),(76,1,'2020-10-19 05:58:39','2020-10-19 05:58:39','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2020-10-19 05:58:39','2020-10-19 05:58:39','',0,'http://www.thedragonhouse.co.za/my-account/',0,'page','',0),(78,1,'2020-10-23 12:21:26','2020-10-23 12:21:26','http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Dragon-2.jpg','cropped-Dragon-2.jpg','','inherit','open','closed','','cropped-dragon-2-jpg','','','2020-10-23 12:21:26','2020-10-23 12:21:26','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Dragon-2.jpg',0,'attachment','image/jpeg',0),(80,1,'2020-10-23 12:23:04','2020-10-23 12:23:04','http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Dragon-3.jpg','cropped-Dragon-3.jpg','','inherit','open','closed','','cropped-dragon-3-jpg','','','2020-10-23 12:23:04','2020-10-23 12:23:04','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Dragon-3.jpg',0,'attachment','image/jpeg',0),(114,1,'2020-10-24 09:13:13','2020-10-24 09:13:13','','Logo 1 Dragon House','','inherit','open','closed','','logo-1-dragon-house','','','2020-10-24 09:13:13','2020-10-24 09:13:13','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Logo-1-Dragon-House.png',0,'attachment','image/png',0),(115,1,'2020-10-24 09:13:38','2020-10-24 09:13:38','http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Logo-1-Dragon-House.png','cropped-Logo-1-Dragon-House.png','','inherit','open','closed','','cropped-logo-1-dragon-house-png','','','2020-10-24 09:13:38','2020-10-24 09:13:38','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Logo-1-Dragon-House.png',0,'attachment','image/png',0),(116,1,'2020-10-24 09:16:18','2020-10-24 09:16:18','','Logo 2 Dragon House','','inherit','open','closed','','logo-2-dragon-house','','','2020-10-24 09:16:18','2020-10-24 09:16:18','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Logo-2-Dragon-House.png',0,'attachment','image/png',0),(117,1,'2020-10-24 09:16:48','2020-10-24 09:16:48','http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Logo-2-Dragon-House.png','cropped-Logo-2-Dragon-House.png','','inherit','open','closed','','cropped-logo-2-dragon-house-png','','','2020-10-24 09:16:48','2020-10-24 09:16:48','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Logo-2-Dragon-House.png',0,'attachment','image/png',0),(123,1,'2020-10-24 10:58:50','2020-10-24 10:58:50','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">Welcome</span></h3>\n[divider margin=\"3px\"]\n\n<p data-animate-delay=\"300\"><span style=\"font-size: 150%;\"><strong><span style=\"color: #333333;\">to our online store</span></strong></span></p>\n[divider]\n\n[button text=\"Shop Now\" letter_case=\"lowercase\" style=\"outline\" link=\"http://www.thedragonhouse.co.za/shop/\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[divider align=\"center\" width=\"100%\" height=\"10px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 75%;\">Copyright 2020 © The Dragon Fashion House & Accessories</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','publish','closed','closed','','home','','','2020-10-27 13:18:46','2020-10-27 13:18:46','',0,'http://www.thedragonhouse.co.za/?page_id=123',0,'page','',0),(124,1,'2020-10-24 10:58:50','2020-10-24 10:58:50','','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-24 10:58:50','2020-10-24 10:58:50','',123,'http://www.thedragonhouse.co.za/2020/10/24/123-revision-v1/',0,'revision','',0),(125,1,'2020-10-24 10:59:52','2020-10-24 10:59:52','','FAQ','','publish','closed','closed','','faq','','','2020-10-24 13:16:41','2020-10-24 13:16:41','',188,'http://www.thedragonhouse.co.za/?page_id=125',0,'page','',0),(126,1,'2020-10-24 10:59:52','2020-10-24 10:59:52','','FAQ','','inherit','closed','closed','','125-revision-v1','','','2020-10-24 10:59:52','2020-10-24 10:59:52','',125,'http://www.thedragonhouse.co.za/2020/10/24/125-revision-v1/',0,'revision','',0),(127,1,'2020-10-24 11:00:16','2020-10-24 11:00:16','','Blog','','publish','closed','closed','','blog','','','2020-10-24 11:00:16','2020-10-24 11:00:16','',0,'http://www.thedragonhouse.co.za/?page_id=127',0,'page','',0),(128,1,'2020-10-24 11:00:16','2020-10-24 11:00:16','','Blog','','inherit','closed','closed','','127-revision-v1','','','2020-10-24 11:00:16','2020-10-24 11:00:16','',127,'http://www.thedragonhouse.co.za/2020/10/24/127-revision-v1/',0,'revision','',0),(129,1,'2020-10-24 11:00:36','2020-10-24 11:00:36','','Contact','','publish','closed','closed','','contact','','','2020-10-24 13:16:42','2020-10-24 13:16:42','',188,'http://www.thedragonhouse.co.za/?page_id=129',0,'page','',0),(130,1,'2020-10-24 11:00:36','2020-10-24 11:00:36','','Contact','','inherit','closed','closed','','129-revision-v1','','','2020-10-24 11:00:36','2020-10-24 11:00:36','',129,'http://www.thedragonhouse.co.za/2020/10/24/129-revision-v1/',0,'revision','',0),(131,1,'2020-10-24 11:03:12','2020-10-24 11:03:12','','Home','','publish','closed','closed','','home','','','2020-10-24 11:06:17','2020-10-24 11:06:17','',0,'http://www.thedragonhouse.co.za/?p=131',1,'nav_menu_item','',0),(135,1,'2020-10-24 11:03:14','2020-10-24 11:03:14',' ','','','publish','closed','closed','','135','','','2020-10-24 11:06:19','2020-10-24 11:06:19','',0,'http://www.thedragonhouse.co.za/?p=135',2,'nav_menu_item','',0),(136,1,'2020-10-24 11:05:20','2020-10-24 11:05:20',' ','','','publish','closed','closed','','136','','','2020-10-24 11:06:21','2020-10-24 11:06:21','',0,'http://www.thedragonhouse.co.za/?p=136',5,'nav_menu_item','',0),(139,1,'2020-10-24 11:24:10','2020-10-24 11:24:10','http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Logo-2-Dragon-House-1.png','cropped-Logo-2-Dragon-House-1.png','','inherit','open','closed','','cropped-logo-2-dragon-house-1-png','','','2020-10-24 11:24:10','2020-10-24 11:24:10','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/cropped-Logo-2-Dragon-House-1.png',0,'attachment','image/png',0),(142,1,'2020-10-24 12:11:10','2020-10-24 12:11:10','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original','','','2020-10-24 12:11:10','2020-10-24 12:11:10','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Mens-001.jpg',0,'attachment','image/jpeg',0),(143,1,'2020-10-24 12:11:21','2020-10-24 12:11:21','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original-2','','','2020-10-24 12:11:21','2020-10-24 12:11:21','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Mens-002.jpg',0,'attachment','image/jpeg',0),(147,1,'2020-10-24 13:06:41','2020-10-24 13:06:41','<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <info@thedragonhouse.co.za>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <info@thedragonhouse.co.za>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2020-10-24 13:06:41','2020-10-24 13:06:41','',0,'http://www.thedragonhouse.co.za/?post_type=wpcf7_contact_form&p=147',0,'wpcf7_contact_form','',0),(148,1,'2020-10-24 13:07:38','2020-10-24 13:07:38','<!-- wp:shortcode -->[yith_wcwl_wishlist]<!-- /wp:shortcode -->','Wishlist','','publish','closed','closed','','wishlist','','','2020-10-24 13:07:38','2020-10-24 13:07:38','',0,'http://www.thedragonhouse.co.za/wishlist/',0,'page','',0),(149,1,'2016-08-29 14:03:10','2016-08-29 14:03:10','<div class=\"form-flat\">\r\n[text* your-name placeholder \"Your Name (required)\"]\r\n\r\n[email* your-email placeholder \"Your Email (required)\"] </p>\r\n\r\n[textarea your-message placeholder \"Your Message (required)\"] </p>\r\n\r\n[submit class:button primary \"Submit\"]\r\n</div>\nFlatsome \"[your-subject]\"\n[your-name] <wordpress@flatsome.dev>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\nemail@mail.com\nReply-To: [your-email]\n\n\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Form Flat','','publish','closed','closed','','contact-form-outline','','','2016-08-29 14:03:10','2016-08-29 14:03:10','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&p=8979',0,'wpcf7_contact_form','',0),(150,1,'2016-08-25 13:56:17','2016-08-25 13:56:17','<div class=\"form-flat\">\r\n [email* your-email placeholder \"Your Email (required)\"]\r\n\r\n [submit class:button primary \"Sign Up\"]\r\n</div>\nNew signup!\nFlatsome Theme <mail@flatsome.dev>\nNew signup: [your-email]\n[your-email]\n\n\n\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Newsletter Vertical','','publish','closed','closed','','newsletter-horizontal','','','2016-08-25 13:56:17','2016-08-25 13:56:17','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&p=8787',0,'wpcf7_contact_form','',0),(151,1,'2016-04-04 11:38:11','2016-04-04 11:38:11','<div class=\"flex-row form-flat medium-flex-wrap\">\r\n<div class=\"flex-col flex-grow\">\r\n [email* your-email placeholder \"Your Email (required)\"]\r\n</div>\r\n<div class=\"flex-col ml-half\">\r\n [submit class:button primary \"Sign Up\"]\r\n</div>\r\n</div>\nFlatsome \"[your-subject]\"\n[your-name] <wordpress@flatsome.dev>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\nemail@mail.com\n\n\n\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Newsletter Horizontal','','publish','closed','closed','','contact-form','','','2016-04-04 11:38:11','2016-04-04 11:38:11','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&p=7042',0,'wpcf7_contact_form','',0),(152,1,'2016-04-04 11:33:38','2016-04-04 11:33:38','<label>Your Name (required)</label>\r\n[text* your-name]\r\n\r\n<label>Your Email (required)</label>\r\n[email* your-email] </p>\r\n\r\n<label>Your Message (required)</label>\r\n[textarea your-message] </p>\r\n\r\n[submit class:button primary \"Submit\"]\nNew Message!\nmail@flatsome.dev\nMessage:\r\n[your-message]\nemail@mail.com\n\n\n1\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form','','publish','closed','closed','','contact-form-1-2','','','2016-04-04 11:33:38','2016-04-04 11:33:38','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&p=7041',0,'wpcf7_contact_form','',0),(153,1,'2016-08-09 13:43:25','2016-08-09 13:43:25','','Dummy Image 1','','inherit','open','closed','','dummy-image-1','','','2016-08-09 13:43:25','2016-08-09 13:43:25','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2016/08/dummy-1.jpg',0,'attachment','image/jpeg',0),(154,1,'2016-08-09 13:43:25','2016-08-09 13:43:25','','Dummy Image 2','','inherit','open','closed','','dummy-image-2','','','2016-08-09 13:43:25','2016-08-09 13:43:25','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2016/08/dummy-2.jpg',0,'attachment','image/jpeg',0),(155,1,'2016-08-09 13:43:25','2016-08-09 13:43:25','','Product Dummy Image','','inherit','open','closed','','prod-dummy-image-1','','','2016-08-09 13:43:25','2016-08-09 13:43:25','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2016/08/dummy-prod-1.jpg',0,'attachment','image/jpeg',0),(156,1,'2015-11-19 10:26:13','2015-11-19 10:26:13','<p class=\"lead\">Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</blockquote>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','Welcome to Flatsome','','publish','open','open','','welcome-to-flatsome','','','2015-11-19 10:26:13','2015-11-19 10:26:13','',0,'http://flatsome.dev/?p=1',0,'post','',0),(157,1,'2015-10-13 21:13:41','2015-10-13 21:13:41','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\r\n\r\n[gallery columns=\"4\" link=\"file\" size=\"large\" ids=\"\"]','Just another post with A Gallery','','publish','open','open','','velkommen-til-bloggen-min','','','2015-10-13 21:13:41','2015-10-13 21:13:41','',0,'http://localhost:8888/flatsome-next/?p=5',0,'post','',0),(158,1,'2015-10-13 19:28:03','2015-10-13 19:28:03','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\r\n\r\nTypi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\r\n','A Simple Blog Post','','publish','open','open','','a-simple-blog-post','','','2015-10-13 19:28:03','2015-10-13 19:28:03','',0,'http://localhost:8888/flatsome-next/?p=1',0,'post','',0),(159,1,'2014-01-01 16:47:44','2014-01-01 16:47:44','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus.\r\n\r\nNeque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.','A Video Blog Post','','publish','open','open','','a-video-blog-post','','','2014-01-01 16:47:44','2014-01-01 16:47:44','',0,'http://localhost:8888/test/?p=483',0,'post','',0),(160,1,'2013-12-30 16:50:40','2013-12-30 16:50:40','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\r\n\r\n[gallery link=\"file\" columns=\"4\" ids=\"\"]\r\n\r\nNam at nisi risus. Proin pretium, dolor vel venenatis suscipit, dui nunc tincidunt lectus, ac placerat felis dui in justo. Aliquam orci velit, facilisis in facilisis non, scelerisque in massa. Integer scelerisque odio nec eros sodales laoreet. Sed sed odio tellus. In tristique felis ac facilisis tempor. Nunc non enim in dolor congue pulvinar sed sed nisi. Mauris viverra convallis feugiat. Nam at mauris laoreet, dictum leo at, tristique mi. Aenean pellentesque justo vel diam elementum iaculis. Nam lobortis cursus vestibulum. Nulla feugiat mauris felis, auctor pretium dui euismod in.\r\n\r\nVestibulum et enim vitae lectus malesuada aliquam vitae non mi. Suspendisse tellus eros, ultricies nec lorem feugiat, pharetra auctor dui. Suspendisse placerat neque leo, nec commodo eros ultrices vel. Fusce elit libero, aliquam quis libero non, consectetur accumsan est. Proin tempus mauris id cursus posuere. Sed et rutrum felis, vel aliquet ante. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque neque tellus, condimentum non eros non, consectetur auctor lacus. Curabitur malesuada odio eget elit egestas porttitor.','Just a cool blog post with Images','','publish','open','open','','just-a-cool-blog-post-with-images','','','2013-12-30 16:50:40','2013-12-30 16:50:40','',0,'http://localhost:8888/test/?p=485',0,'post','',0),(161,1,'2013-12-16 20:32:19','2013-12-16 20:32:19','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\n\n[gallery link=\"file\" columns=\"4\" ids=\"\"]\n\nNam at nisi risus. Proin pretium, dolor vel venenatis suscipit, dui nunc tincidunt lectus, ac placerat felis dui in justo. Aliquam orci velit, facilisis in facilisis non, scelerisque in massa. Integer scelerisque odio nec eros sodales laoreet. Sed sed odio tellus. In tristique felis ac facilisis tempor. Nunc non enim in dolor congue pulvinar sed sed nisi. Mauris viverra convallis feugiat. Nam at mauris laoreet, dictum leo at, tristique mi. Aenean pellentesque justo vel diam elementum iaculis. Nam lobortis cursus vestibulum. Nulla feugiat mauris felis, auctor pretium dui euismod in.\n\nVestibulum et enim vitae lectus malesuada aliquam vitae non mi. Suspendisse tellus eros, ultricies nec lorem feugiat, pharetra auctor dui. Suspendisse placerat neque leo, nec commodo eros ultrices vel. Fusce elit libero, aliquam quis libero non, consectetur accumsan est. Proin tempus mauris id cursus posuere. Sed et rutrum felis, vel aliquet ante. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque neque tellus, condimentum non eros non, consectetur auctor lacus. Curabitur malesuada odio eget elit egestas porttitor.','Another post with A Gallery','','publish','open','open','','just-a-cool-blog-post-with-a-gallery-2','','','2013-12-16 20:32:19','2013-12-16 20:32:19','',0,'http://localhost:8888/test/?p=2009',0,'post','',0),(162,1,'2013-08-29 14:15:41','2013-08-29 14:15:41','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. \r\n \r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.','New Client Landed','','publish','open','open','','new-client-landed','','','2013-08-29 14:15:41','2013-08-29 14:15:41','',0,'http://flatsome.dev/?p=8984',0,'post','',0),(163,1,'2013-08-11 16:35:51','2013-08-11 16:35:51','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam sed eleifend risus, sit amet porttitor massa. Ut vulputate felis at mauris ultrices sodales. Phasellus in leo ornare, vulputate purus eget, iaculis tellus. Donec sed laoreet orci. Praesent faucibus feugiat velit a iaculis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Morbi turpis mauris, consequat laoreet metus non, dictum fringilla sem. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla ornare malesuada ultricies. Nulla luctus velit diam, at lacinia odio aliquam nec. In adipiscing, arcu elementum dictum eleifend, mi velit sodales nisi, a semper tellus magna sed justo. Ut mauris velit, tristique id nulla eget, euismod consequat lacus. Vestibulum varius dapibus lacus et vestibulum.\r\n<blockquote>Ut eu imperdiet arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras interdum porttitor quam at tempus. Sed quis rutrum lorem.</blockquote>\r\nUt eu imperdiet arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras interdum porttitor quam at tempus. Sed quis rutrum lorem. Mauris vitae dui ut neque pulvinar mattis. Mauris sed tincidunt nisi. Ut porta quis lorem at consectetur. Mauris elementum vulputate metus, ut cursus felis dictum non. Sed in nulla metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Phasellus at nunc eget ligula tristique scelerisque in et urna.\r\n\r\nPellentesque imperdiet, nunc id scelerisque scelerisque, nisi arcu hendrerit leo, vel volutpat arcu mi in risus. Vestibulum iaculis molestie venenatis. Donec faucibus elit quis enim porta, id fringilla lectus feugiat. Sed et diam fermentum, elementum elit et, placerat nisi. Sed vehicula nibh sed tellus elementum condimentum. Fusce laoreet lorem ipsum, vitae aliquam arcu gravida gravida. Nunc eget tristique sem, eu ornare ligula.\r\n\r\nPellentesque facilisis lobortis volutpat. Etiam non suscipit velit, vitae ornare eros. In hac habitasse platea dictumst. Phasellus eu auctor metus, et porta justo. Vivamus suscipit fermentum ante, eu dignissim orci. Proin faucibus quis orci a dictum. Nulla ac nibh neque. Curabitur eu justo massa.','An Amazing responsive and Retina ready theme.','','publish','open','open','','welcome-to-flatsome-an-amazing-responsive-and-retina-ready-theme','','','2013-08-11 16:35:51','2013-08-11 16:35:51','',0,'http://localhost:8888/test/?p=474',0,'post','',0),(164,1,'2016-09-19 08:54:13','2016-09-19 08:54:13','<p>test</p>\r\n[ux_banner height=\"100%\" bg_overlay=\"rgba(0, 0, 0, 0.2)\"]\r\n\r\n[text_box style=\"circle\" width=\"40\" width__sm=\"60\" padding=\"30px 30px 30px 30px\" rotate=\"17\" position_x=\"90\" bg=\"rgba(0, 0, 0, 0.86)\" depth=\"3\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Main Headline</strong></h2>\r\n<h3>Smaller Headline</h3>\r\n<p>Lorem ipsum dolor sit amet, conse.</p>\r\n[button text=\"Secondary\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','test','','publish','closed','closed','','test','','','2016-09-19 08:54:13','2016-09-19 08:54:13','',0,'http://flatsome.dev/?page_id=9969',0,'page','',0),(165,1,'2016-09-05 20:12:31','2016-09-05 20:12:31','','Left Sidebar','','publish','closed','closed','','left-sidebar','','','2020-10-24 13:16:18','2020-10-24 13:16:18','',188,'http://flatsome.dev/?page_id=9847',0,'page','',0),(166,1,'2016-08-31 09:25:18','2016-08-31 09:25:18','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[title style=\"center\" text=\"Flip book element\"]\n\n[ux_product_flip]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Create a Flip Book for any product category. You can also select custom posts.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Flip Book','','publish','closed','closed','','flip-book','','','2020-10-24 13:16:19','2020-10-24 13:16:19','',230,'http://flatsome.dev/?page_id=9165',99,'page','',0),(167,1,'2016-08-09 14:23:35','2016-08-09 14:23:35','[ux_slider infinitive=\"false\" parallax=\"2\" hide_nav=\"true\" nav_size=\"normal\" nav_style=\"simple\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"30% 57%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Welcome to our Fashion shop</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"62% 18%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"74% 14%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Slider Cover','','publish','closed','closed','','slider-cover','','','2020-10-24 13:16:19','2020-10-24 13:16:19','',207,'http://flatsome.dev/?page_id=8550',12,'page','',0),(168,1,'2016-08-09 14:21:14','2016-08-09 14:21:14','[ux_banner height=\"100%\" bg=\"154\"]\r\n\r\n[text_box]\r\n\r\n[ux_image id=\"153\" width=\"24\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Flatsome 3.0</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.2)\" month=\"12\" day=\"24\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','Maintenance','','publish','closed','closed','','maintenance','','','2020-10-24 13:16:20','2020-10-24 13:16:20','',188,'http://flatsome.dev/?page_id=8545',0,'page','',0),(169,1,'2016-08-09 14:09:04','2016-08-09 14:09:04','[ux_banner height=\"100%\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" video_mp4=\"/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[text_box width=\"53\" width__sm=\"87\" scale__sm=\"125\" margin=\"30px 0px 30px 0px\"]\n\n<h3 class=\"alt-font\">A Fancy top Title</h3>\n<h1 class=\"uppercase\"><strong>Welcome to COOL Our Shop</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Shop now\" color=\"white\" link=\"shop\"]\n\n\n[/text_box]\n\n[/ux_banner]','Video Cover','','publish','closed','closed','','video-cover','','','2020-10-24 13:16:20','2020-10-24 13:16:20','',207,'http://flatsome.dev/?page_id=8538',15,'page','',0),(170,1,'2016-08-04 11:15:19','2016-08-04 11:15:19','[ux_banner height=\"300px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"60\"]\n\n<h3 class=\"uppercase\"><strong>Our Stores</strong></h3>\n[divider]\n\n[share]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\">About our stores. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[tabgroup type=\"vertical\"]\n\n[tab title=\"New York\"]\n\n[map lat=\"40.7902\" saturation=\"-58\"]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"London\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Oslo\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Stockholm\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Add as many as you want\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Our Stores','','publish','closed','closed','','our-stores','','','2020-10-24 13:16:21','2020-10-24 13:16:21','',188,'http://flatsome.dev/?page_id=8412',0,'page','',0),(171,1,'2016-07-05 14:49:02','2016-07-05 14:49:02','[section bg=\"154\" bg_color=\"rgb(246, 246, 246)\" parallax=\"3\" padding=\"19px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"large\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" scale=\"99\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"7\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_pos=\"58% 24%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"76\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"67\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"37\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n[gap height=\"18px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" badge_style=\"square\" image_height=\"200px\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]','Grid Style 3','','publish','closed','closed','','grid-style-3','','','2020-10-24 13:16:21','2020-10-24 13:16:21','',207,'http://flatsome.dev/?page_id=8220',8,'page','',0),(172,1,'2016-07-04 20:02:46','2016-07-04 20:02:46','[ux_slider slide_width=\"100%\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"70% 17%\"]\r\n\r\n[text_box width=\"56\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x=\"5\" position_x__sm=\"10\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h1><span style=\"font-size: 80%;\"><strong>WordPress & WooCommerce Expert</strong></span></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n[button text=\"My Work\" color=\"white\" style=\"outline\" radius=\"99\" link=\"Portfolio\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"63\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y=\"25\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>A small but focused Web Studio</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Learn more\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"About\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"80\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>Services</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[button text=\"Contact Now\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Contact\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Freelancer','','publish','closed','closed','','freelancer','','','2020-10-24 13:16:22','2020-10-24 13:16:22','',206,'http://flatsome.dev/?page_id=8194',2,'page','',0),(173,1,'2016-07-04 10:31:29','2016-07-04 10:31:29','[ux_slider]\r\n\r\n[ux_banner height=\"600px\" bg_overlay=\"rgba(246, 208, 45, 0.94)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"95\" position_x__sm=\"95\" position_y=\"5\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"57\" width__sm=\"84\" scale__sm=\"111\" animate=\"flipInY\"]\r\n\r\n<h1 class=\"uppercase\"><span style=\"font-size: 400%;\" data-line-height=\"xs\"><strong>Sale</strong></span></h1>\r\n<h2 class=\"lead\">Summer Sale has Started</h2>\r\n[ux_countdown style=\"text\" size=\"114\" color=\"light\"]\r\n\r\n[gap height=\"23px\"]\r\n\r\n[button text=\"Shop men\" color=\"white\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\"]\r\n\r\n[button text=\"Shop All\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"154\" bg_pos=\"84% 0%\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"100\" position_x__sm=\"95\" position_y=\"15\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"50\"]\r\n\r\n<h2 class=\"uppercase\">Shop Fashion Clothes today</h2>\r\n<h3 class=\"thin-font\">Add any text here..</h3>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row depth=\"1\" depth_hover=\"5\"]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"50% 12%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>About us</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"60% 18%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>OUR BLOG</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"51% 35%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>NEWSLETTER</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Latest products on sale\" size=\"undefined\"]\r\n\r\n[ux_products depth=\"1\" depth_hover=\"4\" orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Browse our Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories depth=\"1\" depth_hover=\"4\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" icon=\"instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" depth=\"1\"]\r\n\r\n[gap height=\"58px\"]\r\n\r\n[ux_banner height=\"407px\" bg=\"154\" bg_color=\"rgb(18, 18, 18)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\" bg_pos=\"79% 0%\" parallax=\"1\" border=\"2px 0px 2px 0px\" border_margin=\"10px 0px 10px 0px\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(255, 255, 255, 0.22)\"]\r\n\r\n[text_box width=\"47\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Don\'t miss a sale</strong></h2>\r\n<h3 class=\"thin-font\">Sign up for our Newsletter</h3>\r\n[gap height=\"32px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" depth=\"1\" depth_hover=\"4\" image_height=\"181px\"]','Big Sale','','publish','closed','closed','','big-sale','','','2020-10-24 13:16:22','2020-10-24 13:16:22','',207,'http://flatsome.dev/?page_id=8111',4,'page','',0),(174,1,'2016-06-29 08:39:48','2016-06-29 08:39:48','[title text=\"Add responsive Video Embeds\" size=\"undefined\"]\n\n<p class=\"lead\">Add Responsive video embed to your site by using the Page Builder.</p>\n<h3>YOUTUBE</h3>\n[ux_video height=\"46%\"]\n\n<h3>VIMEO</h3>\n[ux_video url=\"https://vimeo.com/180255453\" height=\"54%\"]','Video','','publish','closed','closed','','video','','','2020-10-24 13:16:23','2020-10-24 13:16:23','',230,'http://flatsome.dev/?page_id=7921',10,'page','',0),(175,1,'2016-06-15 22:08:43','2016-06-15 22:08:43','[ux_banner height=\"450px\" bg=\"154\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button size=\"118\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.52)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"154\"]\n\n[text_box position_x=\"10\" position_y=\"10\" text_align=\"left\" text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Change Size</strong></h3>\n<p class=\"lead\">You can change the size to anything</p>\n[video_button size=\"202\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.45)\" hover=\"overlay-add\"]\n\n[text_box hover=\"zoom-in\"]\n\n<h3 class=\"uppercase\"><strong>Show on Hover</strong></h3>\n<p class=\"lead\">Select between various hover effects</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]','Video Button','','publish','closed','closed','','video-button','','','2020-10-24 13:16:23','2020-10-24 13:16:23','',230,'http://flatsome.dev/?page_id=7858',12,'page','',0),(176,1,'2016-06-02 12:48:15','2016-06-02 12:48:15','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.71)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>GALLERY ELEMENT</strong></h3>\r\n<p class=\"lead\">Create Galleries by using Image IDs and drag and drop. You can easily create galleries from the Page Builder.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple GAllery Row with lightbox\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Full Width Gallery\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" width=\"full-width\" col_spacing=\"collapse\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Gallery width Small gap\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"xsmall\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Slider Gallery\" margin_top=\"21px\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" type=\"slider\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"undefined\" slider_nav_position=\"undefined\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"undefined\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"undefined\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_hover=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\" text_padding=\"undefined\"]','Galleries','','publish','closed','closed','','galleries','','','2020-10-24 13:16:25','2020-10-24 13:16:25','',230,'http://flatsome.dev/?page_id=7640',11,'page','',0),(177,1,'2016-05-31 07:16:46','2016-05-31 07:16:46','[ux_slider nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"154\" bg_color=\"rgb(27, 15, 15)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" icon=\"search\" size=\"large\" position_x=\"15\" position_y=\"25\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_x=\"10\" position_y=\"85\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"90\"]\n\n<h2 class=\"uppercase\">Banner with hotspots</h2>\n<p class=\"thin-font lead\">Add Hotspots anywhere by using the drag and drop Page Builder.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"154\" bg_color=\"rgba(0, 0, 0, 0.25)\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" size=\"large\" position_x=\"80\" position_y=\"30\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_y=\"35\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"10\"]\n\n<h2 class=\"uppercase\">Create Lookbooks </h2>\n<p class=\"thin-font lead\">Create beautiful lookbooks by combining the banner, hotspot and slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Hotspot','','publish','closed','closed','','hotspot','','','2020-10-24 13:16:25','2020-10-24 13:16:25','',230,'http://flatsome.dev/?page_id=7562',99,'page','',0),(178,1,'2016-04-26 12:34:20','2016-04-26 12:34:20','[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.62)\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"8\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything. Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>Woo Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(246, 246, 246)\" border=\"1px 0px 0px 0px\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Shop By Category\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"normal\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"5\" depth=\"1\" image_height=\"230px\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title style=\"center\" text=\"Latest Collections\" size=\"undefined\"]\r\n\r\n[ux_products style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"1\" orderby=\"date\" image_width=\"42\" text_size=\"large\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"318px\" bg=\"154\" bg_color=\"rgb(80, 80, 80)\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" bg_pos=\"22% 29%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Become a Vendor</strong></h3>\r\n<p class=\"lead\">Want to sell on Flatsome Vendor? We\'re looking for shop to join us.</p>\r\n[button text=\"Learn More\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Apply Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(244, 244, 244)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"bold-center\" text=\"How it Works\" size=\"undefined\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Apply to be a Vendor</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Upload your products</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Sell and make money</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[gap height=\"36px\"]\r\n\r\n[title style=\"bold-center\" text=\"Latest Reviews\" size=\"undefined\"]\r\n\r\n[ux_slider nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/ux_slider]\r\n[title style=\"bold-center\" text=\"From The Blog\" size=\"undefined\"]\r\n\r\n[blog_posts slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" depth=\"1\" image_height=\"180px\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Vendor Shop','','publish','closed','closed','','vendor-shop','','','2020-10-24 13:16:26','2020-10-24 13:16:26','',207,'http://flatsome.dev/?page_id=7316',14,'page','',0),(179,1,'2016-04-18 13:07:29','2016-04-18 13:07:29','[message_box bg_color=\"rgb(69, 69, 69)\" padding=\"7\"]\r\n\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\r\n\r\n<p><strong>BIG SUMMER SALE HAS STARTED. UP TO 70% OFF </strong>Make sure you</p>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\r\n\r\n[ux_countdown style=\"text\" size=\"94\" color=\"light\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]\r\n[ux_slider]\r\n\r\n[ux_banner height=\"706px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"40% 54%\"]\r\n\r\n[text_box width=\"69\" width__sm=\"80\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 200%;\">It has finally started</span></p>\r\n<h1><span style=\"font-size: 130%;\"><strong>BIG SUMMER SALE</strong></span></h1>\r\n[ux_countdown size=\"307\" color=\"light\" bg_color=\"rgba(255, 255, 255, 0.86)\"]\r\n\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop all\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"8\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h1 class=\"uppercase\">Welcome to our Shop</h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"8\" grid_height=\"300px\" depth=\"1\" depth_hover=\"4\" number=\"7\" text_pos=\"middle\" text_size=\"large\"]\r\n\r\n[gap height=\"54px\"]\r\n\r\n[ux_banner height=\"387px\" bg=\"154\" bg_pos=\"49% 7%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"76\" position_x=\"5\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h2 class=\"uppercase\"><strong>never miss a sale again</strong></h2>\r\n<p class=\"lead\">Sign up for our Newsletter</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts depth=\"1\" depth_hover=\"4\" image_height=\"68%\"]','Sale Countdown','','publish','closed','closed','','sale-countdown','','','2020-10-24 13:16:26','2020-10-24 13:16:26','',207,'http://flatsome.dev/?page_id=7224',10,'page','',0),(180,1,'2016-04-04 10:53:41','2016-04-04 10:53:41','[ux_banner height=\"100%\" bg=\"154\" bg_color=\"#FFF\"]\r\n\r\n[text_box text_color=\"dark\" width=\"61\" width__sm=\"85\" animate=\"fadeInUp\"]\r\n\r\n<h2><span style=\"font-size: 170%;\"><strong>Go Explore</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[divider]\r\n\r\n[search]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section label=\"Simple Light\" bg_color=\"rgb(245, 245, 245)\" padding=\"27px\" border=\"1px 0px 0px 0px\" border_color=\"rgb(235, 235, 235)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box margin=\"px px px px\"]\r\n\r\n<h3>Explore Things</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Book Events</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Find a hotel</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Thing to do\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" cat=\"114\"]\r\n\r\n[title style=\"center\" text=\"Go Explore\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"70\" width__sm=\"100\" scale=\"187\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Find a Beach</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Explore THe CITY</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>EXPLORE OUTDOORS</strong></h3>\r\n<p> </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>TAILORED SUITES</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"97\"]\r\n\r\n<h3 class=\"uppercase\"><strong>ENJOY A DRINK</strong></h3>\r\n<p> </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[gap]\r\n\r\n[ux_banner height=\"400px\" bg=\"154\" bg_overlay=\"rgba(255, 255, 255, 0.49)\" bg_pos=\"26% 17%\"]\r\n\r\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>List your Company</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Apply Now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Latest From Blog\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" show_date=\"text\" excerpt=\"false\" comments=\"false\" image_height=\"293px\" image_hover=\"zoom\" text_align=\"left\"]\r\n\r\n[title style=\"center\" text=\"Follow on Instagram\" icon=\"icon-instagram\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed type=\"slider\" width=\"full-width\" columns=\"6\"]','Explore','','publish','closed','closed','','explore','','','2020-10-24 13:16:28','2020-10-24 13:16:28','',206,'http://flatsome.dev/?page_id=7037',4,'page','',0),(181,1,'2016-03-31 15:07:47','2016-03-31 15:07:47','[ux_banner height=\"261px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"54% 100%\" parallax=\"3\"]\n\n[text_box parallax=\"-4\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Create Powerful Forms</strong></h3>\n<p class=\"lead\">Create Powerful forms with the integrated Contact Form 7 Plugin.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\" mask=\"arrow\" padding=\"45px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Simple Contact Form\" size=\"undefined\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Simple Center\" bg_color=\"rgb(0, 0, 0)\" dark=\"true\" mask=\"arrow\" padding=\"60px\" height=\"300px\" border_color=\"rgb(235, 235, 235)\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Contact Form Flat\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Forms','','publish','closed','closed','','forms','','','2020-10-24 13:16:28','2020-10-24 13:16:28','',230,'http://flatsome.dev/?page_id=7025',99,'page','',0),(182,1,'2016-03-31 14:53:43','2016-03-31 14:53:43','[ux_banner height=\"377px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"60% 22%\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>PRICE TABLE ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap]\r\n\r\n[title text=\"3 Column price table with text on left\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\" padding=\"0 20px 0 0\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\" color=\"dark\" bg_color=\"rgb(122, 44, 205)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" color=\"dark\" bg_color=\"rgba(0, 0, 0, 0.99)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\" color=\"dark\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" enabled=\"false\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Disabled\" enabled=\"false\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"underline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"#f1f1f1\" bg_color=\"rgb(243, 243, 243)\" margin=\"-1px\"]\r\n\r\n[title text=\"3 Column price table inside a background\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\" radius=\"10\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"shade\" size=\"larger\" radius=\"10\" depth=\"4\" depth_hover=\"5\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" padding=\"0 0 0 20px\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row style=\"collapse\"]\r\n\r\n[col]\r\n\r\n[title style=\"center\" text=\"4 Column collapsed\"]\r\n\r\n[gap]\r\n\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section bg=\"154\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(255, 255, 255, 0.5)\" parallax=\"3\" padding=\"49px\"]\r\n\r\n[row style=\"small\" depth=\"2\"]\r\n\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Price table','','publish','closed','closed','','price-table','','','2020-10-24 13:16:28','2020-10-24 13:16:28','',230,'http://flatsome.dev/?page_id=7020',99,'page','',0),(183,1,'2016-03-31 14:45:02','2016-03-31 14:45:02','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.44)\" bg_pos=\"32% 28%\" parallax=\"3\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>SEARCH ELEMENT</strong></h3>\n<p class=\"lead\">Insert a Product Search box anywhere</p>\n[search style=\"flat\" size=\"xlarge\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Default style\"]\n\n[search]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Flat style\"]\n\n[search style=\"flat\"]\n\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"154\" bg_pos=\"58% 16%\"]\n\n[text_box width=\"37\" position_x=\"0\" text_align=\"left\"]\n\n<h3 class=\"uppercase\"><strong>Search box inside a banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[gap height=\"25px\"]\n\n[search size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]','Search box','','publish','closed','closed','','search-box','','','2020-10-24 13:16:29','2020-10-24 13:16:29','',230,'http://flatsome.dev/?page_id=7017',99,'page','',0),(184,1,'2016-03-31 14:42:25','2016-03-31 14:42:25','[ux_banner height=\"405px\" bg=\"154\" bg_overlay=\"rgba(255, 255, 255, 0.94)\" bg_pos=\"53% 30%\"]\r\n\r\n[text_box text_color=\"dark\"]\r\n\r\n[ux_image id=\"153\" width=\"23\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Instagram element</strong></h3>\r\n<p class=\"lead\">Add beautiful instagram images anywhere on your site</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple Grid\" icon=\"icon-instagram\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]\r\n\r\n[title style=\"center\" text=\"Simple slider\" icon=\"icon-instagram\" margin_top=\"32px\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" slider_nav_position=\"outside\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider Black and white\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" image_hover=\"color\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]','Instagram feed','','publish','closed','closed','','instagram-feed','','','2020-10-24 13:16:31','2020-10-24 13:16:31','',230,'http://flatsome.dev/?page_id=7014',99,'page','',0),(185,1,'2016-03-31 14:37:54','2016-03-31 14:37:54','[ux_banner height=\"338px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.41)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Accordion element</strong></h3>\r\n<p class=\"lead\">Create beautiful accordion sections. You can add any element to the accordion panels.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple accordion\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[accordion]\r\n\r\n[accordion-item title=\"Accordion Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 1 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 2 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add any element to accordion\"]\r\n\r\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\"]\r\n\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n\r\n[/row]','Accordion','','publish','closed','closed','','accordion','','','2020-10-24 13:16:31','2020-10-24 13:16:31','',230,'http://flatsome.dev/?page_id=7011',99,'page','',0),(186,1,'2016-03-31 14:32:39','2016-03-31 14:32:39','[ux_banner height=\"375px\" bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\"]\r\n\r\n[text_box width=\"51\"]\r\n\r\n<h3 class=\"uppercase\"><strong>LOGO ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Normal logos\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\"]\r\n\r\n[logo img=\"153\"]\r\n\r\n[logo img=\"153\"]\r\n\r\n[logo img=\"153\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Dashed Grid\" margin_top=\"19px\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Slider\" margin_top=\"57px\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Full width slider\" margin_top=\"57px\"]\r\n\r\n[ux_slider bg_color=\"rgb(247, 247, 247)\" infinitive=\"false\" freescroll=\"true\" hide_nav=\"true\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]','Logo','','publish','closed','closed','','logo','','','2020-10-24 13:16:31','2020-10-24 13:16:31','',230,'http://flatsome.dev/?page_id=7008',99,'page','',0),(187,1,'2016-03-31 14:08:59','2016-03-31 14:08:59','[ux_banner height=\"364px\" bg=\"154\" bg_overlay=\"rgba(255, 255, 255, 0.87)\" bg_pos=\"80% 19%\" parallax=\"2\"]\n\n[text_box text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Portfolio Element</strong></h3>\n<p>Showcase work or other elements</p>\n[divider width=\"67px\" height=\"5px\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple with Filtering\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"slide\"]\n\n[title style=\"center\" text=\"Ouline Filter style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"blur\" text_pos=\"middle\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can choose between many differnt filter navigation style and align them to left or right.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Slider Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"shade\" filter_nav=\"outline\" orderby=\"name\" grid=\"3\" columns=\"5\" image_hover=\"zoom\" image_hover_alt=\"grayscale\"]\n\n[title style=\"center\" text=\"Grid Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" offset=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[title style=\"center\" text=\"Collapsed Full width Grid\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" width=\"full-width\" col_spacing=\"collapse\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Choose between 14 differnt premade grid layouts.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Open in a ligtbox\"]\n\n[ux_portfolio lightbox=\"true\"]','Portfolio','','publish','closed','closed','','portfolio','','','2020-10-24 13:16:39','2020-10-24 13:16:39','',188,'http://flatsome.dev/?page_id=7002',19,'page','',0),(188,1,'2016-03-31 14:08:39','2016-03-31 14:08:39','[ux_banner height=\"496px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"52% 2%\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Pages Element</strong></h3>\r\n<p class=\"lead\">Display a list of sub pages of a selected page in a beautiful way. Very useful if you need to link to sub pages from a parent page.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Default Style\"]\r\n\r\n[ux_pages parent=\"3021\" depth=\"1\" text_align=\"center\" text_padding=\"10px 10px 10px 10px\"]','Pages','','publish','closed','closed','','pages','','','2020-10-24 13:16:33','2020-10-24 13:16:33','',230,'http://flatsome.dev/?page_id=6999',18,'page','',0),(189,1,'2016-03-31 13:59:10','2016-03-31 13:59:10','[scroll_to title=\"Welcome Banner\" link=\"welcome\"]\n\n[ux_banner height=\"100%\" bg=\"154\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60\" position_y=\"20\"]\n\n<h1 class=\"lead\"><strong>Scroll To</strong> Element</h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another banner\" link=\"another_banner\"]\n\n[ux_banner height=\"100%\" bg=\"154\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"50\" width__sm=\"60\" animate=\"fadeInRight\" position_x=\"0\" position_y=\"40\" text_align=\"left\"]\n\n<h1 class=\"lead\"><strong>Another Banner</strong></h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another Scroll To banner\" link=\"another_banner_2\"]\n\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width=\"52\" width__sm=\"60\" animate=\"fadeInUp\" parallax=\"3\"]\n\n<h2><span style=\"font-size: 200%;\">Another Banner</span></h2>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Signup for Newsletter\" link=\"newsletter\"]\n\n[ux_banner height=\"100%\" bg=\"154\" bg_color=\"rgb(43, 7, 7)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\"]\n\n[text_box width=\"74\" width__sm=\"84\" scale=\"120\" scale__sm=\"101\" parallax=\"2\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n(insert contact form here)\n\n\n[/text_box]\n\n[/ux_banner]','Scroll To','','publish','closed','closed','','scroll-to','','','2020-10-24 13:16:33','2020-10-24 13:16:33','',230,'http://flatsome.dev/?page_id=6996',17,'page','',0),(190,1,'2016-03-31 13:48:41','2016-03-31 13:48:41','[ux_banner height=\"444px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.27)\"]\n\n[text_box]\n\n<h1 class=\"uppercase\"><strong>COUNT DOWN ELEMENT</strong></h1>\n<p class=\"lead\">Add beautiful count downs anywhere on the site.</p>\n[ux_countdown size=\"300\" bg_color=\"rgba(0, 0, 0, 0.09)\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Primary Color\"]\n\n[ux_countdown size=\"198\" color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Dark Color\"]\n\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Light Color\"]\n\n[ux_countdown size=\"200%\" color=\"light\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[ux_banner height=\"600px\" bg=\"154\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\" animate=\"fadeIn\" position_x=\"10\"]\n\n<h3 class=\"uppercase\">A Countdown Inside A Banner</h3>\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap]\n\n\n[/col]\n[col span=\"6\" align=\"center\"]\n\n[title style=\"center\" text=\"Countdown as text\"]\n\n[ux_countdown style=\"text\" size=\"91\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"6\"]\n\n[title style=\"center\" text=\"Countdown as Clock\"]\n\n[ux_countdown color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]','Countdown','','publish','closed','closed','','countdown','','','2020-10-24 13:16:33','2020-10-24 13:16:33','',230,'http://flatsome.dev/?page_id=6990',28,'page','',0),(191,1,'2016-02-18 15:10:52','2016-02-18 15:10:52','[ux_slider]\n\n[ux_banner height=\"637px\" bg=\"154\" bg_size=\"original\" bg_pos=\"62% 60%\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"154\" bg_pos=\"62% 68%\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"153\" pos=\"center\" title=\"Company Feature 1\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"153\" pos=\"center\" title=\"Company Feature 2\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"153\" pos=\"center\" title=\"Company Feature 3\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"circle\" columns=\"2\" depth=\"1\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\" icon_pos=\"left\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]','Corporate','','publish','closed','closed','','simple-corporate','','','2020-10-24 13:16:34','2020-10-24 13:16:34','',206,'http://flatsome.dev/?page_id=4041',1,'page','',0),(192,1,'2016-02-17 13:38:32','2016-02-17 13:38:32','[ux_slider bg_color=\"rgb(0, 0, 0)\"]\r\n\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"154\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInUp\" parallax=\"2\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Nothing is Impossible</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"154\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"2\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"154\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"3\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[section bg_color=\"rgb(27, 27, 27)\" dark=\"true\" padding=\"60px\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>New products added everyday</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Featured Products\" size=\"undefined\"]\r\n\r\n[ux_products slider_nav_style=\"circle\"]\r\n\r\n[title style=\"center\" text=\"Browse\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" image_height=\"113%\" image_overlay=\"rgba(0, 0, 0, 0.16)\" text_pos=\"middle\"]\r\n\r\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" badge_style=\"square\" image_height=\"300px\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"420px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_instagram_feed username=\"surfer_magazine\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Sport Shop','','publish','closed','closed','','sport-shop','','','2020-10-24 13:16:34','2020-10-24 13:16:34','',207,'http://flatsome.dev/?page_id=4025',13,'page','',0),(193,1,'2016-02-17 10:15:15','2016-02-17 10:15:15','[section bg_color=\"rgb(237, 239, 241)\" effect=\"snow\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[ux_banner_grid height=\"617\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"154\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\" position_y=\"80\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"154\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\" position_y=\"10\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"42\" position_x=\"10\" position_y=\"80\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n[ux_countdown size=\"268\" bg_color=\"rgba(0, 0, 0, 0.1)\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row col_style=\"divided\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Free Shipping on orders above 99$</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Give a Gift to a Friend</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed dia.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Loved by our Customers</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Shop Now\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" depth=\"1\" show_count=\"0\" image_overlay=\"rgba(0, 0, 0, 0.08)\" image_hover=\"zoom\" text_pos=\"middle\" text_size=\"small\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Weekly Featured Products\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"normal\" columns=\"5\" depth=\"1\" show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Cute Shop','','publish','closed','closed','','cute-shop','','','2020-10-24 13:16:35','2020-10-24 13:16:35','',207,'http://flatsome.dev/?page_id=4008',2,'page','',0),(194,1,'2016-02-15 20:47:32','2016-02-15 20:47:32','[ux_banner height=\"562px\" height__sm=\"368px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"81\"]\n\n<h2 class=\"uppercase\">Powerful Theme needs powerul images</h2>\n<p class=\"lead\">Responsive Images you can insert anywhere. You can also them into a slider.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h1 class=\"lead\">Beautiful Images with Beautiful Captions</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" image_size=\"large\" lightbox=\"true\" caption=\"true\" image_overlay=\"rgba(0, 0, 0, 0.16)\" image_hover=\"zoom-long\" animate=\"fadeInUp\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Image Overlay Styles\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"glow\"]\n\n<p>Glow</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"color\" animate=\"fadeInLeft\"]\n\n<p>Add Color</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"grayscale\" animate=\"fadeInLeft\"]\n\n<p>Grayscale</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"fade-in\" animate=\"fadeInLeft\"]\n\n<p>Fade In</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"zoom-fade\" animate=\"fadeInLeft\"]\n\n<p>Zoom Fade</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-add\" animate=\"fadeInLeft\"]\n\n<p>Add Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-remove\" animate=\"fadeInLeft\"]\n\n<p>Remove Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"blur\" animate=\"fadeInLeft\"]\n\n<p>Blur</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with video\"]\n\n[ux_image id=\"153\" animate=\"fadeInLeft\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n<p class=\"lead\">Add a <strong>Youtube or Vimeo</strong> link to Image link tag to automatically get a play icon and a Video Lightbox on Images.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image drop shadow\"]\n\n[ux_image id=\"153\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n<p class=\"lead\">Add cool drop shadows to your images to make them pop out on hover.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Add Images to any sliders\" size=\"undefined\"]\n\n[ux_slider style=\"container\" slide_width=\"700px\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_image id=\"153\" height=\"75%\" image_hover=\"overlay-remove\" depth_hover=\"2\"]\n\n[ux_image id=\"153\" height=\"75%\" image_hover=\"overlay-remove\" depth=\"3\"]\n\n[ux_image id=\"153\" height=\"75%\" image_hover=\"overlay-remove\"]\n\n[ux_image id=\"153\" height=\"75%\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with reverse parallax\"]\n\n[ux_image id=\"153\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"-1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with PArallax\"]\n\n[ux_image id=\"153\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Images with lightbox\" size=\"undefined\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span__sm=\"12\" align=\"center\"]\n\n[title style=\"center\" text=\"Images with Caption\" size=\"undefined\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"153\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"153\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"153\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]','Images','','publish','closed','closed','','images','','','2020-10-24 13:16:36','2020-10-24 13:16:36','',230,'http://flatsome.dev/?page_id=3983',9,'page','',0),(195,1,'2016-02-15 20:46:37','2016-02-15 20:46:37','[ux_banner height=\"446px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"58% 26%\"]\n\n[text_box width=\"100\" width__sm=\"75\" parallax=\"-1\"]\n\n<h6>Flatsome Grid System</h6>\n<h1>Responsive Rows and Columns</h1>\n<p class=\"lead\">Create Amazing layouts by using Flatsome Row and Column System powered by<strong> Flexbox</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple 4-column row\"]\n\n[row padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(255, 0, 211, 0.96)\" color=\"light\" depth_hover=\"5\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Vertical Centered Row\"]\n\n[row v_align=\"middle\" padding=\"30px\"]\n\n[col span=\"6\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bottom Align Row\"]\n\n[row v_align=\"bottom\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Equal aligned row\"]\n\n[row v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Rows With Drop shadow\"]\n\n[row padding=\"30px\" depth=\"2\" depth_hover=\"3\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<p><strong>You can set Column Depth for All columns or per column.</strong></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Divided row\"]\n\n[row style=\"large\" col_style=\"divided\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Dashed Lined Row\" margin_top=\"23px\" size=\"undefined\"]\n\n[row col_style=\"dashed\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Solid Lined Row\" margin_top=\"25px\" size=\"undefined\"]\n\n[row col_style=\"solid\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Custom Background on a Column\" margin_top=\"28px\" size=\"undefined\"]\n\n[row padding=\"30px\"]\n\n[col span=\"5\" span__sm=\"6\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(38, 65, 116)\" color=\"light\" depth=\"2\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Full Width Row with Backgrounds\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(0, 0, 0)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(153, 120, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(120, 154, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Nested Rows\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"8\" span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(255, 255, 255)\" depth=\"3\" depth_hover=\"5\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(0, 0, 0)\"]\n\n[row style=\"small\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" padding=\"20px\" bg_color=\"rgb(255, 255, 255)\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row col_style=\"solid\"]\n\n[col span=\"4\" span__sm=\"6\" parallax=\"1\"]\n\n<h3>Parallax Column</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\" parallax=\"2\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" parallax=\"3\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row h_align=\"center\"]\n\n[col span=\"7\" span__sm=\"10\" align=\"center\"]\n\n<h3>A Centered Columns Row</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Animated Columns\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n<h3>Fade In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInDown\"]\n\n<h3>Fade In Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInLeft\"]\n\n<h3>Fade In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInRight\"]\n\n<h3>Fade In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceIn\"]\n\n<h3>Bounce In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInUp\"]\n\n<h3>Bounce In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInDown\"]\n\n<h3>Bounce In Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInLeft\"]\n\n<h3>Bounce In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInRight\"]\n\n<h3>Bounce In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\" animate=\"flipInY\"]\n\n<h3>Flip In Y</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"flipInX\"]\n\n<h3>Flip In X</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"blurIn\"]\n\n<h3>Blur In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]','Rows / Columns','','publish','closed','closed','','rows-columns','','','2020-10-24 13:16:36','2020-10-24 13:16:36','',230,'http://flatsome.dev/?page_id=3981',2,'page','',0),(196,1,'2016-02-15 14:01:19','2016-02-15 14:01:19','[ux_banner height=\"400px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.66)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Text Elements</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[title style=\"center\" text=\"Typography\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headline h1</h1>\n<h2 class=\"uppercase\">headline h2</h2>\n<h3 class=\"uppercase\">headline h3</h3>\n<h4 class=\"uppercase\">headline H4</h4>\n<h5 class=\"uppercase\">headline H5</h5>\n<h6 class=\"uppercase\">headline H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULT COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>Bold Text.</strong> sit amet, consectetuer <em>italic text </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span> magna aliquam erat volutpat. <del>Strike throught</del>. ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Default font</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead alt-font\"><b>Alternative Font</b>.</h2>\n<p class=\"lead alt-font\">Dolor sit amet, consectetuer <strong>adipiscing</strong> elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Thin text</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead uppercase\">UPPERCASE</h2>\n<p class=\"lead uppercase\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This is a <span class=\"fancy-underline\">Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h6>Flatsome Tip</h6>\n<h2>You can find many text options in the \"Format\" dropdown in text editor.</h2>\n<p class=\"lead\">You see the changes live if you use the Page Builder</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"3\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgb(34, 34, 34)\" dark=\"true\" padding=\"60px\"]\n\n[title style=\"center\" text=\"Typography on Dark background\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headline h1</h1>\n<h2 class=\"uppercase\">headline h2</h2>\n<h3 class=\"uppercase\">headline h3</h3>\n<h4 class=\"uppercase\">headline H4</h4>\n<h5 class=\"uppercase\">headline H5</h5>\n<h6 class=\"uppercase\">headline H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULT COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>Bold Text.</strong> sit amet, consectetuer <em>italic text </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span> magna aliquam erat volutpat. <del>Strike throught</del>. ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"7\"]\n\n<h2 class=\"lead\">This is a<span class=\"fancy-underline\"> Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"5\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"60px\"]\n\n[title style=\"center\" text=\"Quote\"]\n\n[row]\n\n[col]\n\n<blockquote>\n<p class=\"lead\"><strong>Quote</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n</blockquote>\n<p class=\"lead\">Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa. Horizontal Line:</p>\n[title style=\"center\" text=\"Lists\"]\n\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li>Simple List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ol>\n<li>Numbered List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ol>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-checkmark\">Checkmark list</li>\n<li class=\"bullet-checkmark\">List Item 2</li>\n<li class=\"bullet-checkmark\">List item 3</li>\n<li class=\"bullet-checkmark\">List Item 4</li>\n<li class=\"bullet-checkmark\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-star\">Star list</li>\n<li class=\"bullet-star\">List Item 2</li>\n<li class=\"bullet-star\">List item 3</li>\n<li class=\"bullet-star\">List Item 4</li>\n<li class=\"bullet-star\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-arrow\">Arrow List</li>\n<li class=\"bullet-arrow\">List Item 2</li>\n<li class=\"bullet-arrow\">List item 3</li>\n<li class=\"bullet-arrow\">List Item 4</li>\n<li class=\"bullet-arrow\">List Item 5</li>\n</ul>\n\n[/col]\n\n[/row]\n\n[/section]','Typography','','publish','closed','closed','','typography','','','2020-10-24 13:16:36','2020-10-24 13:16:36','',230,'http://flatsome.dev/?page_id=3971',5,'page','',0),(197,1,'2016-01-13 13:24:12','2016-01-13 13:24:12','[ux_slider]\n\n[ux_banner height=\"700px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.25)\"]\n\n[text_box width=\"51\" animate=\"fadeInLeft\" text_depth=\"1\"]\n\n<h2>Create Amazing Banners with Drag and Drop</h2>\n[divider]\n\n[button text=\"A button\" color=\"success\" depth=\"3\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"700px\" bg=\"154\"]\n\n[text_box width=\"46\" animate=\"fadeInRight\" parallax=\"1\" position_x=\"5\"]\n\n<h2>Lorem ipsum dolor sit amet</h2>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Buy now\" color=\"white\"]\n\n[button text=\"Learn more\" color=\"white\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\"]\n\n[col span=\"7\"]\n\n[ux_banner height=\"600px\" bg=\"154\" bg_pos=\"44% 39%\"]\n\n[text_box width=\"63\" width__sm=\"78\" padding=\"39px\" position_x=\"5\" position_x__sm=\"50\" text_color=\"dark\" bg=\"rgba(255, 255, 255, 0.85)\" depth=\"2\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Simple Link\" style=\"link\" icon=\"icon-play\"]\n\n[button text=\"Simple Button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h2 class=\"lead uppercase\">Drag And Drop Banner System</h2>\n<p class=\"lead\"><span style=\"font-size: 115%;\">Flatsome <strong>Banners</strong> is the heart of Flatsome. Our Banner System let you create beautiful <strong>responsive</strong> banners with drag and drop.</span></p>\n<p class=\"lead\"> </p>\n[ux_image id=\"153\"]\n\n\n[/col]\n[col span=\"14\"]\n\n[ux_banner height=\"56.25%\" height__sm=\"50%\" bg=\"154\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\" position_x=\"90\"]\n\n<h3>Small Title</h3>\n<p class=\"lead\">You can place a text box wherever you want on a Banner</p>\n[button text=\"Click me!\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h2>Banner Focus Point<b>™</b></h2>\n<p class=\"lead\">Set a focus point on the banner and the image will adjust to mobile a tablet screens. Perfect for resposnive Websites.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" image_size=\"original\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Banner Hover effects\"]\n\n[row]\n\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\"]\n\n<h3>Glow</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom-fade\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom Fade</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"blur\"]\n\n[text_box width=\"36\"]\n\n<h3>Blur</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-in\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade In</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-out\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade Out</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"color\"]\n\n[text_box width=\"36\"]\n\n<h3>Add Color</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"grayscale\"]\n\n[text_box width=\"36\"]\n\n<h3>Grayscale</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can also<strong> combine</strong> hover effects to create amazing hover effects</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\" border=\"3px 3px 3px 3px\" border_margin=\"10px 10px 10px 10px\" border_hover=\"zoom\"]\n\n[text_box width=\"51\"]\n\n<h3><strong>Add animated borders</strong></h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"154\" parallax=\"2\"]\n\n[text_box width=\"41\"]\n\n<h2 class=\"uppercase\">BACKGROUND VIDEO</h2>\n\n[/text_box]\n\n[/ux_banner]','Banners','','publish','closed','closed','','banner','','','2020-10-24 13:16:36','2020-10-24 13:16:36','',230,'http://flatsome.dev/?page_id=3648',4,'page','',0),(198,1,'2016-01-12 17:26:06','2016-01-12 17:26:06','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.42)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>IMAGE BOX ELEMENT</strong></h3>\r\n<p class=\"lead\">Create amazing image boxes with unlimited style options.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section]\r\n\r\n[row]\r\n\r\n[col span=\"4\"]\r\n\r\n[ux_image_box img=\"153\"]\r\n\r\n<h4>Simple Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"153\"]\r\n\r\n<h4>Bounce Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"badge\" img=\"153\"]\r\n\r\n<h4>Badge Style</h4>\r\n<p>You can add shortcodes here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"153\"]\r\n\r\n<h2>Overlay Style</h2>\r\n<p class=\"lead\">Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"label\" img=\"153\"]\r\n\r\n<h4>Label Style</h4>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"153\"]\r\n\r\n<h4>Shade Style</h4>\r\n<p class=\"lead\">Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"push\" img=\"153\" image_height=\"90%\" text_hover=\"bounce\"]\r\n\r\n<h2>Push Style</h2>\r\n<p>Add any elements here..</p>\r\n[divider]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"8\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[ux_image_box style=\"vertical\" img=\"153\" image_width=\"48\"]\r\n\r\n<h2>Vertical Style Boxed</h2>\r\n<p class=\"lead\">Add any elements here..</p>\r\n[button text=\"A button\" style=\"secondary alt-button\" radius=\"10\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section]\r\n\r\n[row]\r\n\r\n[col align=\"center\"]\r\n\r\n<h2>Create any kind of Image box by using the options in the Page Builder.</h2>\r\n<p class=\"lead\">We have created many examples here. Mix and Match effects to create your perfect Image Box</p>\r\n\r\n[/col]\r\n[col span=\"4\" depth=\"1\"]\r\n\r\n[ux_image_box img=\"153\" image_height=\"100%\"]\r\n\r\n<h4>Simple Centered Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"153\" image_height=\"100%\" depth=\"1\" text_bg=\"rgb(66, 66, 66)\" text_color=\"dark\"]\r\n\r\n<h4>Bounce Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"153\" image_height=\"125%\" image_hover=\"blur\" text_pos=\"middle\" text_size=\"small\" text_hover=\"zoom-in\"]\r\n\r\n<h2>Overlay Style With Blur and Zoom</h2>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"153\" image_height=\"100%\"]\r\n\r\n<h4>Circle with Blur In Effect</h4>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"153\" image_height=\"116%\"]\r\n\r\n<h4>Simple Shade Style</h4>\r\n<p class=\"lead\">A beautiful box.</p>\r\n[button text=\"Quick View\" style=\"white\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"153\" image_height=\"100%\" image_radius=\"100\" image_hover=\"zoom\" text_pos=\"middle\" text_hover=\"bounce\"]\r\n\r\n<h3 class=\"uppercase\">Circle Image</h3>\r\n<p class=\"lead\">Create this by adding radius 100% to the image.</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Image Box','','publish','closed','closed','','image-box','','','2020-10-24 13:16:36','2020-10-24 13:16:36','',230,'http://flatsome.dev/?page_id=3569',15,'page','',0),(199,1,'2015-11-20 13:46:21','2015-11-20 13:46:21','[ux_banner height=\"540px\" bg=\"154\" bg_size=\"original\" bg_overlay__sm=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"35% 23%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"80\" animate=\"fadeInLeft\" position_x=\"95\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"alt-font\">Fancy Top Title</h3>\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"540px\" bg=\"154\" bg_color=\"rgb(113, 117, 186)\" bg_pos=\"60% 16%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"82\" position_x=\"10\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Create amazing Parallax effects</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"154\" bg_color=\"rgb(164, 113, 186)\" parallax=\"1\"]\r\n\r\n[text_box width=\"58\" width__sm=\"85\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"154\" bg_color=\"rgb(218, 218, 218)\" parallax=\"1\"]\r\n\r\n[text_box width=\"34\" width__sm=\"74\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>299$</strong></h2>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 185, 179, 0.91)\"]\r\n\r\n[text_box width__sm=\"79\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>SUMMER SALE END SOON</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.06)\"]\r\n\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\r\n\r\n[col span=\"6\" span__sm=\"14\"]\r\n\r\n[ux_banner height=\"94%\" bg=\"154\" bg_pos=\"20% 60%\" parallax=\"2\"]\r\n\r\n[text_box width=\"31\" width__sm=\"61\" scale__sm=\"64\" position_x=\"90\" position_y=\"90\" text_align=\"right\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Add Hotspots to BAnners</strong></h3>\r\n<p class=\"lead\">Hotspots can be added to banners and dragged around. You can have Hotspots that goes to a Product Lightbox or just a simple Tooltip.</p>\r\n\r\n[/text_box]\r\n[ux_hotspot type=\"product\" prod_id=\"416\" text=\"Add product hotspots on banners\" bg_color=\"rgb(47, 166, 162)\" position_x=\"55\" position_y=\"25\"]\r\n\r\n[ux_hotspot text=\"Cool Camera :)\" size=\"large\" bg_color=\"#4DB7B3\" position_x=\"10\" position_y=\"80\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"17\" padding=\"0px 10% 0px 10%\"]\r\n\r\n[title style=\"center\" text=\"Add a Title here\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"450px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" parallax=\"3\"]\r\n\r\n[text_box width__sm=\"93\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Join Our Newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\"]\r\n\r\n[col span=\"6\" span__sm=\"17\" padding=\"10% 10% 0px 10%\" bg_color=\"rgb(240, 240, 240)\"]\r\n\r\n[title style=\"center\" text=\"Featured\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" show=\"featured\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n[ux_banner height=\"99%\" bg=\"154\" bg_pos=\"56% 22%\" parallax=\"2\"]\r\n\r\n[text_box width=\"37\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>29$</strong></h2>\r\n\r\n[/text_box]\r\n[ux_hotspot position_x=\"55\" position_y=\"15\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"simple\" slider_nav_color=\"light\" width=\"full-width\" columns=\"7\"]','Parallax Shop','','publish','closed','closed','','parallax-shop','','','2020-10-24 13:16:37','2020-10-24 13:16:37','',207,'http://flatsome.dev/?page_id=3288',3,'page','',0),(200,1,'2015-11-20 12:36:31','2015-11-20 12:36:31','','Size Chart','','publish','closed','closed','','size-chart','','','2020-10-24 13:16:37','2020-10-24 13:16:37','',188,'http://flatsome.dev/?page_id=3282',0,'page','',0),(201,1,'2015-11-20 08:27:14','2015-11-20 08:27:14','[section bg_color=\"rgb(241, 241, 241)\" padding=\"8px\" margin=\"15px\"]\r\n\r\n[row style=\"collapse\" col_style=\"dashed\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\" align=\"center\"]\r\n\r\n[featured_box img=\"153\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Delivery</strong> World Wide* <a href=\"#\">Learn more</a></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"153\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\">Loved by our Customers. <strong>5000+</strong> Reviews</span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"153\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Returns</strong> and <strong>Free Shipping</strong></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\r\n\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\" text_padding=\"20px 20px 20px 20px\"]\r\n\r\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[gap height=\"50px\"]\r\n\r\n[ux_banner height=\"399px\" bg=\"154\" bg_size=\"large\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\"]\r\n\r\n[text_box width=\"58\" width__sm=\"80\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\r\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\r\n\r\n[button text=\"Browse now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap height=\"44px\"]\r\n\r\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]','Mega Shop','','publish','closed','closed','','mega-shop','','','2020-10-24 13:16:38','2020-10-24 13:16:38','',207,'http://flatsome.dev/?page_id=3257',9,'page','',0),(202,1,'2015-11-17 20:28:02','2015-11-17 20:28:02','Coming soon...','Booking','','publish','closed','closed','','booking','','','2020-10-24 13:16:38','2020-10-24 13:16:38','',206,'http://localhost:8888/flatsome-next/?page_id=3055',5,'page','',0),(203,1,'2015-11-17 20:27:42','2015-11-17 20:27:42','Coming soon...','Lifestyle','','publish','closed','closed','','lifestyle','','','2020-10-24 13:16:38','2020-10-24 13:16:38','',206,'http://localhost:8888/flatsome-next/?page_id=3053',10,'page','',0),(204,1,'2015-11-17 20:25:08','2015-11-17 20:25:08','[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" bg_pos=\"49% 43%\" parallax=\"4\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"59\" width__sm=\"100\" scale__sm=\"131\" animate=\"fadeInUp\" parallax=\"-3\" text_depth=\"1\"]\r\n\r\n<h1 class=\"uppercase\"><strong>WE\'re a creative Agency</strong></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n[video_button size=\"130\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.47)\" bg_pos=\"34% 46%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"10\" position_y=\"70\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Browse Portfolio\" style=\"outline\" size=\"larger\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Portfolio\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Our Clients\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section label=\"Media Right\" bg_color=\"rgb(207, 207, 207)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[row style=\"large\" h_align=\"center\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\">Contact Us</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\r\n\r\n[accordion auto_open=\"true\"]\r\n\r\n[accordion-item title=\"How long does it takes to we get back to you\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item]\r\n\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add anything here\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Research\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"LAtest NEws\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"push\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" badge_style=\"circle\" image_height=\"180px\"]','Agency','','publish','closed','closed','','agency','','','2020-10-24 13:16:38','2020-10-24 13:16:38','',206,'http://localhost:8888/flatsome-next/?page_id=3049',3,'page','',0),(205,1,'2015-11-17 20:15:56','2015-11-17 20:15:56','[section bg_color=\"#fafafa\"]\r\n\r\n[block id=\"153\"]\r\n\r\n\r\n[/section]','Demos','','publish','closed','closed','','demos','','','2015-11-17 20:15:56','2015-11-17 20:15:56','',0,'http://localhost:8888/flatsome-next/?page_id=3031',0,'page','',0),(206,1,'2015-11-17 19:45:39','2015-11-17 19:45:39','Business demos','Business Demos','','publish','closed','closed','','business-demos','','','2015-11-17 19:45:39','2015-11-17 19:45:39','',205,'http://localhost:8888/flatsome-next/?page_id=3025',0,'page','',0),(207,1,'2015-11-17 19:43:25','2015-11-17 19:43:25','[ux_pages parent=\"3021\" depth=\"1\"]','Shop Demos','','publish','closed','closed','','shop-demos','','','2015-11-17 19:43:25','2015-11-17 19:43:25','',205,'http://localhost:8888/flatsome-next/?page_id=3021',0,'page','',0),(208,1,'2014-02-10 14:07:58','2014-02-10 14:07:58','[section label=\"Top Section\" bg=\"154\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"65% 40%\" parallax=\"3\" dark=\"true\" padding=\"0px\" height=\"424px\"]\n\n[row]\n\n[col span__sm=\"12\" padding=\"5% 6% 0px 10%\" align=\"center\"]\n\n<h1 class=\"uppercase\"><strong>Section Element</strong></h1>\n<p class=\"lead\">Sections are used for creating full width backgrounds with content inside it. You can have Parallax Effects and Background Videos.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 233, 233)\" padding=\"50px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Simple section with a two column row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgb(36, 36, 36)\" dark=\"true\" padding=\"60px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Dark section with a row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Background Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h2>A section with a background video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" dark=\"true\" padding=\"60px\" height=\"50vh\"]\n\n[row style=\"collapse\" h_align=\"center\"]\n\n[col span=\"6\" align=\"center\"]\n\n<h2>A section can have a background image or a background color</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(243, 243, 243)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\"]\n\n<h2>A Section with a Image on the right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"153\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Parallax Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"9\" align=\"center\"]\n\n<h2>A Parallax Background Video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(50, 50, 50)\" dark=\"true\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(243, 243, 243)\" bg_overlay=\"rgba(255, 255, 255, 0.9)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A Section with Image and a background</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>A Section with a large image left.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" h_align=\"right\"]\n\n[col span=\"6\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>A Section with a large image right.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"153\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" parallax=\"1\" dark=\"true\" padding=\"97px\" height=\"300px\"]\n\n[title text=\"Section With a parallax background\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(255, 255, 255, 0.89)\" bg_pos=\"25% 0%\" parallax=\"1\" padding=\"60px\" height=\"300px\"]\n\n[row style=\"collapse\" width=\"full-width\" h_align=\"center\"]\n\n[col span=\"6\" padding=\"0 10%\" align=\"center\"]\n\n<h2>A product slider inside a section</h2>\n[button text=\"Click me now\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(63, 63, 63)\" dark=\"true\" mask=\"arrow\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"10\"]\n\n<h3>Section With A Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(160, 160, 160)\" dark=\"true\" mask=\"angled\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(117, 117, 117, 0.44)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"9\"]\n\n<h3>Section with Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"arrow-large\" height=\"365px\"]\n\n[row]\n\n[col]\n\n<h3>Section with a Large Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]','Sections','','publish','closed','closed','','sections','','','2020-10-24 13:16:38','2020-10-24 13:16:38','',230,'http://localhost:8888/test/?page_id=2585',1,'page','',0),(209,1,'2014-02-08 21:03:57','2014-02-08 21:03:57','[section bg_color=\"rgb(237, 239, 241)\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid Element\" size=\"120\"]\r\n\r\n[ux_banner_grid height=\"600\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"154\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"154\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"69\" width__sm=\"60\" position_y=\"5\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box text_color=\"dark\" width=\"42\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[row v_align=\"middle\"]\r\n\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">DRAG AND DROP EDITING</h2>\r\n<p class=\"lead\">Creating amazing Banner Grids is incredible easy with the new <strong>UX Builder</strong></p>\r\n\r\n[/col]\r\n[col span=\"7\" span__sm=\"12\"]\r\n\r\n[ux_image id=\"153\" depth=\"3\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"154\" bg_color=\"rgb(28, 28, 28)\" bg_overlay=\"rgba(0, 0, 0, 0.72)\" parallax=\"2\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid With A Background\" size=\"undefined\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything. Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>Woo Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"8\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"61% 30%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Use Banner Grids to Create Portfolio Grids\" margin_top=\"31px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.15)\" bg_pos=\"34% 46%\" hover=\"zoom\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"5\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"center\" text=\"Add Slider to Banner Grids\" margin_top=\"28px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]','Banner Grids','','publish','closed','closed','','banner-grid','','','2020-10-24 13:16:39','2020-10-24 13:16:39','',230,'http://localhost:8888/test/?page_id=2560',13,'page','',0),(210,1,'2013-12-30 15:48:22','2013-12-30 15:48:22','[gap height=\"32px\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"overlay-add\"]\r\n\r\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"10\" position_y=\"90\" text_align=\"left\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n[button text=\"Shop now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_pos=\"58% 24%\"]\r\n\r\n[text_box width=\"80\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any CONTENT here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\"]\r\n\r\n[text_box width=\"80\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"13\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"glow\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"49\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts badge_style=\"square\" image_height=\"75%\" image_hover=\"zoom\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]','Grid Style 1','','publish','closed','closed','','grid-style-1','','','2013-12-30 15:48:22','2013-12-30 15:48:22','',207,'http://localhost:8888/test/?page_id=2138',6,'page','',0),(211,1,'2013-12-20 14:31:52','2013-12-20 14:31:52','[ux_banner height=\"444px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.3)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>LIGHTBOX SHORTCODE</strong></h3>\r\n<p class=\"lead\">Open any content in a lightbox</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[button text=\"Lightbox button\" link=\"#test\"]\r\n\r\n<p><a href=\"#test\">Lightbox link</a></p>\r\n<p>[lightbox id=\"test\" width=\"600px\" padding=\"20px\"]<br />Add lightbox content here...<br />\r\n[/lightbox]\r\n</p>\r\n<pre>[button text=\"Lightbox button\" link=\"<b>#test</b>\"][lightbox id=\"<b>test</b>\" width=\"600px\" padding=\"20px\"]Add lightbox content here...[/lightbox]</pre>\r\n\r\n[/col]\r\n\r\n[/row]','Lightbox','','publish','closed','closed','','lightbox','','','2020-10-24 13:16:39','2020-10-24 13:16:39','',230,'http://localhost:8888/test/?page_id=2058',16,'page','',0),(212,1,'2013-12-16 09:57:42','2013-12-16 09:57:42','[ux_slider]\r\n\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.31)\" bg_pos=\"68% 27%\"]\r\n\r\n[text_box width=\"52\" width__sm=\"80\" animate=\"bounceIn\" parallax=\"-1\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 160%;\">Now Online!</span></p>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 200%;\" data-line-height=\"xs\">BIG SalE</span></strong></h2>\r\n<h3 class=\"lead uppercase\">up to <strong>70%</strong> off</h3>\r\n[button text=\"Shop Now\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"68% 11%\"]\r\n\r\n[text_box width=\"52\" width__sm=\"77\" animate=\"fadeInUp\" parallax=\"-1\" position_x=\"10\" position_x__sm=\"5\" position_y__sm=\"50\" text_align=\"left\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 160%;\">New Trends 2016</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 150%;\"><strong><span data-line-height=\"xs\">CELEBRATE SUMMER<br /></span></strong></span></h2>\r\n[button text=\"Shop Now\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"250px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.12)\" bg_pos=\"42% 18%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"75\"]\r\n\r\n<h4 class=\"uppercase\">Summer 2017</h4>\r\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"250px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"50% 57%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"70\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h4 class=\"uppercase\">Summer 2017</h4>\r\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"250px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"31% 0%\" hover=\"zoom-fade\"]\r\n\r\n[text_box text_color=\"dark\" width=\"70\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h4 class=\"uppercase\">Summer 2017</h4>\r\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" padding=\"40px 0px 0px 0px\" align=\"center\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Welcome to our Shop</span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"About us\" style=\"outline\" size=\"small\" radius=\"99\" link=\"about-us\"]\r\n\r\n[button text=\"Shop now\" size=\"small\" radius=\"99\" icon_pos=\"left\" link=\"shop\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" type=\"grid\" grid_height=\"400px\" number=\"4\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_pos=\"middle\" text_size=\"large\"]\r\n\r\n[title style=\"center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_products cat=\"81\"]\r\n\r\n[ux_banner height=\"426px\" bg=\"154\" bg_pos=\"72% 78%\" parallax=\"3\"]\r\n\r\n[text_box width=\"61\" width__sm=\"79\" scale__sm=\"158\" animate=\"fadeInRight\" position_x__sm=\"50\" border_style=\"dashed\" border_radius=\"0\" border_color=\"rgba(255, 255, 255, 0.27)\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" pos=\"center\" title=\"Shop Feature 1\" icon_border=\"1\" margin=\"px px px px\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" pos=\"center\" title=\"Shop Feature 2\" icon_border=\"1\" margin=\"px px px px\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" pos=\"center\" title=\"Shop Feature 3\" icon_border=\"1\" margin=\"px px px px\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Latest news\" margin_top=\"30px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"vertical\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" title_style=\"uppercase\" badge_style=\"circle-inside\" image_height=\"100%\" image_width=\"53\" image_radius=\"100\"]\r\n\r\n[title style=\"center\" text=\"Follow Us on Instagram\" icon=\"icon-instagram\" margin_top=\"30px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"circle\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]','Fullscreen Fashion','','publish','closed','closed','','fullscreen-fashion','','','2013-12-16 09:57:42','2013-12-16 09:57:42','',207,'http://localhost:8888/test/?page_id=2000',5,'page','',0),(213,1,'2013-09-07 23:21:13','2013-09-07 23:21:13','[woocommerce_order_tracking]','Track your order','','publish','closed','closed','','track-order','','','2013-09-07 23:21:13','2013-09-07 23:21:13','',0,'http://localhost:8888/test/?page_id=790',0,'page','',0),(214,1,'2013-08-19 19:35:32','2013-08-19 19:35:32','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(255, 255, 255, 0.61)\" bg_pos=\"41% 71%\" parallax=\"3\"]\r\n\r\n[text_box parallax=\"2\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Message Box Element</strong></h2>\r\n<p class=\"lead\">Create beautiful Call to Action areas.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"center\" text=\"Message Box Element\"]\r\n\r\n[message_box padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"9\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"2\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n[title style=\"center\" text=\"Use to Create Call to Actions areas\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"154\" bg_color=\"rgba(0, 0, 0, 0.62)\" padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"8\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">Use Message Boxes to create Call to action messages</h2>\r\n\r\n[/col_inner]\r\n[col_inner span=\"3\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me now\" color=\"white\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Full Width Message box\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"154\" bg_color=\"rgba(0, 0, 0, 0.75)\" padding=\"27\"]\r\n\r\n[row v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n<h3 class=\"uppercase\">Signup for Newsletter and get <span class=\"fancy-underline\">50% off</span> your next purchase</h3>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"17\" align=\"right\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]','Message box','','publish','closed','closed','','message-box','','','2020-10-24 13:16:39','2020-10-24 13:16:39','',230,'http://localhost:8888/test/?page_id=670',21,'page','',0),(215,1,'2013-08-18 15:48:20','2013-08-18 15:48:20','[ux_banner height=\"360px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"56% 97%\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60%\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Categories Element</strong></h3>\n<p class=\"lead\">Create beautiful overview of your Shop categories. There is almost unlimited variations, but here are some examples.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col]\n\n[title style=\"center\" text=\"Simple\"]\n\n[ux_product_categories style=\"normal\"]\n\n[title style=\"center\" text=\"Badge style\"]\n\n[ux_product_categories]\n\n[title style=\"center\" text=\"Overlay Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\"]\n\n[title style=\"center\" text=\"Grid style\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"3\" columns=\"3\" animate=\"fadeInLeft\" number=\"4\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" text_pos=\"middle\" text_size=\"large\"]\n\n[title style=\"center\" text=\"Circle Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_height=\"100%\" image_radius=\"100\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"bounce\"]\n\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(51, 51, 51)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Be creative! Mix and match settings\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"13\" col_spacing=\"small\" columns=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\" number=\"5\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" image_hover=\"color\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\"]\n\n\n[/section]','Product Categories','','publish','closed','closed','','product-categories','','','2020-10-24 13:16:39','2020-10-24 13:16:39','',230,'http://localhost:8888/test/?page_id=654',22,'page','',0),(216,1,'2013-08-18 15:41:31','2013-08-18 15:41:31','<!-- wp:html -->\n[ux_banner height=\"451px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.45)\"]\n\n[text_box width=\"66\" parallax=\"-4\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Product Element</strong></h2>\n<p class=\"lead\">List products anywhere in a beautiful style. Choose between Slider, Rows, Grid and Masonry Style. Select products from a custom category or sort by sales, featured items or latest. You can also select custom products.</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"bold-center\" text=\"Dragon Socks\" tag_name=\"h1\" size=\"135\"]\n\n[ux_products ids=\"323,299\"]\n\n\n<!-- /wp:html -->','Products','','publish','closed','closed','','products','','','2020-10-27 12:24:59','2020-10-27 12:24:59','',73,'http://localhost:8888/test/?page_id=650',23,'page','',0),(217,1,'2013-08-18 15:12:19','2013-08-18 15:12:19','[ux_banner height=\"329px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.28)\" parallax=\"2\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Share & Follow Icons</strong></h3>\r\n<p>Beautiful Share and Follow Icons that you can insert anywhere with the Page Builder.</p>\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title text=\"Share icons\"]\r\n\r\n[share]\r\n\r\n[title text=\"Follow icons\"]\r\n\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons Fill\"]\r\n\r\n[follow style=\"fill\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons small\"]\r\n\r\n[follow style=\"small\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow icons Larger\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Larger Fill\" size=\"undefined\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Large\" size=\"undefined\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(48, 48, 48)\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Follow icons dark\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[gap height=\"11px\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/section]','Share / follow icons','','publish','closed','closed','','sharefollow-icons','','','2020-10-24 13:16:40','2020-10-24 13:16:40','',230,'http://localhost:8888/test/?page_id=644',24,'page','',0),(218,1,'2013-08-18 15:09:39','2013-08-18 15:09:39','[ux_banner height=\"395px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width__sm=\"86\" scale__sm=\"138\"]\n\n<h3 class=\"uppercase\"><strong>TEAM MEMBER ELEMENT</strong></h3>\n<p class=\"lead\">Use this for presenting your team member or staff</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Default Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Color Icon style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Mark Jance\" title=\"CTO / Developer\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bounce Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"bounce\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"bounce\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Push Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"push\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"push\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"push\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Circle\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Grayscale\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[section bg=\"154\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(0, 0, 0, 0.84)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Mix and match styles\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"small\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\" image_hover_alt=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"9\" image_hover=\"glow\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_hover=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]','Team Member','','publish','closed','closed','','team-member','','','2020-10-24 13:16:40','2020-10-24 13:16:40','',230,'http://localhost:8888/test/?page_id=642',26,'page','',0),(219,1,'2013-08-18 14:46:20','2013-08-18 14:46:20','[ux_banner height=\"500px\" bg=\"154\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.12)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>ICON BOX ELEMENT</strong></h3>\n<p class=\"lead\">Create simple icon boxes with this element. Upload any SVG icon or image. You can find beautiful SVG icons here: </p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Top Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Top Align with border\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Left Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(140, 188, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(25, 130, 188)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(188, 69, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]','Icon Box','','publish','closed','closed','','icon-box','','','2020-10-24 13:16:41','2020-10-24 13:16:41','',230,'http://localhost:8888/test/?page_id=637',14,'page','',0),(220,1,'2013-08-18 14:39:33','2013-08-18 14:39:33','[ux_banner height=\"500px\" bg=\"154\" parallax=\"2\"]\r\n\r\n[text_box parallax=\"-2\"]\r\n\r\n<h1>Section Titles</h1>\r\n<p class=\"lead\">Split content with beautiful Section Titles</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col]\r\n\r\n[title text=\"This is a normal title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title with Icon\" icon=\"icon-star\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link and icon\" icon=\"icon-star-o\" size=\"undefined\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold title\" size=\"171\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold\" text=\"This is a bold title with link\" link_text=\"Click here\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold centered title\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n','Titles / Dividers','','publish','closed','closed','','titles-dividers','','','2020-10-24 13:16:41','2020-10-24 13:16:41','',230,'http://localhost:8888/test/?page_id=636',7,'page','',0),(221,1,'2013-08-18 12:30:42','2013-08-18 12:30:42','[gap]\r\n\r\n[ux_banner_grid height=\"575\"]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"large\" bg_color=\"rgb(2, 2, 2)\" bg_pos=\"56% 29%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" width__sm=\"78\" scale=\"99\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" color=\"white\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"large\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" scale=\"99\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"67\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"13\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"bold-center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"37\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n[gap height=\"18px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" badge_style=\"square\" image_height=\"200px\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"circle\" width=\"full-width\" columns=\"6\"]','Grid Style 2','','publish','closed','closed','','grid-style-2','','','2013-08-18 12:30:42','2013-08-18 12:30:42','',207,'http://localhost:8888/test/?page_id=624',7,'page','',0),(222,1,'2013-08-11 19:57:03','2013-08-11 19:57:03','[ux_banner height=\"398px\" bg=\"154\" bg_pos=\"66% 25%\" parallax=\"2\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Testemonial element</strong></h3>\n<p class=\"lead\">Tell your customers how happy your clients are</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"With image left\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>This is a FANTASTIC Theme. Do you think that in the next version you could try and have it Multilanguage. Because I have nothing bad to say about this theme. Thank a million!</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"With image on Top\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed Vertical\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Testemonials in a row slider\"]\n\n[ux_slider hide_nav=\"true\" nav_color=\"dark\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n\n[/ux_slider]\n[title style=\"center\" text=\"Testemonials in a slider\"]\n\n[ux_slider]\n\n[ux_banner height=\"378px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9147\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Testimonials','','publish','closed','closed','','testemonials','','','2020-10-24 13:16:41','2020-10-24 13:16:41','',230,'http://localhost:8888/test/?page_id=539',27,'page','',0),(223,1,'2013-08-11 19:54:47','2013-08-11 19:54:47','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.49)\"]\r\n\r\n[text_box width=\"76\"]\r\n\r\n<h1>Buttons</h1>\r\n<p class=\"lead\">Create beautiful Call to Action buttons with the amazing Button Element</p>\r\n[button text=\"Primary Button\" style=\"shade\" link=\"test?asdf&asdf=asdf&asdf&\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Unlimited Variations</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" radius=\"12\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" icon=\"icon-heart\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\" radius=\"6\" icon=\"icon-heart\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg_color=\"rgb(44, 44, 44)\" dark=\"true\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Buttons on Dark background</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n[button text=\"White outline\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Styles</h3>\r\n<p>Select between many different button styles.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Simple link\" style=\"link\"]\r\n\r\n[button text=\"Underline\" style=\"underline\"]\r\n\r\n[button text=\"Outline\" style=\"outline\" depth=\"2\" depth_hover=\"2\"]\r\n\r\n[button text=\"Normal\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Gloss\" style=\"gloss\" radius=\"99\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Shade\" style=\"shade\" radius=\"7\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Bevel\" style=\"bevel\" radius=\"12\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button with icon</h3>\r\n<p>Choose between many included Flatsome Icons.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Icon Button\" style=\"bevel\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Icon Left\" style=\"outline\" radius=\"6\" icon=\"icon-instagram\"]\r\n\r\n[button text=\"Reveal Left\" style=\"outline\" icon=\"icon-play\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Reveal Right\" icon=\"icon-angle-right\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Large Button\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Large Reveal\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-checkmark\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Simple Button Styles</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\" style=\"link\" icon=\"icon-play\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"link\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"link\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"link\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Radius</h3>\r\n<p>Add custom radius to buttons</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Normal Button\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" size=\"large\" radius=\"99\"]\r\n\r\n[button text=\"Normal Button\" style=\"outline\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" style=\"outline\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Shadow</h3>\r\n<p>Add drop shadow to buttons to make them stand out more.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Large Shadow\" style=\"bevel\" size=\"large\" depth=\"5\" depth_hover=\"4\"]\r\n\r\n[button text=\"Medium Shadow\" style=\"bevel\" size=\"large\" depth=\"3\" depth_hover=\"4\"]\r\n\r\n[button text=\"Small Shadow\" style=\"bevel\" size=\"large\" depth=\"1\" depth_hover=\"2\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Sizes</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"x Small\" size=\"xsmall\"]\r\n\r\n[button text=\"Smaller\" size=\"smaller\"]\r\n\r\n[button text=\"Small\" size=\"small\"]\r\n\r\n[button text=\"Normal\"]\r\n\r\n[button text=\"Large\" size=\"large\"]\r\n\r\n[button text=\"Larger\" size=\"larger\"]\r\n\r\n[button text=\"X LARGE\" size=\"xlarge\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Smart Links</h3>\r\n<p>Add simple text to button links to link to various WordPress and WooCommerce pages.</p>\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n<p>\'<strong>shop</strong>\' : Goes to Shop page</p>\r\n<p>\'<strong>account\'</strong> Goes to My Account Page</p>\r\n<p>\'<strong>checkout\'</strong> Goes to Checkout page</p>\r\n<p>\'<strong>blog\'</strong> Goes to blog page</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>\'<strong>home</strong>\' Goes to homepage</p>\r\n<p><strong>\'wishlist</strong>\' Goes to wishlist page</p>\r\n<p>\'<strong>Page Title</strong>\' Goes to page by Title.</p>\r\n\r\n[/col]\r\n\r\n[/row]','Buttons','','publish','closed','closed','','buttons','','','2020-10-24 13:16:41','2020-10-24 13:16:41','',230,'http://localhost:8888/test/?page_id=538',6,'page','',0),(224,1,'2013-08-11 19:06:15','2013-08-11 19:06:15','[ux_banner height=\"507px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n[text_box position_y=\"80\"]\n\n<h1 class=\"lead\">About Us</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"153\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"153\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"153\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"153\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]','About','','publish','closed','closed','','about','','','2020-10-24 13:16:42','2020-10-24 13:16:42','',188,'http://localhost:8888/test/?page_id=520',0,'page','',0),(225,1,'2013-08-11 18:47:13','2013-08-11 18:47:13','[map lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgb(255, 255, 255)\" content_width__sm=\"100\" position_x=\"50\" position_x__sm=\"0\" position_y=\"50\" saturation=\"-100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>GOOGLE MAP ELEMENT</strong></h3>\r\n<p class=\"lead\">Add highly customisable Google Maps to any page.</p>\r\n\r\n[/map]\r\n[title style=\"center\" text=\"Examples\" margin_top=\"14px\"]\r\n\r\n[row]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map controls=\"true\"]\r\n\r\n<p><strong>Map With Tools</strong></p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"89\" color=\"#6d5854\"]\r\n\r\n<p>Use any color for your map</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"86\" position_x=\"5\" position_y=\"5\" saturation=\"-100\"]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[map height=\"589px\" height__sm=\"747px\" lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgba(255, 255, 255, 0.85)\" content_width__sm=\"100\" position_x__sm=\"100\" position_y=\"10\" position_y__sm=\"100\" saturation=\"44\"]\r\n\r\n[title text=\"A map with a Form\" icon=\"icon-envelop\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/map]','Map','','publish','closed','closed','','map','','','2020-10-24 13:16:42','2020-10-24 13:16:42','',230,'http://localhost:8888/test/?page_id=514',20,'page','',0),(226,1,'2013-08-11 18:04:55','2013-08-11 18:04:55','[ux_slider bg_color=\"rgb(79, 79, 79)\" hide_nav=\"true\" nav_size=\"normal\"]\r\n\r\n[ux_banner height=\"600px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"60% 16%\" parallax=\"2\"]\r\n\r\n[text_box width__sm=\"69\" scale__sm=\"105\" animate=\"blurIn\"]\r\n\r\n<h3 class=\"alt-font\" data-animate=\"fadeInRight\">A nice title on Top</h3>\r\n[divider]\r\n\r\n<h2 class=\"uppercase\">Introducing This Spring Fashion News</h2>\r\n[divider]\r\n\r\n[button text=\"Shop Women\"]\r\n\r\n[button text=\"Shop Men\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"60% 16%\" parallax=\"2\"]\r\n\r\n[text_box width__sm=\"69\" scale__sm=\"105\" animate=\"blurIn\"]\r\n\r\n<h3 class=\"alt-font\" data-animate=\"fadeInRight\">A nice title on Top</h3>\r\n<h2 class=\"uppercase\">Introducing This Spring Fashion News</h2>\r\n[divider]\r\n\r\n[button text=\"Shop Women\"]\r\n\r\n[button text=\"Shop Men\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" parallax=\"2\"]\r\n\r\n[text_box animate=\"blurIn\"]\r\n\r\n<h3 class=\"alt-font\" data-animate=\"fadeInRight\">A nice title on Top</h3>\r\n<h2 class=\"uppercase\">Add anything Here in the Page Builder</h2>\r\n[divider]\r\n\r\n[button text=\"Shop Women\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[title style=\"center\" text=\"Featured Products\" size=\"100\"]\r\n\r\n[ux_products show=\"featured\" image_height=\"112%\"]\r\n\r\n[title style=\"center\" text=\"Browse Categories\" size=\"100\"]\r\n\r\n[ux_product_categories style=\"overlay\" slider_nav_style=\"circle\" animate=\"fadeInLeft\" image_height=\"87%\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_pos=\"middle\"]\r\n\r\n[title style=\"center\" text=\"Latest blog posts\" size=\"100\"]\r\n\r\n[blog_posts style=\"bounce\" col_spacing=\"small\" title_size=\"larger\" title_style=\"uppercase\" badge_style=\"circle\" excerpt=\"false\" image_height=\"235px\" image_overlay=\"rgba(0, 0, 0, 0.15)\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_size=\"small\"]','Simple Slider','','publish','closed','closed','','simple-slider','','','2013-08-11 18:04:55','2013-08-11 18:04:55','',207,'http://localhost:8888/test/?page_id=501',11,'page','',0),(227,1,'2013-08-11 15:41:20','2013-08-11 15:41:20','[ux_slider hide_nav=\"true\" bullets=\"false\"]\n\n[ux_banner height=\"600px\" bg=\"154\" bg_overlay=\"rgba(19, 6, 6, 0.36)\" bg_pos=\"53% 5%\"]\n\n[text_box width=\"61\" width__sm=\"80\" scale=\"136\" scale__sm=\"154\" position_y=\"75\"]\n\n<h3 class=\"uppercase\"><strong>SLIDER ELEMENT</strong></h3>\n<p class=\"lead\">Create amazing Sliders with our Slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"154\" bg_pos=\"22% 46%\"]\n\n[text_box width=\"40\" width__sm=\"80\" position_y=\"70\"]\n\n<h3>This is a Full Width Slider</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n[button text=\"Click me\" style=\"outline\" radius=\"10\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" slide_effect=\"zoom-in\" bg=\"154\" bg_pos=\"49% 42%\"]\n\n[text_box animate=\"bounceIn\"]\n\n<h3>Add Animations and Slide Effects</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\" h_align=\"center\"]\n\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h3 class=\"uppercase\"><strong>Drag and Drop Editing</strong></h3>\n<p class=\"lead\">Use the UX Builder to Create amazing homepage sliders and ladingpages.</p>\n\n[/col]\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\n\n[ux_image id=\"153\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" size=\"undefined\"]\n\n[ux_slider style=\"container\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Focused Slider Style\" size=\"undefined\"]\n\n[ux_slider style=\"focus\" bg_color=\"rgb(82, 82, 82)\"]\n\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Shadow Slide Style\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" bg_color=\"rgb(238, 238, 238)\"]\n\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Free Scroll Shadow Slider\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" slide_width=\"500px\" bg_color=\"rgb(238, 238, 238)\" freescroll=\"true\"]\n\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"51% 19%\"]\n\n[text_box width=\"76\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"53% 13%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"66\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"56% 11%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 9%\"]\n\n[text_box width=\"72\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Dark arrows\" size=\"undefined\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(222, 222, 222)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(238, 238, 238)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"light arrows\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(46, 46, 46)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(54, 54, 54)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"always visible arrows\"]\n\n[ux_slider hide_nav=\"true\"]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(229, 191, 191)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(171, 204, 196)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Simple arrows\"]\n\n[ux_slider hide_nav=\"true\" nav_style=\"simple\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav Circle outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_color=\"dark\" bullets=\"false\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]','Sliders','','publish','closed','closed','','sliders','','','2020-10-24 13:16:43','2020-10-24 13:16:43','',230,'http://localhost:8888/test/?page_id=464',3,'page','',0),(228,1,'2013-08-11 15:26:47','2013-08-11 15:26:47','[section bg=\"154\" bg_color=\"rgb(50, 50, 50)\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" dark=\"true\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">Amazing Blog Posts Element</h1>\n<p class=\"lead\">Display your Blog posts in many different ways.</p>\n<ul>\n<li class=\"bullet-checkmark\">Unlimited Styles and Options</li>\n<li class=\"bullet-checkmark\">Select Custom Posts</li>\n<li class=\"bullet-checkmark\">Slider / Row / Grid and Masonry Style</li>\n</ul>\n\n[/col]\n[col span=\"9\"]\n\n[blog_posts style=\"shade\" type=\"slider-full\" grid=\"2\" slider_nav_style=\"circle\" columns=\"1\" title_size=\"larger\" show_date=\"text\" excerpt=\"false\" show_category=\"label\" comments=\"false\" image_size=\"large\" image_overlay=\"rgba(0, 0, 0, 0.09)\" image_hover=\"overlay-remove\" text_size=\"large\" text_hover=\"bounce\" text_padding=\"10% 0px 10% 0px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[title style=\"center\" text=\"Default Style\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\n\n[title style=\"center\" text=\"Bounce Style\" size=\"undefined\"]\n\n[blog_posts style=\"bounce\" badge_style=\"square\" image_height=\"75%\"]\n\n[title style=\"center\" text=\"Push Style\" margin_top=\"17px\" size=\"undefined\"]\n\n[blog_posts style=\"push\" columns=\"3\" badge_style=\"circle-inside\" image_height=\"75%\"]\n\n\n[/section]\n[section bg_color=\"rgb(62, 62, 62)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Blog posts inside a dark section\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" slider_nav_style=\"simple\" slider_nav_color=\"light\" slider_nav_position=\"outside\" columns=\"3\" image_height=\"56.25%\"]\n\n\n[/section]\n[title style=\"center\" text=\"Vertical Slide Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"2\" image_height=\"89%\" image_width=\"43\"]\n\n[title style=\"center\" text=\"Animated Blog posts in grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" animate=\"fadeInUp\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Overlay Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.17)\" image_hover=\"zoom\"]\n\n[title style=\"center\" text=\"Overlay Grayscale\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" animate=\"fadeInLeft\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.56)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>Select between many different Hover Styles</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Read More button\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" depth=\"2\" readmore=\"Read More\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"shade\" type=\"grid\" columns=\"3\" depth=\"1\" posts=\"4\" title_size=\"larger\" title_style=\"uppercase\" readmore=\"Read More\" badge_style=\"circle-inside\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Masonery Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"masonry\" columns=\"3\" depth=\"2\" image_height=\"180px\"]','Blog Posts','','publish','closed','closed','','blog-posts','','','2020-10-24 13:16:43','2020-10-24 13:16:43','',230,'http://localhost:8888/test/?page_id=456',8,'page','',0),(229,1,'2013-08-11 15:20:04','2013-08-11 15:20:04','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[row]\n\n[col span=\"4\"]\n\n<h1>Tabs Element</h1>\n<p>Ad flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. </p>\n\n[/col]\n[col span=\"8\"]\n\n[tabgroup style=\"tabs\"]\n\n[tab title=\"Tab 3 Title\"]\n\n<p> lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 1 Title\"]\n\n<p>Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed..</p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n\n[/section]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs Bottom\" style=\"line-bottom\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Tabs Pills Centered\" style=\"pills\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Outline Tabs Centered\" style=\"outline\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[tabgroup title=\"Line Grow Tabs Center\" style=\"line-grow\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col]\n\n[tabgroup title=\"Vertical Tabs\" type=\"vertical\"]\n\n[tab title=\"Top tab\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee yr.</p>\n\n[/tab]\n[tab title=\"This is tab\"]\n\n<p>Laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"this is another tab\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span__sm=\"12\"]\n\n[tabgroup style=\"outline\" type=\"vertical\"]\n\n[tab title=\"Tab title 1\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 2\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 3\"]\n\n<p>Church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Tabs','','publish','closed','closed','','tabs','','','2020-10-24 13:16:43','2020-10-24 13:16:43','',230,'http://localhost:8888/test/?page_id=453',25,'page','',0),(230,1,'2013-08-09 22:37:13','2013-08-09 22:37:13','[block id=\"elements-overview\"]','Elements','','publish','closed','closed','','elements','','','2013-08-09 22:37:13','2013-08-09 22:37:13','',0,'http://localhost:8888/test/?page_id=288',0,'page','',0),(231,1,'2013-08-06 20:13:19','2013-08-06 20:13:19','[ux_slider]\r\n\r\n[ux_banner height=\"600px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\"]\r\n\r\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\"]\r\n<h3 class=\"alt-font\">It has Finally started...</h3>\r\n[divider margin=\"3px\"]\r\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\r\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\r\n[divider]\r\n\r\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\r\n\r\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\r\n\r\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"72% 6%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" text_color=\"dark\"]\r\n<h3 class=\"alt-font\">Mens Clothing</h3>\r\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\r\n<h3><strong>From 19$</strong></h3>\r\n[divider]\r\n\r\n[button text=\"Shop now\" style=\"outline\"]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n<h3 class=\"alt-font\">Shop Now</h3>\r\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Shop Men\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" style=\"outline\"]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n<h3 class=\"alt-font\">A Nice top title</h3>\r\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\r\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\r\n<p class=\"lead\">This can easily be edited in the page builder.</p>\r\n[button text=\"Browse Products\"]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\r\n\r\n[text_box]\r\n<h2><strong><span class=\"uppercase\">Our Blog</span></strong></h2>\r\n[divider]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" hover=\"zoom-fade\" link=\"http://localhost:8888/test/blog/\"]\r\n\r\n[text_box]\r\n<h2><strong><span class=\"uppercase\">Join our\r\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\r\n[divider]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\r\n\r\n[text_box]\r\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\r\n[divider]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"weekly featured products\"]\r\n\r\n[ux_products products=\"14\" show=\"featured\"]\r\n\r\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\r\n\r\n[ux_products products=\"8\" orderby=\"sales\"]\r\n\r\n[title style=\"center\" text=\"Browse our categories\"]\r\n\r\n[ux_product_categories number=\"20\"]\r\n\r\n[gap height=\"40px\"]\r\n\r\n[row col_style=\"divided\"]\r\n\r\n[col span=\"4\"]\r\n\r\n[featured_box img=\"153\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\" margin=\"0px 0px 0px 0px\"]\r\n\r\nGet Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[featured_box img=\"153\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\" margin=\"0px 0px 0px 0px\"]\r\n\r\nGet Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[featured_box img=\"153\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\" margin=\"0px 0px 0px 0px\"]\r\n\r\nWe pay these fees so you don’t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap height=\"40px\"]\r\n\r\n[ux_slider timer=\"2000\"]\r\n\r\n[ux_banner height=\"300px\" bg=\"154\" parallax=\"1\"]\r\n\r\n[text_box width=\"78\"]\r\n\r\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\r\n\r\nPBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.\r\n\r\n[/testimonial]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"300px\" bg=\"154\" parallax=\"1\"]\r\n\r\n[text_box width=\"80\"]\r\n\r\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\r\n\r\nPBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.\r\n\r\n[/testimonial]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"300px\" bg=\"154\" parallax=\"1\"]\r\n\r\n[text_box width=\"80\"]\r\n\r\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\r\n\r\nPBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.\r\n\r\n[/testimonial]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]','Classic Shop','','publish','closed','closed','','classic-shop','','','2013-08-06 20:13:19','2013-08-06 20:13:19','',207,'http://localhost:8888/test/?page_id=17',1,'page','',0),(232,1,'2020-10-24 13:14:34','2020-10-24 13:14:34','','Left Sidebar','','inherit','closed','closed','','165-revision-v1','','','2020-10-24 13:14:34','2020-10-24 13:14:34','',165,'http://www.thedragonhouse.co.za/165-revision-v1/',0,'revision','',0),(233,1,'2020-10-24 13:14:36','2020-10-24 13:14:36','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[title style=\"center\" text=\"Flip book element\"]\n\n[ux_product_flip]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Create a Flip Book for any product category. You can also select custom posts.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Flip Book','','inherit','closed','closed','','166-revision-v1','','','2020-10-24 13:14:36','2020-10-24 13:14:36','',166,'http://www.thedragonhouse.co.za/166-revision-v1/',0,'revision','',0),(234,1,'2020-10-24 13:14:37','2020-10-24 13:14:37','[ux_slider infinitive=\"false\" parallax=\"2\" hide_nav=\"true\" nav_size=\"normal\" nav_style=\"simple\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"30% 57%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Welcome to our Fashion shop</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"62% 18%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"74% 14%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Slider Cover','','inherit','closed','closed','','167-revision-v1','','','2020-10-24 13:14:37','2020-10-24 13:14:37','',167,'http://www.thedragonhouse.co.za/167-revision-v1/',0,'revision','',0),(235,1,'2020-10-24 13:14:38','2020-10-24 13:14:38','[ux_banner height=\"100%\" bg=\"154\"]\r\n\r\n[text_box]\r\n\r\n[ux_image id=\"153\" width=\"24\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Flatsome 3.0</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.2)\" month=\"12\" day=\"24\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','Maintenance','','inherit','closed','closed','','168-revision-v1','','','2020-10-24 13:14:38','2020-10-24 13:14:38','',168,'http://www.thedragonhouse.co.za/168-revision-v1/',0,'revision','',0),(236,1,'2020-10-24 13:14:39','2020-10-24 13:14:39','[ux_banner height=\"100%\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" video_mp4=\"/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[text_box width=\"53\" width__sm=\"87\" scale__sm=\"125\" margin=\"30px 0px 30px 0px\"]\n\n<h3 class=\"alt-font\">A Fancy top Title</h3>\n<h1 class=\"uppercase\"><strong>Welcome to COOL Our Shop</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Shop now\" color=\"white\" link=\"shop\"]\n\n\n[/text_box]\n\n[/ux_banner]','Video Cover','','inherit','closed','closed','','169-revision-v1','','','2020-10-24 13:14:39','2020-10-24 13:14:39','',169,'http://www.thedragonhouse.co.za/169-revision-v1/',0,'revision','',0),(237,1,'2020-10-24 13:14:39','2020-10-24 13:14:39','[ux_banner height=\"300px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"60\"]\n\n<h3 class=\"uppercase\"><strong>Our Stores</strong></h3>\n[divider]\n\n[share]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\">About our stores. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[tabgroup type=\"vertical\"]\n\n[tab title=\"New York\"]\n\n[map lat=\"40.7902\" saturation=\"-58\"]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"London\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Oslo\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Stockholm\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Add as many as you want\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Our Stores','','inherit','closed','closed','','170-revision-v1','','','2020-10-24 13:14:39','2020-10-24 13:14:39','',170,'http://www.thedragonhouse.co.za/170-revision-v1/',0,'revision','',0),(238,1,'2020-10-24 13:14:41','2020-10-24 13:14:41','[section bg=\"154\" bg_color=\"rgb(246, 246, 246)\" parallax=\"3\" padding=\"19px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"large\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" scale=\"99\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"7\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_pos=\"58% 24%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"76\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"67\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"37\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n[gap height=\"18px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" badge_style=\"square\" image_height=\"200px\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]','Grid Style 3','','inherit','closed','closed','','171-revision-v1','','','2020-10-24 13:14:41','2020-10-24 13:14:41','',171,'http://www.thedragonhouse.co.za/171-revision-v1/',0,'revision','',0),(239,1,'2020-10-24 13:14:42','2020-10-24 13:14:42','[ux_slider slide_width=\"100%\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"70% 17%\"]\r\n\r\n[text_box width=\"56\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x=\"5\" position_x__sm=\"10\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h1><span style=\"font-size: 80%;\"><strong>WordPress & WooCommerce Expert</strong></span></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n[button text=\"My Work\" color=\"white\" style=\"outline\" radius=\"99\" link=\"Portfolio\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"63\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y=\"25\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>A small but focused Web Studio</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Learn more\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"About\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"80\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>Services</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[button text=\"Contact Now\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Contact\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Freelancer','','inherit','closed','closed','','172-revision-v1','','','2020-10-24 13:14:42','2020-10-24 13:14:42','',172,'http://www.thedragonhouse.co.za/172-revision-v1/',0,'revision','',0),(240,1,'2020-10-24 13:14:43','2020-10-24 13:14:43','[ux_slider]\r\n\r\n[ux_banner height=\"600px\" bg_overlay=\"rgba(246, 208, 45, 0.94)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"95\" position_x__sm=\"95\" position_y=\"5\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"57\" width__sm=\"84\" scale__sm=\"111\" animate=\"flipInY\"]\r\n\r\n<h1 class=\"uppercase\"><span style=\"font-size: 400%;\" data-line-height=\"xs\"><strong>Sale</strong></span></h1>\r\n<h2 class=\"lead\">Summer Sale has Started</h2>\r\n[ux_countdown style=\"text\" size=\"114\" color=\"light\"]\r\n\r\n[gap height=\"23px\"]\r\n\r\n[button text=\"Shop men\" color=\"white\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\"]\r\n\r\n[button text=\"Shop All\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"154\" bg_pos=\"84% 0%\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"100\" position_x__sm=\"95\" position_y=\"15\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"50\"]\r\n\r\n<h2 class=\"uppercase\">Shop Fashion Clothes today</h2>\r\n<h3 class=\"thin-font\">Add any text here..</h3>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row depth=\"1\" depth_hover=\"5\"]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"50% 12%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>About us</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"60% 18%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>OUR BLOG</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"51% 35%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>NEWSLETTER</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Latest products on sale\" size=\"undefined\"]\r\n\r\n[ux_products depth=\"1\" depth_hover=\"4\" orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Browse our Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories depth=\"1\" depth_hover=\"4\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" icon=\"instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" depth=\"1\"]\r\n\r\n[gap height=\"58px\"]\r\n\r\n[ux_banner height=\"407px\" bg=\"154\" bg_color=\"rgb(18, 18, 18)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\" bg_pos=\"79% 0%\" parallax=\"1\" border=\"2px 0px 2px 0px\" border_margin=\"10px 0px 10px 0px\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(255, 255, 255, 0.22)\"]\r\n\r\n[text_box width=\"47\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Don\'t miss a sale</strong></h2>\r\n<h3 class=\"thin-font\">Sign up for our Newsletter</h3>\r\n[gap height=\"32px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" depth=\"1\" depth_hover=\"4\" image_height=\"181px\"]','Big Sale','','inherit','closed','closed','','173-revision-v1','','','2020-10-24 13:14:43','2020-10-24 13:14:43','',173,'http://www.thedragonhouse.co.za/173-revision-v1/',0,'revision','',0),(241,1,'2020-10-24 13:14:43','2020-10-24 13:14:43','[title text=\"Add responsive Video Embeds\" size=\"undefined\"]\n\n<p class=\"lead\">Add Responsive video embed to your site by using the Page Builder.</p>\n<h3>YOUTUBE</h3>\n[ux_video height=\"46%\"]\n\n<h3>VIMEO</h3>\n[ux_video url=\"https://vimeo.com/180255453\" height=\"54%\"]','Video','','inherit','closed','closed','','174-revision-v1','','','2020-10-24 13:14:43','2020-10-24 13:14:43','',174,'http://www.thedragonhouse.co.za/174-revision-v1/',0,'revision','',0),(242,1,'2020-10-24 13:14:44','2020-10-24 13:14:44','[ux_banner height=\"450px\" bg=\"154\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button size=\"118\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.52)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"154\"]\n\n[text_box position_x=\"10\" position_y=\"10\" text_align=\"left\" text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Change Size</strong></h3>\n<p class=\"lead\">You can change the size to anything</p>\n[video_button size=\"202\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.45)\" hover=\"overlay-add\"]\n\n[text_box hover=\"zoom-in\"]\n\n<h3 class=\"uppercase\"><strong>Show on Hover</strong></h3>\n<p class=\"lead\">Select between various hover effects</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]','Video Button','','inherit','closed','closed','','175-revision-v1','','','2020-10-24 13:14:44','2020-10-24 13:14:44','',175,'http://www.thedragonhouse.co.za/175-revision-v1/',0,'revision','',0),(243,1,'2020-10-24 13:14:45','2020-10-24 13:14:45','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.71)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>GALLERY ELEMENT</strong></h3>\r\n<p class=\"lead\">Create Galleries by using Image IDs and drag and drop. You can easily create galleries from the Page Builder.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple GAllery Row with lightbox\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Full Width Gallery\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" width=\"full-width\" col_spacing=\"collapse\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Gallery width Small gap\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"xsmall\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Slider Gallery\" margin_top=\"21px\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" type=\"slider\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"undefined\" slider_nav_position=\"undefined\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"undefined\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"undefined\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_hover=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\" text_padding=\"undefined\"]','Galleries','','inherit','closed','closed','','176-revision-v1','','','2020-10-24 13:14:45','2020-10-24 13:14:45','',176,'http://www.thedragonhouse.co.za/176-revision-v1/',0,'revision','',0),(244,1,'2020-10-24 13:14:45','2020-10-24 13:14:45','[ux_slider nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"154\" bg_color=\"rgb(27, 15, 15)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" icon=\"search\" size=\"large\" position_x=\"15\" position_y=\"25\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_x=\"10\" position_y=\"85\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"90\"]\n\n<h2 class=\"uppercase\">Banner with hotspots</h2>\n<p class=\"thin-font lead\">Add Hotspots anywhere by using the drag and drop Page Builder.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"154\" bg_color=\"rgba(0, 0, 0, 0.25)\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" size=\"large\" position_x=\"80\" position_y=\"30\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_y=\"35\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"10\"]\n\n<h2 class=\"uppercase\">Create Lookbooks </h2>\n<p class=\"thin-font lead\">Create beautiful lookbooks by combining the banner, hotspot and slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Hotspot','','inherit','closed','closed','','177-revision-v1','','','2020-10-24 13:14:45','2020-10-24 13:14:45','',177,'http://www.thedragonhouse.co.za/177-revision-v1/',0,'revision','',0),(245,1,'2020-10-24 13:14:46','2020-10-24 13:14:46','[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.62)\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"8\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything. Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>Woo Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(246, 246, 246)\" border=\"1px 0px 0px 0px\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Shop By Category\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"normal\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"5\" depth=\"1\" image_height=\"230px\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title style=\"center\" text=\"Latest Collections\" size=\"undefined\"]\r\n\r\n[ux_products style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"1\" orderby=\"date\" image_width=\"42\" text_size=\"large\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"318px\" bg=\"154\" bg_color=\"rgb(80, 80, 80)\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" bg_pos=\"22% 29%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Become a Vendor</strong></h3>\r\n<p class=\"lead\">Want to sell on Flatsome Vendor? We\'re looking for shop to join us.</p>\r\n[button text=\"Learn More\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Apply Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(244, 244, 244)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"bold-center\" text=\"How it Works\" size=\"undefined\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Apply to be a Vendor</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Upload your products</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Sell and make money</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[gap height=\"36px\"]\r\n\r\n[title style=\"bold-center\" text=\"Latest Reviews\" size=\"undefined\"]\r\n\r\n[ux_slider nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/ux_slider]\r\n[title style=\"bold-center\" text=\"From The Blog\" size=\"undefined\"]\r\n\r\n[blog_posts slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" depth=\"1\" image_height=\"180px\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Vendor Shop','','inherit','closed','closed','','178-revision-v1','','','2020-10-24 13:14:46','2020-10-24 13:14:46','',178,'http://www.thedragonhouse.co.za/178-revision-v1/',0,'revision','',0),(246,1,'2020-10-24 13:14:47','2020-10-24 13:14:47','[message_box bg_color=\"rgb(69, 69, 69)\" padding=\"7\"]\r\n\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\r\n\r\n<p><strong>BIG SUMMER SALE HAS STARTED. UP TO 70% OFF </strong>Make sure you</p>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\r\n\r\n[ux_countdown style=\"text\" size=\"94\" color=\"light\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]\r\n[ux_slider]\r\n\r\n[ux_banner height=\"706px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"40% 54%\"]\r\n\r\n[text_box width=\"69\" width__sm=\"80\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 200%;\">It has finally started</span></p>\r\n<h1><span style=\"font-size: 130%;\"><strong>BIG SUMMER SALE</strong></span></h1>\r\n[ux_countdown size=\"307\" color=\"light\" bg_color=\"rgba(255, 255, 255, 0.86)\"]\r\n\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop all\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"8\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h1 class=\"uppercase\">Welcome to our Shop</h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"8\" grid_height=\"300px\" depth=\"1\" depth_hover=\"4\" number=\"7\" text_pos=\"middle\" text_size=\"large\"]\r\n\r\n[gap height=\"54px\"]\r\n\r\n[ux_banner height=\"387px\" bg=\"154\" bg_pos=\"49% 7%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"76\" position_x=\"5\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h2 class=\"uppercase\"><strong>never miss a sale again</strong></h2>\r\n<p class=\"lead\">Sign up for our Newsletter</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts depth=\"1\" depth_hover=\"4\" image_height=\"68%\"]','Sale Countdown','','inherit','closed','closed','','179-revision-v1','','','2020-10-24 13:14:47','2020-10-24 13:14:47','',179,'http://www.thedragonhouse.co.za/179-revision-v1/',0,'revision','',0),(247,1,'2020-10-24 13:14:48','2020-10-24 13:14:48','[ux_banner height=\"100%\" bg=\"154\" bg_color=\"#FFF\"]\r\n\r\n[text_box text_color=\"dark\" width=\"61\" width__sm=\"85\" animate=\"fadeInUp\"]\r\n\r\n<h2><span style=\"font-size: 170%;\"><strong>Go Explore</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[divider]\r\n\r\n[search]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section label=\"Simple Light\" bg_color=\"rgb(245, 245, 245)\" padding=\"27px\" border=\"1px 0px 0px 0px\" border_color=\"rgb(235, 235, 235)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box margin=\"px px px px\"]\r\n\r\n<h3>Explore Things</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Book Events</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Find a hotel</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Thing to do\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" cat=\"114\"]\r\n\r\n[title style=\"center\" text=\"Go Explore\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"70\" width__sm=\"100\" scale=\"187\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Find a Beach</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Explore THe CITY</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>EXPLORE OUTDOORS</strong></h3>\r\n<p> </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>TAILORED SUITES</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"97\"]\r\n\r\n<h3 class=\"uppercase\"><strong>ENJOY A DRINK</strong></h3>\r\n<p> </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[gap]\r\n\r\n[ux_banner height=\"400px\" bg=\"154\" bg_overlay=\"rgba(255, 255, 255, 0.49)\" bg_pos=\"26% 17%\"]\r\n\r\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>List your Company</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Apply Now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Latest From Blog\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" show_date=\"text\" excerpt=\"false\" comments=\"false\" image_height=\"293px\" image_hover=\"zoom\" text_align=\"left\"]\r\n\r\n[title style=\"center\" text=\"Follow on Instagram\" icon=\"icon-instagram\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed type=\"slider\" width=\"full-width\" columns=\"6\"]','Explore','','inherit','closed','closed','','180-revision-v1','','','2020-10-24 13:14:48','2020-10-24 13:14:48','',180,'http://www.thedragonhouse.co.za/180-revision-v1/',0,'revision','',0),(248,1,'2020-10-24 13:14:49','2020-10-24 13:14:49','[ux_banner height=\"261px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"54% 100%\" parallax=\"3\"]\n\n[text_box parallax=\"-4\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Create Powerful Forms</strong></h3>\n<p class=\"lead\">Create Powerful forms with the integrated Contact Form 7 Plugin.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\" mask=\"arrow\" padding=\"45px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Simple Contact Form\" size=\"undefined\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Simple Center\" bg_color=\"rgb(0, 0, 0)\" dark=\"true\" mask=\"arrow\" padding=\"60px\" height=\"300px\" border_color=\"rgb(235, 235, 235)\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Contact Form Flat\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Forms','','inherit','closed','closed','','181-revision-v1','','','2020-10-24 13:14:49','2020-10-24 13:14:49','',181,'http://www.thedragonhouse.co.za/181-revision-v1/',0,'revision','',0),(249,1,'2020-10-24 13:14:49','2020-10-24 13:14:49','[ux_banner height=\"377px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"60% 22%\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>PRICE TABLE ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap]\r\n\r\n[title text=\"3 Column price table with text on left\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\" padding=\"0 20px 0 0\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\" color=\"dark\" bg_color=\"rgb(122, 44, 205)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" color=\"dark\" bg_color=\"rgba(0, 0, 0, 0.99)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\" color=\"dark\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" enabled=\"false\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Disabled\" enabled=\"false\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"underline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"#f1f1f1\" bg_color=\"rgb(243, 243, 243)\" margin=\"-1px\"]\r\n\r\n[title text=\"3 Column price table inside a background\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\" radius=\"10\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"shade\" size=\"larger\" radius=\"10\" depth=\"4\" depth_hover=\"5\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" padding=\"0 0 0 20px\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row style=\"collapse\"]\r\n\r\n[col]\r\n\r\n[title style=\"center\" text=\"4 Column collapsed\"]\r\n\r\n[gap]\r\n\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section bg=\"154\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(255, 255, 255, 0.5)\" parallax=\"3\" padding=\"49px\"]\r\n\r\n[row style=\"small\" depth=\"2\"]\r\n\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Price table','','inherit','closed','closed','','182-revision-v1','','','2020-10-24 13:14:49','2020-10-24 13:14:49','',182,'http://www.thedragonhouse.co.za/182-revision-v1/',0,'revision','',0),(250,1,'2020-10-24 13:14:50','2020-10-24 13:14:50','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.44)\" bg_pos=\"32% 28%\" parallax=\"3\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>SEARCH ELEMENT</strong></h3>\n<p class=\"lead\">Insert a Product Search box anywhere</p>\n[search style=\"flat\" size=\"xlarge\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Default style\"]\n\n[search]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Flat style\"]\n\n[search style=\"flat\"]\n\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"154\" bg_pos=\"58% 16%\"]\n\n[text_box width=\"37\" position_x=\"0\" text_align=\"left\"]\n\n<h3 class=\"uppercase\"><strong>Search box inside a banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[gap height=\"25px\"]\n\n[search size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]','Search box','','inherit','closed','closed','','183-revision-v1','','','2020-10-24 13:14:50','2020-10-24 13:14:50','',183,'http://www.thedragonhouse.co.za/183-revision-v1/',0,'revision','',0),(251,1,'2020-10-24 13:14:51','2020-10-24 13:14:51','[ux_banner height=\"405px\" bg=\"154\" bg_overlay=\"rgba(255, 255, 255, 0.94)\" bg_pos=\"53% 30%\"]\r\n\r\n[text_box text_color=\"dark\"]\r\n\r\n[ux_image id=\"153\" width=\"23\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Instagram element</strong></h3>\r\n<p class=\"lead\">Add beautiful instagram images anywhere on your site</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple Grid\" icon=\"icon-instagram\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]\r\n\r\n[title style=\"center\" text=\"Simple slider\" icon=\"icon-instagram\" margin_top=\"32px\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" slider_nav_position=\"outside\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider Black and white\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" image_hover=\"color\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]','Instagram feed','','inherit','closed','closed','','184-revision-v1','','','2020-10-24 13:14:51','2020-10-24 13:14:51','',184,'http://www.thedragonhouse.co.za/184-revision-v1/',0,'revision','',0),(252,1,'2020-10-24 13:14:52','2020-10-24 13:14:52','[ux_banner height=\"338px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.41)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Accordion element</strong></h3>\r\n<p class=\"lead\">Create beautiful accordion sections. You can add any element to the accordion panels.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple accordion\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[accordion]\r\n\r\n[accordion-item title=\"Accordion Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 1 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 2 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add any element to accordion\"]\r\n\r\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\"]\r\n\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n\r\n[/row]','Accordion','','inherit','closed','closed','','185-revision-v1','','','2020-10-24 13:14:52','2020-10-24 13:14:52','',185,'http://www.thedragonhouse.co.za/185-revision-v1/',0,'revision','',0),(253,1,'2020-10-24 13:14:53','2020-10-24 13:14:53','[ux_banner height=\"375px\" bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\"]\r\n\r\n[text_box width=\"51\"]\r\n\r\n<h3 class=\"uppercase\"><strong>LOGO ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Normal logos\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\"]\r\n\r\n[logo img=\"153\"]\r\n\r\n[logo img=\"153\"]\r\n\r\n[logo img=\"153\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Dashed Grid\" margin_top=\"19px\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Slider\" margin_top=\"57px\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Full width slider\" margin_top=\"57px\"]\r\n\r\n[ux_slider bg_color=\"rgb(247, 247, 247)\" infinitive=\"false\" freescroll=\"true\" hide_nav=\"true\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n[logo img=\"153\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]','Logo','','inherit','closed','closed','','186-revision-v1','','','2020-10-24 13:14:53','2020-10-24 13:14:53','',186,'http://www.thedragonhouse.co.za/186-revision-v1/',0,'revision','',0),(254,1,'2020-10-24 13:14:55','2020-10-24 13:14:55','[ux_banner height=\"364px\" bg=\"154\" bg_overlay=\"rgba(255, 255, 255, 0.87)\" bg_pos=\"80% 19%\" parallax=\"2\"]\n\n[text_box text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Portfolio Element</strong></h3>\n<p>Showcase work or other elements</p>\n[divider width=\"67px\" height=\"5px\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple with Filtering\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"slide\"]\n\n[title style=\"center\" text=\"Ouline Filter style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"blur\" text_pos=\"middle\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can choose between many differnt filter navigation style and align them to left or right.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Slider Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"shade\" filter_nav=\"outline\" orderby=\"name\" grid=\"3\" columns=\"5\" image_hover=\"zoom\" image_hover_alt=\"grayscale\"]\n\n[title style=\"center\" text=\"Grid Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" offset=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[title style=\"center\" text=\"Collapsed Full width Grid\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" width=\"full-width\" col_spacing=\"collapse\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Choose between 14 differnt premade grid layouts.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Open in a ligtbox\"]\n\n[ux_portfolio lightbox=\"true\"]','Portfolio','','inherit','closed','closed','','187-revision-v1','','','2020-10-24 13:14:55','2020-10-24 13:14:55','',187,'http://www.thedragonhouse.co.za/187-revision-v1/',0,'revision','',0),(255,1,'2020-10-24 13:14:56','2020-10-24 13:14:56','[ux_banner height=\"496px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"52% 2%\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Pages Element</strong></h3>\r\n<p class=\"lead\">Display a list of sub pages of a selected page in a beautiful way. Very useful if you need to link to sub pages from a parent page.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Default Style\"]\r\n\r\n[ux_pages parent=\"3021\" depth=\"1\" text_align=\"center\" text_padding=\"10px 10px 10px 10px\"]','Pages','','inherit','closed','closed','','188-revision-v1','','','2020-10-24 13:14:56','2020-10-24 13:14:56','',188,'http://www.thedragonhouse.co.za/188-revision-v1/',0,'revision','',0),(256,1,'2020-10-24 13:14:56','2020-10-24 13:14:56','[scroll_to title=\"Welcome Banner\" link=\"welcome\"]\n\n[ux_banner height=\"100%\" bg=\"154\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60\" position_y=\"20\"]\n\n<h1 class=\"lead\"><strong>Scroll To</strong> Element</h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another banner\" link=\"another_banner\"]\n\n[ux_banner height=\"100%\" bg=\"154\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"50\" width__sm=\"60\" animate=\"fadeInRight\" position_x=\"0\" position_y=\"40\" text_align=\"left\"]\n\n<h1 class=\"lead\"><strong>Another Banner</strong></h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another Scroll To banner\" link=\"another_banner_2\"]\n\n[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width=\"52\" width__sm=\"60\" animate=\"fadeInUp\" parallax=\"3\"]\n\n<h2><span style=\"font-size: 200%;\">Another Banner</span></h2>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Signup for Newsletter\" link=\"newsletter\"]\n\n[ux_banner height=\"100%\" bg=\"154\" bg_color=\"rgb(43, 7, 7)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\"]\n\n[text_box width=\"74\" width__sm=\"84\" scale=\"120\" scale__sm=\"101\" parallax=\"2\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n(insert contact form here)\n\n\n[/text_box]\n\n[/ux_banner]','Scroll To','','inherit','closed','closed','','189-revision-v1','','','2020-10-24 13:14:56','2020-10-24 13:14:56','',189,'http://www.thedragonhouse.co.za/189-revision-v1/',0,'revision','',0),(257,1,'2020-10-24 13:14:57','2020-10-24 13:14:57','[ux_banner height=\"444px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.27)\"]\n\n[text_box]\n\n<h1 class=\"uppercase\"><strong>COUNT DOWN ELEMENT</strong></h1>\n<p class=\"lead\">Add beautiful count downs anywhere on the site.</p>\n[ux_countdown size=\"300\" bg_color=\"rgba(0, 0, 0, 0.09)\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Primary Color\"]\n\n[ux_countdown size=\"198\" color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Dark Color\"]\n\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Light Color\"]\n\n[ux_countdown size=\"200%\" color=\"light\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[ux_banner height=\"600px\" bg=\"154\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\" animate=\"fadeIn\" position_x=\"10\"]\n\n<h3 class=\"uppercase\">A Countdown Inside A Banner</h3>\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap]\n\n\n[/col]\n[col span=\"6\" align=\"center\"]\n\n[title style=\"center\" text=\"Countdown as text\"]\n\n[ux_countdown style=\"text\" size=\"91\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"6\"]\n\n[title style=\"center\" text=\"Countdown as Clock\"]\n\n[ux_countdown color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]','Countdown','','inherit','closed','closed','','190-revision-v1','','','2020-10-24 13:14:57','2020-10-24 13:14:57','',190,'http://www.thedragonhouse.co.za/190-revision-v1/',0,'revision','',0),(258,1,'2020-10-24 13:14:57','2020-10-24 13:14:57','[ux_slider]\n\n[ux_banner height=\"637px\" bg=\"154\" bg_size=\"original\" bg_pos=\"62% 60%\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"154\" bg_pos=\"62% 68%\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"153\" pos=\"center\" title=\"Company Feature 1\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"153\" pos=\"center\" title=\"Company Feature 2\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"153\" pos=\"center\" title=\"Company Feature 3\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"circle\" columns=\"2\" depth=\"1\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\" icon_pos=\"left\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]','Corporate','','inherit','closed','closed','','191-revision-v1','','','2020-10-24 13:14:57','2020-10-24 13:14:57','',191,'http://www.thedragonhouse.co.za/191-revision-v1/',0,'revision','',0),(259,1,'2020-10-24 13:14:57','2020-10-24 13:14:57','[ux_slider bg_color=\"rgb(0, 0, 0)\"]\r\n\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"154\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInUp\" parallax=\"2\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Nothing is Impossible</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"154\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"2\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"154\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"3\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[section bg_color=\"rgb(27, 27, 27)\" dark=\"true\" padding=\"60px\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>New products added everyday</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Featured Products\" size=\"undefined\"]\r\n\r\n[ux_products slider_nav_style=\"circle\"]\r\n\r\n[title style=\"center\" text=\"Browse\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" image_height=\"113%\" image_overlay=\"rgba(0, 0, 0, 0.16)\" text_pos=\"middle\"]\r\n\r\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" badge_style=\"square\" image_height=\"300px\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"420px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_instagram_feed username=\"surfer_magazine\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Sport Shop','','inherit','closed','closed','','192-revision-v1','','','2020-10-24 13:14:57','2020-10-24 13:14:57','',192,'http://www.thedragonhouse.co.za/192-revision-v1/',0,'revision','',0),(260,1,'2020-10-24 13:14:58','2020-10-24 13:14:58','[section bg_color=\"rgb(237, 239, 241)\" effect=\"snow\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[ux_banner_grid height=\"617\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"154\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\" position_y=\"80\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"154\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\" position_y=\"10\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"42\" position_x=\"10\" position_y=\"80\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n[ux_countdown size=\"268\" bg_color=\"rgba(0, 0, 0, 0.1)\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row col_style=\"divided\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Free Shipping on orders above 99$</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Give a Gift to a Friend</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed dia.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"153\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Loved by our Customers</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Shop Now\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" depth=\"1\" show_count=\"0\" image_overlay=\"rgba(0, 0, 0, 0.08)\" image_hover=\"zoom\" text_pos=\"middle\" text_size=\"small\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Weekly Featured Products\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"normal\" columns=\"5\" depth=\"1\" show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Cute Shop','','inherit','closed','closed','','193-revision-v1','','','2020-10-24 13:14:58','2020-10-24 13:14:58','',193,'http://www.thedragonhouse.co.za/193-revision-v1/',0,'revision','',0),(261,1,'2020-10-24 13:14:59','2020-10-24 13:14:59','[ux_banner height=\"562px\" height__sm=\"368px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"81\"]\n\n<h2 class=\"uppercase\">Powerful Theme needs powerul images</h2>\n<p class=\"lead\">Responsive Images you can insert anywhere. You can also them into a slider.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h1 class=\"lead\">Beautiful Images with Beautiful Captions</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" image_size=\"large\" lightbox=\"true\" caption=\"true\" image_overlay=\"rgba(0, 0, 0, 0.16)\" image_hover=\"zoom-long\" animate=\"fadeInUp\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Image Overlay Styles\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"glow\"]\n\n<p>Glow</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"color\" animate=\"fadeInLeft\"]\n\n<p>Add Color</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"grayscale\" animate=\"fadeInLeft\"]\n\n<p>Grayscale</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"fade-in\" animate=\"fadeInLeft\"]\n\n<p>Fade In</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"zoom-fade\" animate=\"fadeInLeft\"]\n\n<p>Zoom Fade</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-add\" animate=\"fadeInLeft\"]\n\n<p>Add Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-remove\" animate=\"fadeInLeft\"]\n\n<p>Remove Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" image_hover=\"blur\" animate=\"fadeInLeft\"]\n\n<p>Blur</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with video\"]\n\n[ux_image id=\"153\" animate=\"fadeInLeft\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n<p class=\"lead\">Add a <strong>Youtube or Vimeo</strong> link to Image link tag to automatically get a play icon and a Video Lightbox on Images.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image drop shadow\"]\n\n[ux_image id=\"153\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n<p class=\"lead\">Add cool drop shadows to your images to make them pop out on hover.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Add Images to any sliders\" size=\"undefined\"]\n\n[ux_slider style=\"container\" slide_width=\"700px\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_image id=\"153\" height=\"75%\" image_hover=\"overlay-remove\" depth_hover=\"2\"]\n\n[ux_image id=\"153\" height=\"75%\" image_hover=\"overlay-remove\" depth=\"3\"]\n\n[ux_image id=\"153\" height=\"75%\" image_hover=\"overlay-remove\"]\n\n[ux_image id=\"153\" height=\"75%\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with reverse parallax\"]\n\n[ux_image id=\"153\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"-1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with PArallax\"]\n\n[ux_image id=\"153\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Images with lightbox\" size=\"undefined\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"153\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span__sm=\"12\" align=\"center\"]\n\n[title style=\"center\" text=\"Images with Caption\" size=\"undefined\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"153\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"153\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"153\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]','Images','','inherit','closed','closed','','194-revision-v1','','','2020-10-24 13:14:59','2020-10-24 13:14:59','',194,'http://www.thedragonhouse.co.za/194-revision-v1/',0,'revision','',0),(262,1,'2020-10-24 13:15:00','2020-10-24 13:15:00','[ux_banner height=\"446px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"58% 26%\"]\n\n[text_box width=\"100\" width__sm=\"75\" parallax=\"-1\"]\n\n<h6>Flatsome Grid System</h6>\n<h1>Responsive Rows and Columns</h1>\n<p class=\"lead\">Create Amazing layouts by using Flatsome Row and Column System powered by<strong> Flexbox</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple 4-column row\"]\n\n[row padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(255, 0, 211, 0.96)\" color=\"light\" depth_hover=\"5\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Vertical Centered Row\"]\n\n[row v_align=\"middle\" padding=\"30px\"]\n\n[col span=\"6\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bottom Align Row\"]\n\n[row v_align=\"bottom\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Equal aligned row\"]\n\n[row v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Rows With Drop shadow\"]\n\n[row padding=\"30px\" depth=\"2\" depth_hover=\"3\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<p><strong>You can set Column Depth for All columns or per column.</strong></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Divided row\"]\n\n[row style=\"large\" col_style=\"divided\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Dashed Lined Row\" margin_top=\"23px\" size=\"undefined\"]\n\n[row col_style=\"dashed\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Solid Lined Row\" margin_top=\"25px\" size=\"undefined\"]\n\n[row col_style=\"solid\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Custom Background on a Column\" margin_top=\"28px\" size=\"undefined\"]\n\n[row padding=\"30px\"]\n\n[col span=\"5\" span__sm=\"6\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(38, 65, 116)\" color=\"light\" depth=\"2\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Full Width Row with Backgrounds\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(0, 0, 0)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(153, 120, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(120, 154, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Nested Rows\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"8\" span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(255, 255, 255)\" depth=\"3\" depth_hover=\"5\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(0, 0, 0)\"]\n\n[row style=\"small\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" padding=\"20px\" bg_color=\"rgb(255, 255, 255)\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row col_style=\"solid\"]\n\n[col span=\"4\" span__sm=\"6\" parallax=\"1\"]\n\n<h3>Parallax Column</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\" parallax=\"2\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" parallax=\"3\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row h_align=\"center\"]\n\n[col span=\"7\" span__sm=\"10\" align=\"center\"]\n\n<h3>A Centered Columns Row</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Animated Columns\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n<h3>Fade In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInDown\"]\n\n<h3>Fade In Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInLeft\"]\n\n<h3>Fade In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInRight\"]\n\n<h3>Fade In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceIn\"]\n\n<h3>Bounce In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInUp\"]\n\n<h3>Bounce In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInDown\"]\n\n<h3>Bounce In Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInLeft\"]\n\n<h3>Bounce In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInRight\"]\n\n<h3>Bounce In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\" animate=\"flipInY\"]\n\n<h3>Flip In Y</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"flipInX\"]\n\n<h3>Flip In X</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"blurIn\"]\n\n<h3>Blur In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]','Rows / Columns','','inherit','closed','closed','','195-revision-v1','','','2020-10-24 13:15:00','2020-10-24 13:15:00','',195,'http://www.thedragonhouse.co.za/195-revision-v1/',0,'revision','',0),(263,1,'2020-10-24 13:15:01','2020-10-24 13:15:01','[ux_banner height=\"400px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.66)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Text Elements</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[title style=\"center\" text=\"Typography\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headline h1</h1>\n<h2 class=\"uppercase\">headline h2</h2>\n<h3 class=\"uppercase\">headline h3</h3>\n<h4 class=\"uppercase\">headline H4</h4>\n<h5 class=\"uppercase\">headline H5</h5>\n<h6 class=\"uppercase\">headline H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULT COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>Bold Text.</strong> sit amet, consectetuer <em>italic text </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span> magna aliquam erat volutpat. <del>Strike throught</del>. ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Default font</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead alt-font\"><b>Alternative Font</b>.</h2>\n<p class=\"lead alt-font\">Dolor sit amet, consectetuer <strong>adipiscing</strong> elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Thin text</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead uppercase\">UPPERCASE</h2>\n<p class=\"lead uppercase\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This is a <span class=\"fancy-underline\">Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h6>Flatsome Tip</h6>\n<h2>You can find many text options in the \"Format\" dropdown in text editor.</h2>\n<p class=\"lead\">You see the changes live if you use the Page Builder</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"3\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgb(34, 34, 34)\" dark=\"true\" padding=\"60px\"]\n\n[title style=\"center\" text=\"Typography on Dark background\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headline h1</h1>\n<h2 class=\"uppercase\">headline h2</h2>\n<h3 class=\"uppercase\">headline h3</h3>\n<h4 class=\"uppercase\">headline H4</h4>\n<h5 class=\"uppercase\">headline H5</h5>\n<h6 class=\"uppercase\">headline H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULT COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>Bold Text.</strong> sit amet, consectetuer <em>italic text </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span> magna aliquam erat volutpat. <del>Strike throught</del>. ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"7\"]\n\n<h2 class=\"lead\">This is a<span class=\"fancy-underline\"> Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"5\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"60px\"]\n\n[title style=\"center\" text=\"Quote\"]\n\n[row]\n\n[col]\n\n<blockquote>\n<p class=\"lead\"><strong>Quote</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n</blockquote>\n<p class=\"lead\">Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa. Horizontal Line:</p>\n[title style=\"center\" text=\"Lists\"]\n\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li>Simple List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ol>\n<li>Numbered List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ol>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-checkmark\">Checkmark list</li>\n<li class=\"bullet-checkmark\">List Item 2</li>\n<li class=\"bullet-checkmark\">List item 3</li>\n<li class=\"bullet-checkmark\">List Item 4</li>\n<li class=\"bullet-checkmark\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-star\">Star list</li>\n<li class=\"bullet-star\">List Item 2</li>\n<li class=\"bullet-star\">List item 3</li>\n<li class=\"bullet-star\">List Item 4</li>\n<li class=\"bullet-star\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-arrow\">Arrow List</li>\n<li class=\"bullet-arrow\">List Item 2</li>\n<li class=\"bullet-arrow\">List item 3</li>\n<li class=\"bullet-arrow\">List Item 4</li>\n<li class=\"bullet-arrow\">List Item 5</li>\n</ul>\n\n[/col]\n\n[/row]\n\n[/section]','Typography','','inherit','closed','closed','','196-revision-v1','','','2020-10-24 13:15:01','2020-10-24 13:15:01','',196,'http://www.thedragonhouse.co.za/196-revision-v1/',0,'revision','',0),(264,1,'2020-10-24 13:15:04','2020-10-24 13:15:04','[ux_slider]\n\n[ux_banner height=\"700px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.25)\"]\n\n[text_box width=\"51\" animate=\"fadeInLeft\" text_depth=\"1\"]\n\n<h2>Create Amazing Banners with Drag and Drop</h2>\n[divider]\n\n[button text=\"A button\" color=\"success\" depth=\"3\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"700px\" bg=\"154\"]\n\n[text_box width=\"46\" animate=\"fadeInRight\" parallax=\"1\" position_x=\"5\"]\n\n<h2>Lorem ipsum dolor sit amet</h2>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Buy now\" color=\"white\"]\n\n[button text=\"Learn more\" color=\"white\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\"]\n\n[col span=\"7\"]\n\n[ux_banner height=\"600px\" bg=\"154\" bg_pos=\"44% 39%\"]\n\n[text_box width=\"63\" width__sm=\"78\" padding=\"39px\" position_x=\"5\" position_x__sm=\"50\" text_color=\"dark\" bg=\"rgba(255, 255, 255, 0.85)\" depth=\"2\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Simple Link\" style=\"link\" icon=\"icon-play\"]\n\n[button text=\"Simple Button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h2 class=\"lead uppercase\">Drag And Drop Banner System</h2>\n<p class=\"lead\"><span style=\"font-size: 115%;\">Flatsome <strong>Banners</strong> is the heart of Flatsome. Our Banner System let you create beautiful <strong>responsive</strong> banners with drag and drop.</span></p>\n<p class=\"lead\"> </p>\n[ux_image id=\"153\"]\n\n\n[/col]\n[col span=\"14\"]\n\n[ux_banner height=\"56.25%\" height__sm=\"50%\" bg=\"154\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\" position_x=\"90\"]\n\n<h3>Small Title</h3>\n<p class=\"lead\">You can place a text box wherever you want on a Banner</p>\n[button text=\"Click me!\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h2>Banner Focus Point<b>™</b></h2>\n<p class=\"lead\">Set a focus point on the banner and the image will adjust to mobile a tablet screens. Perfect for resposnive Websites.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" image_size=\"original\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Banner Hover effects\"]\n\n[row]\n\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\"]\n\n<h3>Glow</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom-fade\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom Fade</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"blur\"]\n\n[text_box width=\"36\"]\n\n<h3>Blur</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-in\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade In</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-out\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade Out</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"color\"]\n\n[text_box width=\"36\"]\n\n<h3>Add Color</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"grayscale\"]\n\n[text_box width=\"36\"]\n\n<h3>Grayscale</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can also<strong> combine</strong> hover effects to create amazing hover effects</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\" border=\"3px 3px 3px 3px\" border_margin=\"10px 10px 10px 10px\" border_hover=\"zoom\"]\n\n[text_box width=\"51\"]\n\n<h3><strong>Add animated borders</strong></h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"154\" parallax=\"2\"]\n\n[text_box width=\"41\"]\n\n<h2 class=\"uppercase\">BACKGROUND VIDEO</h2>\n\n[/text_box]\n\n[/ux_banner]','Banners','','inherit','closed','closed','','197-revision-v1','','','2020-10-24 13:15:04','2020-10-24 13:15:04','',197,'http://www.thedragonhouse.co.za/197-revision-v1/',0,'revision','',0),(265,1,'2020-10-24 13:15:05','2020-10-24 13:15:05','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.42)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>IMAGE BOX ELEMENT</strong></h3>\r\n<p class=\"lead\">Create amazing image boxes with unlimited style options.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section]\r\n\r\n[row]\r\n\r\n[col span=\"4\"]\r\n\r\n[ux_image_box img=\"153\"]\r\n\r\n<h4>Simple Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"153\"]\r\n\r\n<h4>Bounce Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"badge\" img=\"153\"]\r\n\r\n<h4>Badge Style</h4>\r\n<p>You can add shortcodes here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"153\"]\r\n\r\n<h2>Overlay Style</h2>\r\n<p class=\"lead\">Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"label\" img=\"153\"]\r\n\r\n<h4>Label Style</h4>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"153\"]\r\n\r\n<h4>Shade Style</h4>\r\n<p class=\"lead\">Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"push\" img=\"153\" image_height=\"90%\" text_hover=\"bounce\"]\r\n\r\n<h2>Push Style</h2>\r\n<p>Add any elements here..</p>\r\n[divider]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"8\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[ux_image_box style=\"vertical\" img=\"153\" image_width=\"48\"]\r\n\r\n<h2>Vertical Style Boxed</h2>\r\n<p class=\"lead\">Add any elements here..</p>\r\n[button text=\"A button\" style=\"secondary alt-button\" radius=\"10\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section]\r\n\r\n[row]\r\n\r\n[col align=\"center\"]\r\n\r\n<h2>Create any kind of Image box by using the options in the Page Builder.</h2>\r\n<p class=\"lead\">We have created many examples here. Mix and Match effects to create your perfect Image Box</p>\r\n\r\n[/col]\r\n[col span=\"4\" depth=\"1\"]\r\n\r\n[ux_image_box img=\"153\" image_height=\"100%\"]\r\n\r\n<h4>Simple Centered Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"153\" image_height=\"100%\" depth=\"1\" text_bg=\"rgb(66, 66, 66)\" text_color=\"dark\"]\r\n\r\n<h4>Bounce Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"153\" image_height=\"125%\" image_hover=\"blur\" text_pos=\"middle\" text_size=\"small\" text_hover=\"zoom-in\"]\r\n\r\n<h2>Overlay Style With Blur and Zoom</h2>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"153\" image_height=\"100%\"]\r\n\r\n<h4>Circle with Blur In Effect</h4>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"153\" image_height=\"116%\"]\r\n\r\n<h4>Simple Shade Style</h4>\r\n<p class=\"lead\">A beautiful box.</p>\r\n[button text=\"Quick View\" style=\"white\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"153\" image_height=\"100%\" image_radius=\"100\" image_hover=\"zoom\" text_pos=\"middle\" text_hover=\"bounce\"]\r\n\r\n<h3 class=\"uppercase\">Circle Image</h3>\r\n<p class=\"lead\">Create this by adding radius 100% to the image.</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Image Box','','inherit','closed','closed','','198-revision-v1','','','2020-10-24 13:15:05','2020-10-24 13:15:05','',198,'http://www.thedragonhouse.co.za/198-revision-v1/',0,'revision','',0),(266,1,'2020-10-24 13:15:05','2020-10-24 13:15:05','[ux_banner height=\"540px\" bg=\"154\" bg_size=\"original\" bg_overlay__sm=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"35% 23%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"80\" animate=\"fadeInLeft\" position_x=\"95\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"alt-font\">Fancy Top Title</h3>\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"540px\" bg=\"154\" bg_color=\"rgb(113, 117, 186)\" bg_pos=\"60% 16%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"82\" position_x=\"10\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Create amazing Parallax effects</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"154\" bg_color=\"rgb(164, 113, 186)\" parallax=\"1\"]\r\n\r\n[text_box width=\"58\" width__sm=\"85\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"154\" bg_color=\"rgb(218, 218, 218)\" parallax=\"1\"]\r\n\r\n[text_box width=\"34\" width__sm=\"74\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>299$</strong></h2>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 185, 179, 0.91)\"]\r\n\r\n[text_box width__sm=\"79\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>SUMMER SALE END SOON</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.06)\"]\r\n\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\r\n\r\n[col span=\"6\" span__sm=\"14\"]\r\n\r\n[ux_banner height=\"94%\" bg=\"154\" bg_pos=\"20% 60%\" parallax=\"2\"]\r\n\r\n[text_box width=\"31\" width__sm=\"61\" scale__sm=\"64\" position_x=\"90\" position_y=\"90\" text_align=\"right\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Add Hotspots to BAnners</strong></h3>\r\n<p class=\"lead\">Hotspots can be added to banners and dragged around. You can have Hotspots that goes to a Product Lightbox or just a simple Tooltip.</p>\r\n\r\n[/text_box]\r\n[ux_hotspot type=\"product\" prod_id=\"416\" text=\"Add product hotspots on banners\" bg_color=\"rgb(47, 166, 162)\" position_x=\"55\" position_y=\"25\"]\r\n\r\n[ux_hotspot text=\"Cool Camera :)\" size=\"large\" bg_color=\"#4DB7B3\" position_x=\"10\" position_y=\"80\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"17\" padding=\"0px 10% 0px 10%\"]\r\n\r\n[title style=\"center\" text=\"Add a Title here\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"450px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" parallax=\"3\"]\r\n\r\n[text_box width__sm=\"93\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Join Our Newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\"]\r\n\r\n[col span=\"6\" span__sm=\"17\" padding=\"10% 10% 0px 10%\" bg_color=\"rgb(240, 240, 240)\"]\r\n\r\n[title style=\"center\" text=\"Featured\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" show=\"featured\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n[ux_banner height=\"99%\" bg=\"154\" bg_pos=\"56% 22%\" parallax=\"2\"]\r\n\r\n[text_box width=\"37\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>29$</strong></h2>\r\n\r\n[/text_box]\r\n[ux_hotspot position_x=\"55\" position_y=\"15\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"simple\" slider_nav_color=\"light\" width=\"full-width\" columns=\"7\"]','Parallax Shop','','inherit','closed','closed','','199-revision-v1','','','2020-10-24 13:15:05','2020-10-24 13:15:05','',199,'http://www.thedragonhouse.co.za/199-revision-v1/',0,'revision','',0),(267,1,'2020-10-24 13:15:06','2020-10-24 13:15:06','','Size Chart','','inherit','closed','closed','','200-revision-v1','','','2020-10-24 13:15:06','2020-10-24 13:15:06','',200,'http://www.thedragonhouse.co.za/200-revision-v1/',0,'revision','',0),(268,1,'2020-10-24 13:15:06','2020-10-24 13:15:06','[section bg_color=\"rgb(241, 241, 241)\" padding=\"8px\" margin=\"15px\"]\r\n\r\n[row style=\"collapse\" col_style=\"dashed\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\" align=\"center\"]\r\n\r\n[featured_box img=\"153\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Delivery</strong> World Wide* <a href=\"#\">Learn more</a></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"153\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\">Loved by our Customers. <strong>5000+</strong> Reviews</span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"153\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Returns</strong> and <strong>Free Shipping</strong></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\r\n\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\" text_padding=\"20px 20px 20px 20px\"]\r\n\r\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[gap height=\"50px\"]\r\n\r\n[ux_banner height=\"399px\" bg=\"154\" bg_size=\"large\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\"]\r\n\r\n[text_box width=\"58\" width__sm=\"80\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\r\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\r\n\r\n[button text=\"Browse now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap height=\"44px\"]\r\n\r\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]','Mega Shop','','inherit','closed','closed','','201-revision-v1','','','2020-10-24 13:15:06','2020-10-24 13:15:06','',201,'http://www.thedragonhouse.co.za/201-revision-v1/',0,'revision','',0),(269,1,'2020-10-24 13:15:07','2020-10-24 13:15:07','Coming soon...','Booking','','inherit','closed','closed','','202-revision-v1','','','2020-10-24 13:15:07','2020-10-24 13:15:07','',202,'http://www.thedragonhouse.co.za/202-revision-v1/',0,'revision','',0),(270,1,'2020-10-24 13:15:08','2020-10-24 13:15:08','Coming soon...','Lifestyle','','inherit','closed','closed','','203-revision-v1','','','2020-10-24 13:15:08','2020-10-24 13:15:08','',203,'http://www.thedragonhouse.co.za/203-revision-v1/',0,'revision','',0),(271,1,'2020-10-24 13:15:09','2020-10-24 13:15:09','[ux_banner height=\"100%\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" bg_pos=\"49% 43%\" parallax=\"4\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"59\" width__sm=\"100\" scale__sm=\"131\" animate=\"fadeInUp\" parallax=\"-3\" text_depth=\"1\"]\r\n\r\n<h1 class=\"uppercase\"><strong>WE\'re a creative Agency</strong></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n[video_button size=\"130\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.47)\" bg_pos=\"34% 46%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"10\" position_y=\"70\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Browse Portfolio\" style=\"outline\" size=\"larger\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Portfolio\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Our Clients\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section label=\"Media Right\" bg_color=\"rgb(207, 207, 207)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[row style=\"large\" h_align=\"center\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\">Contact Us</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\r\n\r\n[accordion auto_open=\"true\"]\r\n\r\n[accordion-item title=\"How long does it takes to we get back to you\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item]\r\n\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add anything here\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Research\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"LAtest NEws\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"push\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" badge_style=\"circle\" image_height=\"180px\"]','Agency','','inherit','closed','closed','','204-revision-v1','','','2020-10-24 13:15:09','2020-10-24 13:15:09','',204,'http://www.thedragonhouse.co.za/204-revision-v1/',0,'revision','',0),(272,1,'2020-10-24 13:15:10','2020-10-24 13:15:10','[section label=\"Top Section\" bg=\"154\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"65% 40%\" parallax=\"3\" dark=\"true\" padding=\"0px\" height=\"424px\"]\n\n[row]\n\n[col span__sm=\"12\" padding=\"5% 6% 0px 10%\" align=\"center\"]\n\n<h1 class=\"uppercase\"><strong>Section Element</strong></h1>\n<p class=\"lead\">Sections are used for creating full width backgrounds with content inside it. You can have Parallax Effects and Background Videos.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 233, 233)\" padding=\"50px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Simple section with a two column row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgb(36, 36, 36)\" dark=\"true\" padding=\"60px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Dark section with a row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Background Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h2>A section with a background video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" dark=\"true\" padding=\"60px\" height=\"50vh\"]\n\n[row style=\"collapse\" h_align=\"center\"]\n\n[col span=\"6\" align=\"center\"]\n\n<h2>A section can have a background image or a background color</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(243, 243, 243)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\"]\n\n<h2>A Section with a Image on the right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"153\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Parallax Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"9\" align=\"center\"]\n\n<h2>A Parallax Background Video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(50, 50, 50)\" dark=\"true\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(243, 243, 243)\" bg_overlay=\"rgba(255, 255, 255, 0.9)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A Section with Image and a background</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"153\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>A Section with a large image left.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" h_align=\"right\"]\n\n[col span=\"6\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>A Section with a large image right.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"153\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" parallax=\"1\" dark=\"true\" padding=\"97px\" height=\"300px\"]\n\n[title text=\"Section With a parallax background\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(255, 255, 255, 0.89)\" bg_pos=\"25% 0%\" parallax=\"1\" padding=\"60px\" height=\"300px\"]\n\n[row style=\"collapse\" width=\"full-width\" h_align=\"center\"]\n\n[col span=\"6\" padding=\"0 10%\" align=\"center\"]\n\n<h2>A product slider inside a section</h2>\n[button text=\"Click me now\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(63, 63, 63)\" dark=\"true\" mask=\"arrow\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"10\"]\n\n<h3>Section With A Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(160, 160, 160)\" dark=\"true\" mask=\"angled\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"154\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(117, 117, 117, 0.44)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"9\"]\n\n<h3>Section with Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"arrow-large\" height=\"365px\"]\n\n[row]\n\n[col]\n\n<h3>Section with a Large Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]','Sections','','inherit','closed','closed','','208-revision-v1','','','2020-10-24 13:15:10','2020-10-24 13:15:10','',208,'http://www.thedragonhouse.co.za/208-revision-v1/',0,'revision','',0),(273,1,'2020-10-24 13:15:12','2020-10-24 13:15:12','[section bg_color=\"rgb(237, 239, 241)\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid Element\" size=\"120\"]\r\n\r\n[ux_banner_grid height=\"600\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"154\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"154\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"69\" width__sm=\"60\" position_y=\"5\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box text_color=\"dark\" width=\"42\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"154\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[row v_align=\"middle\"]\r\n\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">DRAG AND DROP EDITING</h2>\r\n<p class=\"lead\">Creating amazing Banner Grids is incredible easy with the new <strong>UX Builder</strong></p>\r\n\r\n[/col]\r\n[col span=\"7\" span__sm=\"12\"]\r\n\r\n[ux_image id=\"153\" depth=\"3\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"154\" bg_color=\"rgb(28, 28, 28)\" bg_overlay=\"rgba(0, 0, 0, 0.72)\" parallax=\"2\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid With A Background\" size=\"undefined\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything. Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>Woo Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"8\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"61% 30%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Use Banner Grids to Create Portfolio Grids\" margin_top=\"31px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.15)\" bg_pos=\"34% 46%\" hover=\"zoom\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"5\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"center\" text=\"Add Slider to Banner Grids\" margin_top=\"28px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"154\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]','Banner Grids','','inherit','closed','closed','','209-revision-v1','','','2020-10-24 13:15:12','2020-10-24 13:15:12','',209,'http://www.thedragonhouse.co.za/209-revision-v1/',0,'revision','',0),(274,1,'2020-10-24 13:15:13','2020-10-24 13:15:13','[ux_banner height=\"444px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.3)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>LIGHTBOX SHORTCODE</strong></h3>\r\n<p class=\"lead\">Open any content in a lightbox</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[button text=\"Lightbox button\" link=\"#test\"]\r\n\r\n<p><a href=\"#test\">Lightbox link</a></p>\r\n<p>[lightbox id=\"test\" width=\"600px\" padding=\"20px\"]<br />Add lightbox content here...<br />\r\n[/lightbox]\r\n</p>\r\n<pre>[button text=\"Lightbox button\" link=\"<b>#test</b>\"][lightbox id=\"<b>test</b>\" width=\"600px\" padding=\"20px\"]Add lightbox content here...[/lightbox]</pre>\r\n\r\n[/col]\r\n\r\n[/row]','Lightbox','','inherit','closed','closed','','211-revision-v1','','','2020-10-24 13:15:13','2020-10-24 13:15:13','',211,'http://www.thedragonhouse.co.za/211-revision-v1/',0,'revision','',0),(275,1,'2020-10-24 13:15:15','2020-10-24 13:15:15','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(255, 255, 255, 0.61)\" bg_pos=\"41% 71%\" parallax=\"3\"]\r\n\r\n[text_box parallax=\"2\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Message Box Element</strong></h2>\r\n<p class=\"lead\">Create beautiful Call to Action areas.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"center\" text=\"Message Box Element\"]\r\n\r\n[message_box padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"9\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"2\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n[title style=\"center\" text=\"Use to Create Call to Actions areas\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"154\" bg_color=\"rgba(0, 0, 0, 0.62)\" padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"8\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">Use Message Boxes to create Call to action messages</h2>\r\n\r\n[/col_inner]\r\n[col_inner span=\"3\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me now\" color=\"white\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Full Width Message box\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"154\" bg_color=\"rgba(0, 0, 0, 0.75)\" padding=\"27\"]\r\n\r\n[row v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n<h3 class=\"uppercase\">Signup for Newsletter and get <span class=\"fancy-underline\">50% off</span> your next purchase</h3>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"17\" align=\"right\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]','Message box','','inherit','closed','closed','','214-revision-v1','','','2020-10-24 13:15:15','2020-10-24 13:15:15','',214,'http://www.thedragonhouse.co.za/214-revision-v1/',0,'revision','',0),(276,1,'2020-10-24 13:15:16','2020-10-24 13:15:16','[ux_banner height=\"360px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"56% 97%\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60%\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Categories Element</strong></h3>\n<p class=\"lead\">Create beautiful overview of your Shop categories. There is almost unlimited variations, but here are some examples.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col]\n\n[title style=\"center\" text=\"Simple\"]\n\n[ux_product_categories style=\"normal\"]\n\n[title style=\"center\" text=\"Badge style\"]\n\n[ux_product_categories]\n\n[title style=\"center\" text=\"Overlay Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\"]\n\n[title style=\"center\" text=\"Grid style\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"3\" columns=\"3\" animate=\"fadeInLeft\" number=\"4\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" text_pos=\"middle\" text_size=\"large\"]\n\n[title style=\"center\" text=\"Circle Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_height=\"100%\" image_radius=\"100\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"bounce\"]\n\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(51, 51, 51)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Be creative! Mix and match settings\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"13\" col_spacing=\"small\" columns=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\" number=\"5\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" image_hover=\"color\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\"]\n\n\n[/section]','Product Categories','','inherit','closed','closed','','215-revision-v1','','','2020-10-24 13:15:16','2020-10-24 13:15:16','',215,'http://www.thedragonhouse.co.za/215-revision-v1/',0,'revision','',0),(277,1,'2020-10-24 13:15:17','2020-10-24 13:15:17','[ux_banner height=\"451px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.45)\"]\r\n\r\n[text_box width=\"66\" parallax=\"-4\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Product Element</strong></h2>\r\n<p class=\"lead\">List products anywhere in a beautiful style. Choose between Slider, Rows, Grid and Masonry Style. Select products from a custom category or sort by sales, featured items or latest. You can also select custom products.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Simple Sale Slider\"]\r\n\r\n[ux_products orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Products Slider\" icon=\"icon-star\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Best Selling Products\" icon=\"icon-heart\"]\r\n\r\n[ux_products orderby=\"sales\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"circle\" col_spacing=\"normal\" depth=\"1\" depth_hover=\"5\" cat=\"tops\" image_height=\"200%\" image_size=\"medium\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_size=\"large\" text_hover=\"hover-slide\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style 2\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" width=\"full-width\" col_spacing=\"collapse\" columns=\"6\" cat=\"80\" orderby=\"rand\" image_height=\"200%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.58)\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\" text_hover=\"zoom-in\"]\r\n\r\n[title style=\"bold-center\" text=\"Grid Style\" margin_top=\"16px\"]\r\n\r\n[ux_products style=\"shade\" type=\"grid\" grid_height=\"650px\" products=\"4\" orderby=\"sales\" show=\"featured\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_align=\"left\" text_size=\"large\"]\r\n\r\n[title style=\"bold-center\" text=\"Masonery Style\"]\r\n\r\n[ux_products type=\"masonry\" depth=\"1\" depth_hover=\"5\" text_align=\"left\"]\r\n\r\n[title style=\"bold-center\" text=\"Mix and match styles\"]\r\n\r\n[ux_products style=\"overlay\" image_height=\"169%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.67)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\" text_size=\"large\"]','Products','','inherit','closed','closed','','216-revision-v1','','','2020-10-24 13:15:17','2020-10-24 13:15:17','',216,'http://www.thedragonhouse.co.za/216-revision-v1/',0,'revision','',0),(278,1,'2020-10-24 13:15:20','2020-10-24 13:15:20','[ux_banner height=\"329px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.28)\" parallax=\"2\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Share & Follow Icons</strong></h3>\r\n<p>Beautiful Share and Follow Icons that you can insert anywhere with the Page Builder.</p>\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title text=\"Share icons\"]\r\n\r\n[share]\r\n\r\n[title text=\"Follow icons\"]\r\n\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons Fill\"]\r\n\r\n[follow style=\"fill\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons small\"]\r\n\r\n[follow style=\"small\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow icons Larger\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Larger Fill\" size=\"undefined\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Large\" size=\"undefined\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(48, 48, 48)\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Follow icons dark\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[gap height=\"11px\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/section]','Share / follow icons','','inherit','closed','closed','','217-revision-v1','','','2020-10-24 13:15:20','2020-10-24 13:15:20','',217,'http://www.thedragonhouse.co.za/217-revision-v1/',0,'revision','',0),(279,1,'2020-10-24 13:15:21','2020-10-24 13:15:21','[ux_banner height=\"395px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width__sm=\"86\" scale__sm=\"138\"]\n\n<h3 class=\"uppercase\"><strong>TEAM MEMBER ELEMENT</strong></h3>\n<p class=\"lead\">Use this for presenting your team member or staff</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Default Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Color Icon style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Mark Jance\" title=\"CTO / Developer\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bounce Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"bounce\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"bounce\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Push Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"push\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"push\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"push\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Circle\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Grayscale\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[section bg=\"154\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(0, 0, 0, 0.84)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Mix and match styles\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"small\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\" image_hover_alt=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"9\" image_hover=\"glow\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_hover=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"153\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]','Team Member','','inherit','closed','closed','','218-revision-v1','','','2020-10-24 13:15:21','2020-10-24 13:15:21','',218,'http://www.thedragonhouse.co.za/218-revision-v1/',0,'revision','',0),(280,1,'2020-10-24 13:15:22','2020-10-24 13:15:22','[ux_banner height=\"500px\" bg=\"154\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.12)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>ICON BOX ELEMENT</strong></h3>\n<p class=\"lead\">Create simple icon boxes with this element. Upload any SVG icon or image. You can find beautiful SVG icons here: </p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Top Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Top Align with border\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Left Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(140, 188, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(25, 130, 188)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"153\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(188, 69, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]','Icon Box','','inherit','closed','closed','','219-revision-v1','','','2020-10-24 13:15:22','2020-10-24 13:15:22','',219,'http://www.thedragonhouse.co.za/219-revision-v1/',0,'revision','',0),(281,1,'2020-10-24 13:15:23','2020-10-24 13:15:23','[ux_banner height=\"500px\" bg=\"154\" parallax=\"2\"]\r\n\r\n[text_box parallax=\"-2\"]\r\n\r\n<h1>Section Titles</h1>\r\n<p class=\"lead\">Split content with beautiful Section Titles</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col]\r\n\r\n[title text=\"This is a normal title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title with Icon\" icon=\"icon-star\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link and icon\" icon=\"icon-star-o\" size=\"undefined\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold title\" size=\"171\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold\" text=\"This is a bold title with link\" link_text=\"Click here\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold centered title\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n','Titles / Dividers','','inherit','closed','closed','','220-revision-v1','','','2020-10-24 13:15:23','2020-10-24 13:15:23','',220,'http://www.thedragonhouse.co.za/220-revision-v1/',0,'revision','',0),(282,1,'2020-10-24 13:15:26','2020-10-24 13:15:26','[ux_banner height=\"398px\" bg=\"154\" bg_pos=\"66% 25%\" parallax=\"2\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Testemonial element</strong></h3>\n<p class=\"lead\">Tell your customers how happy your clients are</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"With image left\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>This is a FANTASTIC Theme. Do you think that in the next version you could try and have it Multilanguage. Because I have nothing bad to say about this theme. Thank a million!</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"With image on Top\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed Vertical\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Testemonials in a row slider\"]\n\n[ux_slider hide_nav=\"true\" nav_color=\"dark\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n\n[/ux_slider]\n[title style=\"center\" text=\"Testemonials in a slider\"]\n\n[ux_slider]\n\n[ux_banner height=\"378px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9147\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Testimonials','','inherit','closed','closed','','222-revision-v1','','','2020-10-24 13:15:26','2020-10-24 13:15:26','',222,'http://www.thedragonhouse.co.za/222-revision-v1/',0,'revision','',0),(283,1,'2020-10-24 13:15:27','2020-10-24 13:15:27','[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.49)\"]\r\n\r\n[text_box width=\"76\"]\r\n\r\n<h1>Buttons</h1>\r\n<p class=\"lead\">Create beautiful Call to Action buttons with the amazing Button Element</p>\r\n[button text=\"Primary Button\" style=\"shade\" link=\"test?asdf&asdf=asdf&asdf&\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Unlimited Variations</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" radius=\"12\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" icon=\"icon-heart\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\" radius=\"6\" icon=\"icon-heart\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg_color=\"rgb(44, 44, 44)\" dark=\"true\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Buttons on Dark background</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n[button text=\"White outline\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Styles</h3>\r\n<p>Select between many different button styles.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Simple link\" style=\"link\"]\r\n\r\n[button text=\"Underline\" style=\"underline\"]\r\n\r\n[button text=\"Outline\" style=\"outline\" depth=\"2\" depth_hover=\"2\"]\r\n\r\n[button text=\"Normal\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Gloss\" style=\"gloss\" radius=\"99\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Shade\" style=\"shade\" radius=\"7\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Bevel\" style=\"bevel\" radius=\"12\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button with icon</h3>\r\n<p>Choose between many included Flatsome Icons.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Icon Button\" style=\"bevel\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Icon Left\" style=\"outline\" radius=\"6\" icon=\"icon-instagram\"]\r\n\r\n[button text=\"Reveal Left\" style=\"outline\" icon=\"icon-play\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Reveal Right\" icon=\"icon-angle-right\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Large Button\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Large Reveal\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-checkmark\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Simple Button Styles</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\" style=\"link\" icon=\"icon-play\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"link\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"link\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"link\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Radius</h3>\r\n<p>Add custom radius to buttons</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Normal Button\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" size=\"large\" radius=\"99\"]\r\n\r\n[button text=\"Normal Button\" style=\"outline\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" style=\"outline\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Shadow</h3>\r\n<p>Add drop shadow to buttons to make them stand out more.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Large Shadow\" style=\"bevel\" size=\"large\" depth=\"5\" depth_hover=\"4\"]\r\n\r\n[button text=\"Medium Shadow\" style=\"bevel\" size=\"large\" depth=\"3\" depth_hover=\"4\"]\r\n\r\n[button text=\"Small Shadow\" style=\"bevel\" size=\"large\" depth=\"1\" depth_hover=\"2\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Sizes</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"x Small\" size=\"xsmall\"]\r\n\r\n[button text=\"Smaller\" size=\"smaller\"]\r\n\r\n[button text=\"Small\" size=\"small\"]\r\n\r\n[button text=\"Normal\"]\r\n\r\n[button text=\"Large\" size=\"large\"]\r\n\r\n[button text=\"Larger\" size=\"larger\"]\r\n\r\n[button text=\"X LARGE\" size=\"xlarge\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Smart Links</h3>\r\n<p>Add simple text to button links to link to various WordPress and WooCommerce pages.</p>\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n<p>\'<strong>shop</strong>\' : Goes to Shop page</p>\r\n<p>\'<strong>account\'</strong> Goes to My Account Page</p>\r\n<p>\'<strong>checkout\'</strong> Goes to Checkout page</p>\r\n<p>\'<strong>blog\'</strong> Goes to blog page</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>\'<strong>home</strong>\' Goes to homepage</p>\r\n<p><strong>\'wishlist</strong>\' Goes to wishlist page</p>\r\n<p>\'<strong>Page Title</strong>\' Goes to page by Title.</p>\r\n\r\n[/col]\r\n\r\n[/row]','Buttons','','inherit','closed','closed','','223-revision-v1','','','2020-10-24 13:15:27','2020-10-24 13:15:27','',223,'http://www.thedragonhouse.co.za/223-revision-v1/',0,'revision','',0),(284,1,'2020-10-24 13:15:28','2020-10-24 13:15:28','[ux_banner height=\"507px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n[text_box position_y=\"80\"]\n\n<h1 class=\"lead\">About Us</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"153\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"153\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"153\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"153\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]','About','','inherit','closed','closed','','224-revision-v1','','','2020-10-24 13:15:28','2020-10-24 13:15:28','',224,'http://www.thedragonhouse.co.za/224-revision-v1/',0,'revision','',0),(285,1,'2020-10-24 13:15:30','2020-10-24 13:15:30','[map lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgb(255, 255, 255)\" content_width__sm=\"100\" position_x=\"50\" position_x__sm=\"0\" position_y=\"50\" saturation=\"-100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>GOOGLE MAP ELEMENT</strong></h3>\r\n<p class=\"lead\">Add highly customisable Google Maps to any page.</p>\r\n\r\n[/map]\r\n[title style=\"center\" text=\"Examples\" margin_top=\"14px\"]\r\n\r\n[row]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map controls=\"true\"]\r\n\r\n<p><strong>Map With Tools</strong></p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"89\" color=\"#6d5854\"]\r\n\r\n<p>Use any color for your map</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"86\" position_x=\"5\" position_y=\"5\" saturation=\"-100\"]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[map height=\"589px\" height__sm=\"747px\" lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgba(255, 255, 255, 0.85)\" content_width__sm=\"100\" position_x__sm=\"100\" position_y=\"10\" position_y__sm=\"100\" saturation=\"44\"]\r\n\r\n[title text=\"A map with a Form\" icon=\"icon-envelop\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/map]','Map','','inherit','closed','closed','','225-revision-v1','','','2020-10-24 13:15:30','2020-10-24 13:15:30','',225,'http://www.thedragonhouse.co.za/225-revision-v1/',0,'revision','',0),(286,1,'2020-10-24 13:15:31','2020-10-24 13:15:31','[ux_slider hide_nav=\"true\" bullets=\"false\"]\n\n[ux_banner height=\"600px\" bg=\"154\" bg_overlay=\"rgba(19, 6, 6, 0.36)\" bg_pos=\"53% 5%\"]\n\n[text_box width=\"61\" width__sm=\"80\" scale=\"136\" scale__sm=\"154\" position_y=\"75\"]\n\n<h3 class=\"uppercase\"><strong>SLIDER ELEMENT</strong></h3>\n<p class=\"lead\">Create amazing Sliders with our Slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"154\" bg_pos=\"22% 46%\"]\n\n[text_box width=\"40\" width__sm=\"80\" position_y=\"70\"]\n\n<h3>This is a Full Width Slider</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n[button text=\"Click me\" style=\"outline\" radius=\"10\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" slide_effect=\"zoom-in\" bg=\"154\" bg_pos=\"49% 42%\"]\n\n[text_box animate=\"bounceIn\"]\n\n<h3>Add Animations and Slide Effects</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\" h_align=\"center\"]\n\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h3 class=\"uppercase\"><strong>Drag and Drop Editing</strong></h3>\n<p class=\"lead\">Use the UX Builder to Create amazing homepage sliders and ladingpages.</p>\n\n[/col]\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\n\n[ux_image id=\"153\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" size=\"undefined\"]\n\n[ux_slider style=\"container\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Focused Slider Style\" size=\"undefined\"]\n\n[ux_slider style=\"focus\" bg_color=\"rgb(82, 82, 82)\"]\n\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Shadow Slide Style\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" bg_color=\"rgb(238, 238, 238)\"]\n\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Free Scroll Shadow Slider\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" slide_width=\"500px\" bg_color=\"rgb(238, 238, 238)\" freescroll=\"true\"]\n\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"51% 19%\"]\n\n[text_box width=\"76\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"53% 13%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"66\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"56% 11%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"154\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 9%\"]\n\n[text_box width=\"72\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Dark arrows\" size=\"undefined\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(222, 222, 222)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(238, 238, 238)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"light arrows\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(46, 46, 46)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(54, 54, 54)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"always visible arrows\"]\n\n[ux_slider hide_nav=\"true\"]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(229, 191, 191)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(171, 204, 196)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Simple arrows\"]\n\n[ux_slider hide_nav=\"true\" nav_style=\"simple\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav Circle outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_color=\"dark\" bullets=\"false\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]','Sliders','','inherit','closed','closed','','227-revision-v1','','','2020-10-24 13:15:31','2020-10-24 13:15:31','',227,'http://www.thedragonhouse.co.za/227-revision-v1/',0,'revision','',0),(287,1,'2020-10-24 13:15:32','2020-10-24 13:15:32','[section bg=\"154\" bg_color=\"rgb(50, 50, 50)\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" dark=\"true\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">Amazing Blog Posts Element</h1>\n<p class=\"lead\">Display your Blog posts in many different ways.</p>\n<ul>\n<li class=\"bullet-checkmark\">Unlimited Styles and Options</li>\n<li class=\"bullet-checkmark\">Select Custom Posts</li>\n<li class=\"bullet-checkmark\">Slider / Row / Grid and Masonry Style</li>\n</ul>\n\n[/col]\n[col span=\"9\"]\n\n[blog_posts style=\"shade\" type=\"slider-full\" grid=\"2\" slider_nav_style=\"circle\" columns=\"1\" title_size=\"larger\" show_date=\"text\" excerpt=\"false\" show_category=\"label\" comments=\"false\" image_size=\"large\" image_overlay=\"rgba(0, 0, 0, 0.09)\" image_hover=\"overlay-remove\" text_size=\"large\" text_hover=\"bounce\" text_padding=\"10% 0px 10% 0px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[title style=\"center\" text=\"Default Style\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\n\n[title style=\"center\" text=\"Bounce Style\" size=\"undefined\"]\n\n[blog_posts style=\"bounce\" badge_style=\"square\" image_height=\"75%\"]\n\n[title style=\"center\" text=\"Push Style\" margin_top=\"17px\" size=\"undefined\"]\n\n[blog_posts style=\"push\" columns=\"3\" badge_style=\"circle-inside\" image_height=\"75%\"]\n\n\n[/section]\n[section bg_color=\"rgb(62, 62, 62)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Blog posts inside a dark section\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" slider_nav_style=\"simple\" slider_nav_color=\"light\" slider_nav_position=\"outside\" columns=\"3\" image_height=\"56.25%\"]\n\n\n[/section]\n[title style=\"center\" text=\"Vertical Slide Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"2\" image_height=\"89%\" image_width=\"43\"]\n\n[title style=\"center\" text=\"Animated Blog posts in grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" animate=\"fadeInUp\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Overlay Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.17)\" image_hover=\"zoom\"]\n\n[title style=\"center\" text=\"Overlay Grayscale\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" animate=\"fadeInLeft\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.56)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>Select between many different Hover Styles</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Read More button\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" depth=\"2\" readmore=\"Read More\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"shade\" type=\"grid\" columns=\"3\" depth=\"1\" posts=\"4\" title_size=\"larger\" title_style=\"uppercase\" readmore=\"Read More\" badge_style=\"circle-inside\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Masonery Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"masonry\" columns=\"3\" depth=\"2\" image_height=\"180px\"]','Blog Posts','','inherit','closed','closed','','228-revision-v1','','','2020-10-24 13:15:32','2020-10-24 13:15:32','',228,'http://www.thedragonhouse.co.za/228-revision-v1/',0,'revision','',0),(288,1,'2020-10-24 13:15:34','2020-10-24 13:15:34','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[row]\n\n[col span=\"4\"]\n\n<h1>Tabs Element</h1>\n<p>Ad flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. </p>\n\n[/col]\n[col span=\"8\"]\n\n[tabgroup style=\"tabs\"]\n\n[tab title=\"Tab 3 Title\"]\n\n<p> lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 1 Title\"]\n\n<p>Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed..</p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n\n[/section]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs Bottom\" style=\"line-bottom\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Tabs Pills Centered\" style=\"pills\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Outline Tabs Centered\" style=\"outline\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[tabgroup title=\"Line Grow Tabs Center\" style=\"line-grow\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col]\n\n[tabgroup title=\"Vertical Tabs\" type=\"vertical\"]\n\n[tab title=\"Top tab\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee yr.</p>\n\n[/tab]\n[tab title=\"This is tab\"]\n\n<p>Laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"this is another tab\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span__sm=\"12\"]\n\n[tabgroup style=\"outline\" type=\"vertical\"]\n\n[tab title=\"Tab title 1\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 2\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 3\"]\n\n<p>Church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Tabs','','inherit','closed','closed','','229-revision-v1','','','2020-10-24 13:15:34','2020-10-24 13:15:34','',229,'http://www.thedragonhouse.co.za/229-revision-v1/',0,'revision','',0),(289,1,'2016-09-04 15:57:34','2016-09-04 15:57:34','[section bg_color=\"#fff\" class=\"flatsome-features\"]\r\n\r\n[title style=\"center\" text=\"Flatsome Main Features\"]\r\n\r\n[ux_pages style=\"default\" parent=\"2862\" col_spacing=\"small\" image_radius=\"3\" image_overlay=\"rgba(255, 255, 255, 0)\" image_hover=\"zoom\" text_align=\"center\"]\r\n\r\n\r\n[/section]\r\n[section bg_overlay=\"rgb(229, 235, 237)\" border=\"1px 0px 1px 0px\"]\r\n\r\n[row style=\"collapse\" h_align=\"center\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" align=\"center\" animate=\"flipInX\"]\r\n\r\n[button text=\"Buy Flatsome Now\" link=\"http://bit.ly/buy-flatsome\" size=\"large\" radius=\"6\" icon=\"icon-shopping-basket\" icon_reveal=\"true\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Features Overview','','publish','closed','closed','','features-overview','','','2016-09-04 15:57:34','2016-09-04 15:57:34','',0,'http://flatsome.dev/?post_type=blocks&p=9654',0,'blocks','',0),(290,1,'2016-09-03 16:24:28','2016-09-03 16:24:28','[row style=\"small\" h_align=\"center\" class=\"flatsome-demos\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n<h2>Flatsome Theme Demos</h2>\r\n<p class=\"lead\">Flatsome includes many pre-made homepages and settings you can add with a single click. These are just examples. You can mix and match headers, pages, colors and fonts using the Theme Option Panel.</p>\r\n[/col]\r\n\r\n[/row]\r\n\r\n[title style=\"center\" text=\"Shop Demos\"]\r\n\r\n[ux_pages style=\"default\" parent=\"3021\" col_spacing=\"small\" columns=\"3\" depth=\"1\" depth_hover=\"4\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0)\" text_align=\"center\" text_bg=\"rgba(255, 255, 255, 0.63)\" text_padding=\"5px 5px 5px 5px\"]\r\n\r\n[title style=\"center\" text=\"Business Demos\"]\r\n\r\n[ux_pages style=\"default\" parent=\"3025\" col_spacing=\"small\" columns=\"3\" depth=\"1\" depth_hover=\"4\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0)\" text_align=\"center\" text_bg=\"rgba(255, 255, 255, 0.76)\" text_padding=\"5px 5px 5px 5px\"]','Demos','','publish','closed','closed','','demos','','','2016-09-03 16:24:28','2016-09-03 16:24:28','',0,'http://flatsome.dev/?post_type=blocks&p=9439',0,'blocks','',0),(291,1,'2016-08-25 13:42:06','2016-08-25 13:42:06','<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet.</p>\n(insert contact form here)','Footer - Newsletter Signup','','publish','closed','closed','','footer-newsletter-signup','','','2016-08-25 13:42:06','2016-08-25 13:42:06','',0,'http://flatsome.dev/?post_type=blocks&p=8783',0,'blocks','',0),(292,1,'2016-08-25 13:41:28','2016-08-25 13:41:28','<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[follow facebook=\"#\" instagram=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\"]','Footer - About us','','publish','closed','closed','','footer-about-us','','','2016-08-25 13:41:28','2016-08-25 13:41:28','',0,'http://flatsome.dev/?post_type=blocks&p=8781',0,'blocks','',0),(293,1,'2016-08-18 11:43:28','2016-08-18 11:43:28','[ux_slider]\n\n[ux_banner height=\"200px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"69% 3%\"]\n\n[text_box]\n\n<h3>SALE ENDS SOON</h3>\n[ux_countdown]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"67% 29%\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Category top banner</strong></h3>\n<p class=\"lead\">This is a Block and can be edited live in with the Page Builder</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Shop - Category Slider','','publish','closed','closed','','shop-category-slider','','','2016-08-18 11:43:28','2016-08-18 11:43:28','',0,'http://flatsome.dev/?post_type=blocks&p=8635',0,'blocks','',0),(294,1,'2016-08-18 10:42:40','2016-08-18 10:42:40','[ux_banner height=\"319px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.1)\" parallax=\"3\"]\n\n[text_box]\n\n<h1 class=\"uppercase\"><strong>Shop</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismotest. Change or remove this banner easely.</p>\n\n[/text_box]\n\n[/ux_banner]','Shop - Header','','publish','closed','closed','','shop-header','','','2016-08-18 10:42:40','2016-08-18 10:42:40','',0,'http://flatsome.dev/?post_type=blocks&p=8593',0,'blocks','',0),(295,1,'2016-08-18 07:04:50','2016-08-18 07:04:50','[ux_banner height=\"400px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.12)\" bg_pos=\"66% 24%\" parallax=\"2\"]\r\n\r\n[text_box parallax=\"-1\" text_depth=\"1\"]\r\n\r\n<h1 class=\"uppercase\"><strong>our Blog</strong></h1>\r\n<p class=\"lead\">Change This header to anything by using the UX Builder. You can also remove it. It\'s only visible on the blog homepage.</p>\r\n[share]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','Blog Header','','publish','closed','closed','','blog-header','','','2016-08-18 07:04:50','2016-08-18 07:04:50','',0,'http://flatsome.dev/?post_type=blocks&p=8587',0,'blocks','',0),(296,1,'2016-01-25 11:39:27','2016-01-25 11:39:27','[section bg_color=\"rgb(250, 250, 250)\" border=\"2px 0px 1px 0px\"]\r\n\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n<h1 class=\"lead uppercase\">Flatsome Elements</h1>\r\n<p class=\"lead\">Flatsome is more than a theme. It\'s a framework for creating amazing Websites. Here is a collection of our highly customisable elements.</p>\r\n[/col]\r\n[col]\r\n\r\n[ux_pages style=\"default\" parent=\"elements\" col_spacing=\"small\" columns=\"8\" depth=\"1\" depth_hover=\"1\" image_height=\"68%\" image_hover=\"zoom\" text_bg=\"rgb(250, 250, 250)\" text_padding=\"1px 1px 3px 10px\"]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Elements Overview','','publish','closed','closed','','elements-overview','','','2016-01-25 11:39:27','2016-01-25 11:39:27','',0,'http://flatsome.dev/?post_type=blocks&p=3764',0,'blocks','',0),(317,1,'2020-10-24 14:41:58','2020-10-24 14:41:58','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original-3','','','2020-10-24 14:41:58','2020-10-24 14:41:58','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Singles-001.jpg',0,'attachment','image/jpeg',0),(318,1,'2020-10-24 14:46:47','2020-10-24 14:46:47','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"7% 57%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_products show=\"featured\"]\n\n[title style=\"center\" text=\"Featured Categories\" size=\"undefined\"]\n\n[ux_product_categories]\n\n[gap height=\"36px\"]\n\n[ux_banner height=\"366px\" bg=\"3834\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\n\n[text_box width=\"49\" width__sm=\"78\" position_x=\"10\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\n[contact-form-7 id=\"7042\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\n\n[blog_posts badge_style=\"square\" image_height=\"75%\" image_hover=\"zoom\"]\n\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\n\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]\n\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-24 14:46:47','2020-10-24 14:46:47','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(320,1,'2020-10-24 15:12:10','2020-10-24 15:12:10','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original-4','','','2020-10-24 15:12:10','2020-10-24 15:12:10','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2014/08/Ladies-001.jpg',0,'attachment','image/jpeg',0),(324,1,'2020-10-24 15:26:42','2020-10-24 15:26:42','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original-5','','','2020-10-24 15:26:42','2020-10-24 15:26:42','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Singles-007.jpg',0,'attachment','image/jpeg',0),(325,1,'2020-10-24 15:26:58','2020-10-24 15:26:58','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original-6','','','2020-10-24 15:26:58','2020-10-24 15:26:58','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Singles-004.jpg',0,'attachment','image/jpeg',0),(326,1,'2020-10-24 15:27:13','2020-10-24 15:27:13','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original-7','','','2020-10-24 15:27:13','2020-10-24 15:27:13','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/Singles-006.jpg',0,'attachment','image/jpeg',0),(330,1,'2020-10-24 15:52:12','2020-10-24 15:52:12','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"7% 57%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_products show=\"featured\"]\n\n[title style=\"center\" text=\"Featured Categories\" size=\"undefined\"]\n\n[ux_product_categories]\n\n[gap height=\"36px\"]\n\n[ux_banner height=\"366px\" bg=\"3834\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\n\n[text_box width=\"49\" width__sm=\"78\" position_x=\"10\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p class=\"lead\"> </p>\n[contact-form-7 id=\"150\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\n\n[blog_posts badge_style=\"square\" image_height=\"75%\" image_hover=\"zoom\"]\n\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\n\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]\n\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-24 15:52:12','2020-10-24 15:52:12','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(331,1,'2020-10-24 15:56:11','2020-10-24 15:56:11','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"7% 57%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_products show=\"featured\"]\n\n[title style=\"center\" text=\"Featured Categories\"]\n\n[ux_product_categories]\n\n[gap height=\"36px\"]\n\n[ux_banner height=\"366px\" bg=\"3834\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\n\n[text_box width=\"49\" width__sm=\"78\" position_x=\"10\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p class=\"lead\"> </p>\n[contact-form-7 id=\"150\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\n\n[blog_posts badge_style=\"square\" image_height=\"75%\" image_hover=\"zoom\"]\n\n[title style=\"bold-center\" text=\"We\'re on Instagram\" tag_name=\"h4\" icon=\"icon-instagram\" size=\"82\"]\n\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]\n\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-24 15:56:11','2020-10-24 15:56:11','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(333,1,'2020-10-26 09:51:40','2020-10-26 09:51:40','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"7% 57%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_products show=\"featured\"]\n\n[title style=\"center\" text=\"Featured Categories\"]\n\n[ux_product_categories]\n\n[gap height=\"36px\"]\n\n[ux_banner height=\"366px\" bg=\"3834\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\n\n[text_box width=\"49\" width__sm=\"78\" position_x=\"10\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p class=\"lead\"> </p>\n[contact-form-7 id=\"150\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\n\n[blog_posts badge_style=\"square\" image_height=\"75%\" image_hover=\"zoom\"]\n\n[title style=\"bold-center\" text=\"We\'re on Instagram\" tag_name=\"h4\" icon=\"icon-instagram\" size=\"82\"]\n\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-26 09:51:40','2020-10-26 09:51:40','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(334,1,'2020-10-26 09:57:36','2020-10-26 09:57:36','','features.fp_.-7-of-18-304x1024-1','','inherit','open','closed','','features-fp_-7-of-18-304x1024-1','','','2020-10-26 09:57:36','2020-10-26 09:57:36','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/features.fp_.-7-of-18-304x1024-1.jpg',0,'attachment','image/jpeg',0),(335,1,'2020-10-26 10:01:36','2020-10-26 10:01:36','','lifestyle-01-1024x550-1','','inherit','open','closed','','lifestyle-01-1024x550-1','','','2020-10-26 10:01:36','2020-10-26 10:01:36','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/lifestyle-01-1024x550-1.jpg',0,'attachment','image/jpeg',0),(336,1,'2020-10-26 10:01:40','2020-10-26 10:01:40','','daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1','','inherit','open','closed','','daniel-korpai-fbgn3lx7lvm-unsplash-1024x589-1','','','2020-10-26 10:01:40','2020-10-26 10:01:40','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/daniel-korpai-fBGn3Lx7lVM-unsplash-1024x589-1.jpg',0,'attachment','image/jpeg',0),(337,1,'2020-10-26 10:08:05','2020-10-26 10:08:05','','tamara-bellis-68csPWTnafo-unsplash-small','','inherit','open','closed','','tamara-bellis-68cspwtnafo-unsplash-small','','','2020-10-26 10:08:05','2020-10-26 10:08:05','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/tamara-bellis-68csPWTnafo-unsplash-small.jpg',0,'attachment','image/jpeg',0),(338,1,'2020-10-26 10:08:10','2020-10-26 10:08:10','','chuttersnap-1efPs5z4uZ0-unsplash-small','','inherit','open','closed','','chuttersnap-1efps5z4uz0-unsplash-small','','','2020-10-26 10:08:10','2020-10-26 10:08:10','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/chuttersnap-1efPs5z4uZ0-unsplash-small.jpg',0,'attachment','image/jpeg',0),(339,1,'2020-10-26 10:08:15','2020-10-26 10:08:15','','curology-2hqcQW_kWl8-unsplash-small','','inherit','open','closed','','curology-2hqcqw_kwl8-unsplash-small','','','2020-10-26 10:08:15','2020-10-26 10:08:15','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/curology-2hqcQW_kWl8-unsplash-small.jpg',0,'attachment','image/jpeg',0),(342,1,'2020-10-27 08:44:11','2020-10-27 08:44:11','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"3\" span__sm=\"12\" depth=\"1\"]\n\n\n[/col_grid]\n[col_grid span=\"6\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_products show=\"featured\"]\n\n[title style=\"center\" text=\"Featured Categories\"]\n\n[ux_product_categories]\n\n[gap height=\"36px\"]\n\n[ux_banner height=\"366px\" bg=\"3834\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\n\n[text_box width=\"49\" width__sm=\"78\" position_x=\"10\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p class=\"lead\"> </p>\n[contact-form-7 id=\"150\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\n\n[blog_posts badge_style=\"square\" image_height=\"75%\" image_hover=\"zoom\"]\n\n[title style=\"bold-center\" text=\"We\'re on Instagram\" tag_name=\"h4\" icon=\"icon-instagram\" size=\"82\"]\n\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]\n\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 08:44:11','2020-10-27 08:44:11','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(343,1,'2020-10-27 08:45:19','2020-10-27 08:45:19','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"3\" span__sm=\"12\"]\n\n\n[/col_grid]\n[col_grid span=\"6\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_products show=\"featured\"]\n\n[title style=\"center\" text=\"Featured Categories\"]\n\n[ux_product_categories]\n\n[gap height=\"36px\"]\n\n[ux_banner height=\"366px\" bg=\"3834\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\n\n[text_box width=\"49\" width__sm=\"78\" position_x=\"10\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p class=\"lead\"> </p>\n[contact-form-7 id=\"150\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\n\n[blog_posts badge_style=\"square\" image_height=\"75%\" image_hover=\"zoom\"]\n\n[title style=\"bold-center\" text=\"We\'re on Instagram\" tag_name=\"h4\" icon=\"icon-instagram\" size=\"82\"]\n\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]\n\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 08:45:19','2020-10-27 08:45:19','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(344,1,'2020-10-27 08:49:08','2020-10-27 08:49:08','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"3\" span__sm=\"12\"]\n\n\n[/col_grid]\n[col_grid span=\"6\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 08:49:08','2020-10-27 08:49:08','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(346,1,'2020-10-27 08:51:38','2020-10-27 08:51:38','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"3\" span__sm=\"12\"]\n\n\n[/col_grid]\n[col_grid span=\"6\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[divider width=\"100%\" height=\"1px\" margin=\"0px\"]\n\n[section label=\"Footer\" padding=\"0px\"]\n\n[gap height=\"80px\"]\n\n[row label=\"Columns\"]\n\n[col span=\"3\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n<h5>About the store</h5>\n<p><span style=\"font-size: 90%;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla ultrices urna non est consequat, vel eleifend ligula ornare.</span></p>\n[follow style=\"fill\" scale=\"70\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n[col span=\"5\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>My account</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My account</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Logout</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>Information</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n<h5>Newsletter</h5>\n<p><span style=\"font-size: 90%;\">Subscribe to get notified about product launches, special offers and company news.</span></p>\n[contact-form-7 id=\"534\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[divider width=\"100%\" height=\"1px\" margin=\"0px\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[gap]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 90%;\">© [ux_current_year] UX Themes</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 08:51:38','2020-10-27 08:51:38','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(347,1,'2020-10-27 08:53:28','2020-10-27 08:53:28','','logo-light','','inherit','open','closed','','logo-light','','','2020-10-27 08:53:28','2020-10-27 08:53:28','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2020/10/logo-light.png',0,'attachment','image/png',0),(348,1,'2020-10-27 09:02:54','2020-10-27 09:02:54','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"3\" span__sm=\"12\"]\n\n\n[/col_grid]\n[col_grid span=\"6\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section bg_color=\"#d5b3c5\" dark=\"true\" padding=\"60px\" padding__sm=\"30px\"]\n\n[row label=\"Columns\" col_bg=\"#d5b3c5\"]\n\n[col label=\"Logo\" span=\"4\" span__sm=\"12\" span__md=\"12\"]\n\n[ux_image id=\"116\" width=\"51\" width__sm=\"60\" width__md=\"30\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Call us\" color=\"white\" style=\"link\" size=\"small\" icon=\"icon-phone\" icon_pos=\"left\"]\n\n[button text=\"E-mail\" color=\"white\" style=\"link\" size=\"small\" icon=\"icon-envelop\" icon_pos=\"left\"]\n\n\n[/col]\n[col label=\"Links\" span=\"8\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>My account</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My information</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My email preferences</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Cutomer service</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Payments</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Shipping & delivery</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Support</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Contact</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[row label=\"Divider\" col_bg=\"#d5b3c5\"]\n\n[col span__sm=\"12\" margin=\"-30px 0px -30px 0px\"]\n\n[divider width=\"100%\" height=\"2px\" color=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright\" col_bg=\"#d5b3c5\" visibility=\"hide-for-medium\"]\n\n[col span=\"5\" span__sm=\"12\" align=\"left\"]\n\n<p>Copyright 2020 © The Dragon Fashion House & Accessories</p>\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright: Mobile\" visibility=\"show-for-small\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n[gap height=\"10px\"]\n\n<p>©<br />[ux_current_year] UX Themes</p>\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 09:02:54','2020-10-27 09:02:54','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(349,1,'2020-10-27 09:04:10','2020-10-27 09:04:10','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"3\" span__sm=\"12\"]\n\n\n[/col_grid]\n[col_grid span=\"6\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section bg_color=\"#d5b3c5\" dark=\"true\" padding=\"60px\" padding__sm=\"30px\"]\n\n[row label=\"Columns\" col_bg=\"#d5b3c5\"]\n\n[col label=\"Logo\" span=\"4\" span__sm=\"12\" span__md=\"12\"]\n\n[ux_image id=\"116\" width=\"51\" width__sm=\"60\" width__md=\"30\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Contact us on E-Mail\" letter_case=\"lowercase\" color=\"white\" style=\"link\" size=\"small\" icon=\"icon-envelop\" icon_pos=\"left\"]\n\n\n[/col]\n[col label=\"Links\" span=\"8\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>My account</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My information</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My email preferences</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Cutomer service</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Payments</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Shipping & delivery</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Support</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Contact</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[row label=\"Divider\" col_bg=\"#d5b3c5\"]\n\n[col span__sm=\"12\" margin=\"-30px 0px -30px 0px\"]\n\n[divider width=\"100%\" height=\"2px\" color=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright\" col_bg=\"#d5b3c5\" visibility=\"hide-for-medium\"]\n\n[col span=\"5\" span__sm=\"12\" align=\"left\"]\n\n<p>Copyright 2020 © The Dragon Fashion House & Accessories</p>\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright: Mobile\" visibility=\"show-for-small\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n[gap height=\"10px\"]\n\n<p>©<br />[ux_current_year] UX Themes</p>\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 09:04:10','2020-10-27 09:04:10','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(350,1,'2020-10-27 09:09:45','2020-10-27 09:09:45','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section bg_color=\"#d5b3c5\" dark=\"true\" padding=\"60px\" padding__sm=\"30px\"]\n\n[row label=\"Columns\" col_bg=\"#d5b3c5\"]\n\n[col label=\"Logo\" span=\"4\" span__sm=\"12\" span__md=\"12\"]\n\n[ux_image id=\"116\" width=\"51\" width__sm=\"60\" width__md=\"30\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Contact us on E-Mail\" letter_case=\"lowercase\" color=\"white\" style=\"link\" size=\"small\" icon=\"icon-envelop\" icon_pos=\"left\"]\n\n\n[/col]\n[col label=\"Links\" span=\"8\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>My account</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My information</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My email preferences</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Cutomer service</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Payments</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Shipping & delivery</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Support</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Contact</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[row label=\"Divider\" col_bg=\"#d5b3c5\"]\n\n[col span__sm=\"12\" margin=\"-30px 0px -30px 0px\"]\n\n[divider width=\"100%\" height=\"2px\" color=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright\" col_bg=\"#d5b3c5\" visibility=\"hide-for-medium\"]\n\n[col span=\"5\" span__sm=\"12\" align=\"left\"]\n\n<p>Copyright 2020 © The Dragon Fashion House & Accessories</p>\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright: Mobile\" visibility=\"show-for-small\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n[gap height=\"10px\"]\n\n<p>©<br />[ux_current_year] UX Themes</p>\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 09:09:45','2020-10-27 09:09:45','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(351,1,'2020-10-27 09:10:35','2020-10-27 09:10:35','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section bg_color=\"#d5b3c5\" dark=\"true\" padding=\"60px\" padding__sm=\"30px\"]\n\n[row label=\"Columns\" col_bg=\"#d5b3c5\"]\n\n[col label=\"Logo\" span=\"4\" span__sm=\"12\" span__md=\"12\"]\n\n[ux_image id=\"116\" width=\"51\" width__sm=\"60\" width__md=\"30\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Contact us on E-Mail\" letter_case=\"lowercase\" color=\"white\" style=\"link\" size=\"small\" icon=\"icon-envelop\" icon_pos=\"left\"]\n\n\n[/col]\n[col label=\"Links\" span=\"8\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>My account</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My information</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My email preferences</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Cutomer service</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Payments</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Shipping & delivery</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Support</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Contact</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[row label=\"Divider\" col_bg=\"#d5b3c5\"]\n\n[col span__sm=\"12\" margin=\"-30px 0px -30px 0px\"]\n\n[divider width=\"100%\" height=\"2px\" color=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright: Mobile\" visibility=\"show-for-small\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 09:10:35','2020-10-27 09:10:35','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(352,1,'2020-10-27 09:11:29','2020-10-27 09:11:29','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section bg_color=\"#d5b3c5\" dark=\"true\" padding=\"60px\" padding__sm=\"30px\"]\n\n[row label=\"Columns\" col_bg=\"#d5b3c5\"]\n\n[col label=\"Links\" span=\"8\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>My account</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My information</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My email preferences</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Cutomer service</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Payments</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Shipping & delivery</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Support</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Contact</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[row label=\"Divider\" col_bg=\"#d5b3c5\"]\n\n[col span__sm=\"12\" margin=\"-30px 0px -30px 0px\"]\n\n[divider width=\"100%\" height=\"2px\" color=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright: Mobile\" visibility=\"show-for-small\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 09:11:29','2020-10-27 09:11:29','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(353,1,'2020-10-27 09:13:07','2020-10-27 09:13:07','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"3\"]\n\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section bg_color=\"#d5b3c5\" dark=\"true\" padding=\"60px\" padding__sm=\"30px\"]\n\n[row label=\"Columns\" col_bg=\"#d5b3c5\"]\n\n[col label=\"Links\" span=\"8\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>My account</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My information</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My email preferences</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Cutomer service</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Payments</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Shipping & delivery</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Support</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Contact</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[row label=\"Divider\" col_bg=\"#d5b3c5\"]\n\n[col span__sm=\"12\" margin=\"-30px 0px -30px 0px\"]\n\n[divider width=\"100%\" height=\"2px\" color=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright: Mobile\" visibility=\"show-for-small\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 09:13:07','2020-10-27 09:13:07','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(354,1,'2020-10-27 09:14:53','2020-10-27 09:14:53','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"3\"]\n\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section bg_color=\"#d5b3c5\" dark=\"true\" padding=\"60px\" padding__sm=\"30px\"]\n\n[row label=\"Columns\" col_bg=\"#d5b3c5\"]\n\n[col label=\"Links\" span=\"8\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>My account</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My information</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My email preferences</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Cutomer service</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Payments</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Shipping & delivery</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Support</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Contact</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"116\" width=\"62\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Divider\" col_bg=\"#d5b3c5\"]\n\n[col span__sm=\"12\" margin=\"-30px 0px -30px 0px\"]\n\n[divider width=\"100%\" height=\"2px\" color=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright: Mobile\" visibility=\"show-for-small\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 09:14:53','2020-10-27 09:14:53','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(357,1,'2020-10-27 09:23:17','2020-10-27 09:23:17','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid depth=\"5\"]\n\n[col_grid span=\"5\"]\n\n[ux_image id=\"142\"]\n\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section bg_color=\"#d5b3c5\" dark=\"true\" padding=\"60px\" padding__sm=\"30px\"]\n\n[row label=\"Columns\" col_bg=\"#d5b3c5\"]\n\n[col label=\"Links\" span=\"8\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>My account</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My information</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My email preferences</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Cutomer service</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Payments</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Shipping & delivery</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Support</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Contact</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"116\" width=\"62\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Divider\" col_bg=\"#d5b3c5\"]\n\n[col span__sm=\"12\" margin=\"-30px 0px -30px 0px\"]\n\n[divider width=\"100%\" height=\"2px\" color=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright: Mobile\" visibility=\"show-for-small\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 09:23:17','2020-10-27 09:23:17','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(358,1,'2020-10-27 09:45:13','2020-10-27 09:45:13','<!-- wp:html -->\n[gap height=\"32px\"]\n\n[ux_banner_grid]\n\n[col_grid span=\"6\"]\n\n[ux_image id=\"142\"]\n\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"317\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"16% 62%\" hover=\"overlay-add\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"0\" position_y=\"90\" text_align=\"left\"]\n\n<p class=\"lead alt-font\" style=\"text-align: left;\"><span style=\"font-size: 190%;\">Friday socks</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop now\" size=\"larger\"]\n\n\n[/text_box]\n[ux_image id=\"44\" image_size=\"original\" height=\"56.25%\" position_x=\"50\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section bg_color=\"#d5b3c5\" dark=\"true\" padding=\"60px\" padding__sm=\"30px\"]\n\n[row label=\"Columns\" col_bg=\"#d5b3c5\"]\n\n[col label=\"Links\" span=\"8\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>My account</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My information</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">My email preferences</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Cutomer service</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Payments</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Shipping & delivery</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Support</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n<h4>Contact</h4>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"116\" width=\"62\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Divider\" col_bg=\"#d5b3c5\"]\n\n[col span__sm=\"12\" margin=\"-30px 0px -30px 0px\"]\n\n[divider width=\"100%\" height=\"2px\" color=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n[row label=\"Copyright: Mobile\" visibility=\"show-for-small\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[follow style=\"small\" align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n[gap height=\"10px\"]\n\n[button text=\"Terms\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Privacy\" color=\"white\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" color=\"white\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 09:45:13','2020-10-27 09:45:13','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(359,1,'2020-10-27 11:04:32','2020-10-27 11:04:32','','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 11:04:32','2020-10-27 11:04:32','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(370,1,'2020-10-27 11:43:24','2020-10-27 11:43:24','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">It has Finally started...</span></h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 41.472px; color: #282828;\"><b>Friday dragon socks are here</b></span></h1>\n[divider]\n\n[button text=\"Shop Now\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"3834\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"3862\" hover=\"zoom-fade\" link=\"http://localhost:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"3833\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[gap height=\"40px\"]\n\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"8011\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"8011\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"8011\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 11:43:24','2020-10-27 11:43:24','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(371,1,'2020-10-27 11:53:05','2020-10-27 11:53:05','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">It has Finally started...</span></h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 41.472px; color: #282828;\"><b>Friday dragon socks are here</b></span></h1>\n[divider]\n\n[button text=\"Shop Now\" letter_case=\"lowercase\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[section label=\"Footer\" padding=\"0px\"]\n\n[gap height=\"80px\"]\n\n[row label=\"Columns\"]\n\n[col span=\"3\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n<h5>About the store</h5>\n<p> </p>\n[follow style=\"fill\" scale=\"70\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n[col span=\"5\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>My account</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My account</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Logout</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>Information</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n[logo img=\"116\" height=\"235px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[divider width=\"100%\" height=\"1px\" margin=\"0px\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[gap]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 75%;\">Copyright 2020 © The Dragon Fashion House & Accessories</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 11:53:05','2020-10-27 11:53:05','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(374,1,'2020-10-27 12:00:02','2020-10-27 12:00:02','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">It has Finally started...</span></h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 41.472px; color: #282828;\"><b>Friday dragon socks are here</b></span></h1>\n[divider]\n\n[button text=\"Shop Now\" letter_case=\"lowercase\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[divider align=\"center\" width=\"100%\" height=\"10px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Footer\" padding=\"0px\"]\n\n[row label=\"Columns\"]\n\n[col span=\"3\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n<h5>About the store</h5>\n<p> </p>\n[follow style=\"fill\" scale=\"70\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n[col span=\"5\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>My account</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My account</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Logout</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>Information</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n[logo img=\"116\" height=\"235px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[divider width=\"100%\" height=\"10px\" margin=\"0px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 75%;\">Copyright 2020 © The Dragon Fashion House & Accessories</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 12:00:02','2020-10-27 12:00:02','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(375,1,'2020-10-27 12:05:29','2020-10-27 12:05:29','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">It has Finally here...</span></h3>\n[divider margin=\"3px\"]\n\n<p class=\"thin-font uppercase\" data-animate-delay=\"300\"><span style=\"font-size: 150%;\"><strong><span style=\"color: #333333;\">Buy Your First Pair Online</span></strong></span></p>\n[divider]\n\n[button text=\"Shop Now\" letter_case=\"lowercase\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[divider align=\"center\" width=\"100%\" height=\"10px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Footer\" padding=\"0px\"]\n\n[row label=\"Columns\"]\n\n[col span=\"3\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n<h5>About the store</h5>\n<p> </p>\n[follow style=\"fill\" scale=\"70\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n[col span=\"5\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>My account</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My account</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Logout</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>Information</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n[logo img=\"116\" height=\"235px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[divider width=\"100%\" height=\"10px\" margin=\"0px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 75%;\">Copyright 2020 © The Dragon Fashion House & Accessories</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 12:05:29','2020-10-27 12:05:29','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(376,1,'2020-10-27 12:14:32','2020-10-27 12:14:32','<!-- wp:html -->\n[ux_banner height=\"451px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.45)\"]\n\n[text_box width=\"66\" parallax=\"-4\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Product Element</strong></h2>\n<p class=\"lead\">List products anywhere in a beautiful style. Choose between Slider, Rows, Grid and Masonry Style. Select products from a custom category or sort by sales, featured items or latest. You can also select custom products.</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"bold-center\" text=\"Simple Sale Slider\"]\n\n[ux_products orderby=\"sales\" show=\"onsale\"]\n\n\n<!-- /wp:html -->','Products','','inherit','closed','closed','','216-revision-v1','','','2020-10-27 12:14:32','2020-10-27 12:14:32','',216,'http://www.thedragonhouse.co.za/216-revision-v1/',0,'revision','',0),(377,1,'2020-10-27 12:16:45','2020-10-27 12:16:45','<!-- wp:html -->\n[ux_banner height=\"451px\" bg=\"154\" bg_overlay=\"rgba(0, 0, 0, 0.45)\"]\n\n[text_box width=\"66\" parallax=\"-4\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Product Element</strong></h2>\n<p class=\"lead\">List products anywhere in a beautiful style. Choose between Slider, Rows, Grid and Masonry Style. Select products from a custom category or sort by sales, featured items or latest. You can also select custom products.</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"bold-center\" text=\"Dragon Socks\" tag_name=\"h1\" size=\"135\"]\n\n[ux_products ids=\"323,299\"]\n\n\n<!-- /wp:html -->','Products','','inherit','closed','closed','','216-revision-v1','','','2020-10-27 12:16:45','2020-10-27 12:16:45','',216,'http://www.thedragonhouse.co.za/216-revision-v1/',0,'revision','',0),(378,1,'2020-10-27 12:26:02','2020-10-27 12:26:02','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">It has Finally here...</span></h3>\n[divider margin=\"3px\"]\n\n<p class=\"thin-font uppercase\" data-animate-delay=\"300\"><span style=\"font-size: 150%;\"><strong><span style=\"color: #333333;\">Buy Your First Pair Online</span></strong></span></p>\n[divider]\n\n[button text=\"Shop Now\" letter_case=\"lowercase\" style=\"outline\" link=\"product\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[divider align=\"center\" width=\"100%\" height=\"10px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Footer\" padding=\"0px\"]\n\n[row label=\"Columns\"]\n\n[col span=\"3\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n<h5>About the store</h5>\n<p> </p>\n[follow style=\"fill\" scale=\"70\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n[col span=\"5\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>My account</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My account</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Logout</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>Information</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n[logo img=\"116\" height=\"235px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[divider width=\"100%\" height=\"10px\" margin=\"0px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 75%;\">Copyright 2020 © The Dragon Fashion House & Accessories</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 12:26:02','2020-10-27 12:26:02','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(379,1,'2020-10-27 12:26:51','2020-10-27 12:26:51','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">It has Finally here...</span></h3>\n[divider margin=\"3px\"]\n\n<p class=\"thin-font uppercase\" data-animate-delay=\"300\"><span style=\"font-size: 150%;\"><strong><span style=\"color: #333333;\">Buy Your First Pair Online</span></strong></span></p>\n[divider]\n\n[button text=\"Shop Now\" letter_case=\"lowercase\" style=\"outline\" link=\"http://www.thedragonhouse.co.za/shop/\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[divider align=\"center\" width=\"100%\" height=\"10px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Footer\" padding=\"0px\"]\n\n[row label=\"Columns\"]\n\n[col span=\"3\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n<h5>About the store</h5>\n<p> </p>\n[follow style=\"fill\" scale=\"70\" facebook=\"#\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n[col span=\"5\" span__sm=\"12\" span__md=\"12\"]\n\n[row_inner style=\"small\"]\n\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>My account</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My orders</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My returns</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">My account</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Logout</a></span></li>\n</ul>\n\n[/col_inner]\n[col_inner span=\"6\" span__sm=\"12\"]\n\n<h5>Information</h5>\n<ul>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">About us</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Services</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Blog</a></span></li>\n<li class=\"bullet-arrow\"><span style=\"font-size: 90%;\"><a href=\"https://demos.uxthemes.com/layouts/blocks/footer-classic-divided/#\">Contact</a></span></li>\n</ul>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"6\" force_first=\"medium\"]\n\n[logo img=\"116\" height=\"235px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[divider width=\"100%\" height=\"10px\" margin=\"0px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 75%;\">Copyright 2020 © The Dragon Fashion House & Accessories</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 12:26:51','2020-10-27 12:26:51','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(384,1,'2020-10-27 12:41:16','2020-10-27 12:41:16','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original-8','','','2020-10-27 12:41:16','2020-10-27 12:41:16','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2014/08/Ladies-002.jpg',0,'attachment','image/jpeg',0),(385,1,'2020-10-27 12:42:57','2020-10-27 12:42:57','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original-9','','','2020-10-27 12:42:57','2020-10-27 12:42:57','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2014/08/Singles-002.jpg',0,'attachment','image/jpeg',0),(386,1,'2020-10-27 12:43:17','2020-10-27 12:43:17','','50% of original','Cov RGB to SSh nov 2014','inherit','open','closed','','50-of-original-10','','','2020-10-27 12:43:17','2020-10-27 12:43:17','',0,'http://www.thedragonhouse.co.za/wp-content/uploads/2014/08/Singles-003.jpg',0,'attachment','image/jpeg',0),(387,1,'2020-10-27 12:50:59','2020-10-27 12:50:59','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">It has Finally here...</span></h3>\n[divider margin=\"3px\"]\n\n<p class=\"thin-font uppercase\" data-animate-delay=\"300\"><span style=\"font-size: 150%;\"><strong><span style=\"color: #333333;\">Buy Your First Pair Online</span></strong></span></p>\n[divider]\n\n[button text=\"Shop Now\" letter_case=\"lowercase\" style=\"outline\" link=\"http://www.thedragonhouse.co.za/shop/\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[divider align=\"center\" width=\"100%\" height=\"10px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 75%;\">Copyright 2020 © The Dragon Fashion House & Accessories</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 12:50:59','2020-10-27 12:50:59','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(388,1,'2020-10-27 12:51:40','2020-10-27 12:51:40','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">It has Finally arrived...</span></h3>\n[divider margin=\"3px\"]\n\n<p class=\"thin-font uppercase\" data-animate-delay=\"300\"><span style=\"font-size: 150%;\"><strong><span style=\"color: #333333;\">Buy Your First Pair Online</span></strong></span></p>\n[divider]\n\n[button text=\"Shop Now\" letter_case=\"lowercase\" style=\"outline\" link=\"http://www.thedragonhouse.co.za/shop/\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[divider align=\"center\" width=\"100%\" height=\"10px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 75%;\">Copyright 2020 © The Dragon Fashion House & Accessories</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 12:51:40','2020-10-27 12:51:40','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0),(389,1,'2020-10-27 13:06:50','2020-10-27 13:06:50','Black and Grey hoodie','Be Fierce Hoodie - Men','Black and Grey hoodie','publish','open','closed','','be-fierce-hoodie-men','','','2020-10-27 13:11:07','2020-10-27 13:11:07','',0,'http://www.thedragonhouse.co.za/?post_type=product&p=389',0,'product','',0),(390,1,'2020-10-27 13:12:06','2020-10-27 13:12:06','Dragon sock','Friday Dragon Socks - Mens','Dragon sock','publish','open','closed','','friday-dragon-socks-mens','','','2020-10-27 13:13:34','2020-10-27 13:13:34','',0,'http://www.thedragonhouse.co.za/?post_type=product&p=390',0,'product','',0),(391,1,'2020-10-27 13:13:52','2020-10-27 13:13:52','Black and Grey hoodie','Be Fierce Hoodie - Ladies','Black and Grey hoodie','publish','open','closed','','be-fierce-hoodie-ladies','','','2020-10-27 13:16:26','2020-10-27 13:16:26','',0,'http://www.thedragonhouse.co.za/?post_type=product&p=391',0,'product','',0),(392,1,'2020-10-27 13:14:15','2020-10-27 13:14:15','Dragon sock','Friday Dragon Socks - Ladies','Dragon sock','publish','open','closed','','friday-dragon-socks-ladies','','','2020-10-27 13:15:27','2020-10-27 13:15:27','',0,'http://www.thedragonhouse.co.za/?post_type=product&p=392',0,'product','',0),(393,1,'2020-10-27 13:18:46','2020-10-27 13:18:46','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg_color=\"rgba(255, 255, 255, 0.36)\" bg_overlay=\"rgba(0, 0, 0, 0.02)\"]\n\n[text_box width=\"40\" width__sm=\"100\" scale=\"124\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\"><span style=\"color: #282828;\">Welcome</span></h3>\n[divider margin=\"3px\"]\n\n<p data-animate-delay=\"300\"><span style=\"font-size: 150%;\"><strong><span style=\"color: #333333;\">to our online store</span></strong></span></p>\n[divider]\n\n[button text=\"Shop Now\" letter_case=\"lowercase\" style=\"outline\" link=\"http://www.thedragonhouse.co.za/shop/\"]\n\n\n[/text_box]\n[ux_image id=\"324\" width=\"30\" image_hover=\"zoom\" position_x=\"100\" position_y=\"50\"]\n\n[ux_image id=\"317\" width=\"30\" image_hover=\"zoom\" position_x=\"0\" position_y=\"50\"]\n\n\n[/ux_banner]\n\n[/ux_slider]\n[divider align=\"center\" width=\"100%\" height=\"10px\" color=\"rgb(0, 0, 0)\"]\n\n[section label=\"Copyright + Payments\" bg_color=\"rgb(250, 250, 250)\" padding=\"0px\"]\n\n[row style=\"small\"]\n\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\"]\n\n<p><span style=\"font-size: 75%;\">Copyright 2020 © The Dragon Fashion House & Accessories</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" span__md=\"12\" align=\"center\"]\n\n[ux_payment_icons icons=\"visa,paypal,stripe,mastercard\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"6\" span__md=\"6\" force_first=\"medium\" align=\"right\"]\n\n[button text=\"Privacy\" style=\"link\" size=\"small\"]\n\n[button text=\"Cookies\" style=\"link\" size=\"small\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Home','','inherit','closed','closed','','123-revision-v1','','','2020-10-27 13:18:46','2020-10-27 13:18:46','',123,'http://www.thedragonhouse.co.za/123-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_social_users`
--
DROP TABLE IF EXISTS `wp_social_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_social_users` (
`ID` int(11) NOT NULL,
`type` varchar(20) NOT NULL,
`identifier` varchar(100) NOT NULL,
`register_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
KEY `ID` (`ID`,`type`),
KEY `identifier` (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_social_users`
--
LOCK TABLES `wp_social_users` WRITE;
/*!40000 ALTER TABLE `wp_social_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_social_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(77,16,0),(131,20,0),(135,20,0),(136,20,0),(156,1,0),(157,1,0),(158,1,0),(159,21,0),(159,22,0),(160,21,0),(160,23,0),(160,24,0),(160,25,0),(160,26,0),(161,21,0),(161,23,0),(161,24,0),(161,25,0),(161,26,0),(162,21,0),(163,21,0),(389,2,0),(389,27,0),(389,51,0),(389,52,0),(389,55,0),(390,2,0),(390,27,0),(390,52,0),(390,54,0),(390,55,0),(391,2,0),(391,38,0),(391,46,0),(391,51,0),(391,53,0),(392,2,0),(392,38,0),(392,53,0),(392,54,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) 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=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,4),(2,2,'product_type','',0,4),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',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_cat','',0,0),(16,16,'elementor_library_type','',0,0),(20,20,'nav_menu','',0,3),(21,21,'category','',0,5),(22,22,'post_format','',0,1),(23,23,'post_tag','',0,2),(24,24,'post_tag','',0,2),(25,25,'post_tag','',0,2),(26,26,'post_tag','',0,2),(27,27,'product_cat','',0,2),(29,29,'product_tag','',0,0),(30,30,'product_tag','',0,0),(31,31,'product_tag','',0,0),(32,32,'product_tag','',0,0),(34,34,'product_tag','',0,0),(35,35,'product_tag','',0,0),(36,36,'product_tag','',0,0),(38,38,'product_cat','',0,2),(42,42,'product_tag','',0,0),(43,43,'product_tag','',0,0),(44,44,'product_tag','',0,0),(45,45,'product_tag','',0,0),(46,46,'product_tag','',0,1),(47,47,'product_tag','',0,0),(48,48,'product_tag','',0,0),(49,49,'product_tag','',0,0),(50,50,'product_cat','',0,0),(51,51,'product_tag','',0,2),(52,52,'product_tag','',0,2),(53,53,'product_tag','',0,2),(54,54,'product_tag','',0,2),(55,55,'product_tag','',0,2);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) 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=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (7,27,'order','0'),(9,27,'product_count_product_cat','2'),(11,29,'product_count_product_tag','0'),(12,30,'product_count_product_tag','0'),(13,31,'product_count_product_tag','0'),(14,32,'product_count_product_tag','0'),(17,34,'product_count_product_tag','0'),(18,35,'product_count_product_tag','0'),(19,36,'product_count_product_tag','0'),(21,38,'order','0'),(23,38,'product_count_product_cat','2'),(30,42,'product_count_product_tag','0'),(31,43,'product_count_product_tag','0'),(32,44,'product_count_product_tag','0'),(33,45,'product_count_product_tag','0'),(34,46,'product_count_product_tag','1'),(35,47,'product_count_product_tag','0'),(36,48,'product_count_product_tag','0'),(37,49,'product_count_product_tag','0'),(38,15,'product_count_product_cat','0'),(39,50,'order','0'),(40,50,'display_type',''),(41,50,'thumbnail_id','0'),(42,27,'cat_meta','a:3:{s:10:\"cat_header\";s:0:\"\";s:10:\"cat_footer\";s:0:\"\";s:17:\"cat_product_block\";s:3:\"293\";}'),(43,27,'display_type','products'),(44,27,'thumbnail_id','0'),(45,50,'product_count_product_cat','0'),(46,51,'product_count_product_tag','2'),(47,52,'product_count_product_tag','2'),(48,53,'product_count_product_tag','2'),(49,54,'product_count_product_tag','2'),(50,55,'product_count_product_tag','2');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'page','page',0),(20,'Main Navigation','main-navigation',0),(21,'Style','style',0),(22,'Video','post-format-video',0),(23,'brooklyn','brooklyn',0),(24,'fashion','fashion',0),(25,'style','style-2',0),(26,'women','women-3',0),(27,'Men','men',0),(29,'jeans','jeans-2',0),(30,'man','man',0),(31,'t-shirt','t-shirt',0),(32,'white','white',0),(34,'Diesel','diesel',0),(35,'shoe','shoe',0),(36,'stars','stars',0),(38,'Women','women',0),(42,'fit','fit',0),(43,'levis','levis',0),(44,'party','party',0),(45,'washed-out','washed-out',0),(46,'women','women-2',0),(47,'River Island','river-island',0),(48,'Jack and Jones','jack-and-jones',0),(49,'Lee','lee',0),(50,'Accessories','accessories',0),(51,'hoodie','hoodie',0),(52,'men','men',0),(53,'ladies','ladies',0),(54,'socks','socks',0),(55,'mens','mens',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) 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=633 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','philip'),(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,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"ce005ba2a6d587d4b29316b6132070b9f1d9ce8ef97f3a71ef759a29ea451cc0\";a:4:{s:10:\"expiration\";i:1603960706;s:2:\"ip\";s:13:\"102.65.164.21\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36\";s:5:\"login\";i:1603787906;}s:64:\"7027165e1c66e0ec094022bcf312159a288ede9b920518223aeec00c7f91da18\";a:4:{s:10:\"expiration\";i:1603969435;s:2:\"ip\";s:13:\"102.65.164.21\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36\";s:5:\"login\";i:1603796635;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','112'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"102.65.164.0\";}'),(19,1,'wp_user-settings','mfold=o&libraryContent=browse&hidetb=1'),(20,1,'wp_user-settings-time','1603789724'),(21,1,'elementor_introduction','a:1:{s:10:\"rightClick\";b:1;}'),(22,1,'_woocommerce_tracks_anon_id','woo:4cYOx/yu+Mz7DlA85hOQSG+x'),(23,1,'wc_last_active','1603756800'),(25,1,'closedpostboxes_dashboard','a:1:{i:0;s:20:\"e-dashboard-overview\";}'),(26,1,'metaboxhidden_dashboard','a:0:{}'),(27,1,'_order_count','0'),(29,1,'last_update','1709749499'),(30,1,'woocommerce_admin_activity_panel_inbox_last_read','1603804229515'),(32,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\";}'),(33,1,'metaboxhidden_nav-menus','a:4:{i:0;s:21:\"add-post-type-product\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-product_cat\";i:3;s:15:\"add-product_tag\";}'),(34,1,'nav_menu_recently_edited','20'),(41,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(42,2,'nickname','stfaklqooxptmjx'),(43,2,'first_name',''),(44,2,'last_name',''),(45,2,'description',''),(46,2,'rich_editing','true'),(47,2,'syntax_highlighting','true'),(48,2,'comment_shortcuts','false'),(49,2,'admin_color','fresh'),(50,2,'use_ssl','0'),(51,2,'show_admin_bar_front','true'),(52,2,'locale',''),(53,2,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(54,2,'wp_user_level','0'),(55,2,'session_tokens','a:1:{s:64:\"2975b2fbc7d1f02cc5b4ffa0bdf4b5f61835287cf533ccb57ef39b28f6133317\";a:4:{s:10:\"expiration\";i:1636930758;s:2:\"ip\";s:14:\"149.255.61.180\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0\";s:5:\"login\";i:1635721158;}}'),(56,2,'wc_last_active','1635638400'),(57,3,'nickname','stskwqnjwgxmqml'),(58,3,'first_name',''),(59,3,'last_name',''),(60,3,'description',''),(61,3,'rich_editing','true'),(62,3,'syntax_highlighting','true'),(63,3,'comment_shortcuts','false'),(64,3,'admin_color','fresh'),(65,3,'use_ssl','0'),(66,3,'show_admin_bar_front','true'),(67,3,'locale',''),(68,3,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(69,3,'wp_user_level','0'),(70,3,'session_tokens','a:1:{s:64:\"85d4c62da3986fcccd7d65550c9529b69e33e95da50fa0c98750c8e806a217b2\";a:4:{s:10:\"expiration\";i:1636994655;s:2:\"ip\";s:12:\"45.12.32.126\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0\";s:5:\"login\";i:1635785055;}}'),(71,3,'wc_last_active','1635724800'),(72,4,'nickname','stxkqcpyjhbxopr'),(73,4,'first_name',''),(74,4,'last_name',''),(75,4,'description',''),(76,4,'rich_editing','true'),(77,4,'syntax_highlighting','true'),(78,4,'comment_shortcuts','false'),(79,4,'admin_color','fresh'),(80,4,'use_ssl','0'),(81,4,'show_admin_bar_front','false'),(82,4,'locale',''),(83,4,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(84,4,'wp_user_level','0'),(85,4,'session_tokens','a:1:{s:64:\"bfee2f2ff70f77e2b228936758b7158601c4f38d1e90e0caed596c75f3bd0877\";a:4:{s:10:\"expiration\";i:1644757766;s:2:\"ip\";s:12:\"195.2.76.246\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0\";s:5:\"login\";i:1643548166;}}'),(86,4,'last_update','1643548196'),(87,5,'nickname','julianemackinnon'),(88,5,'first_name',''),(89,5,'last_name',''),(90,5,'description',''),(91,5,'rich_editing','true'),(92,5,'syntax_highlighting','true'),(93,5,'comment_shortcuts','false'),(94,5,'admin_color','fresh'),(95,5,'use_ssl','0'),(96,5,'show_admin_bar_front','true'),(97,5,'locale',''),(98,5,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(99,5,'wp_user_level','0'),(100,5,'session_tokens','a:30:{s:64:\"cdeadcc119dc4155a2e5c4748bb518f860d7f8aed5e5f39b8b3d2f05127bbfbc\";a:4:{s:10:\"expiration\";i:1678927659;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1677718059;}s:64:\"17b002c8e31325d55f5dc8fbe665e125332e1c159a9d67092cfa6bcac6be83a5\";a:4:{s:10:\"expiration\";i:1678930536;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1677720936;}s:64:\"d54cfa5b44632df44d42cc63374d2cf2cebef4bc311c102bd7933235e21c842b\";a:4:{s:10:\"expiration\";i:1678934584;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1677724984;}s:64:\"1fb25c1136b3cd51b2e725e14e9785b7012b1de3ac471929eef4a568eb36ef5e\";a:4:{s:10:\"expiration\";i:1678937312;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1677727712;}s:64:\"aadce9f1ef02b2b1e022d5d69e11727fa36ee941570b9d210306b705ee9e43a8\";a:4:{s:10:\"expiration\";i:1678945112;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1677735512;}s:64:\"f1aec54d941f17f16abba5c9393bc07c95322b3f66d990d02235a07a16b430bb\";a:4:{s:10:\"expiration\";i:1679666756;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678457156;}s:64:\"2ef9f0c5e138684d7d4266c3a3e8834164ef79e29d137fbd33514578c0e218e0\";a:4:{s:10:\"expiration\";i:1679676469;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678466869;}s:64:\"beb198816aef2838124361055975df4d72e58e7080d67a7db6ffad12b08b7ffb\";a:4:{s:10:\"expiration\";i:1679687233;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678477633;}s:64:\"0045c815ec83544d47dbf691af4ec4a2a1a2fc5e413927ba8886fb0e96f3cf10\";a:4:{s:10:\"expiration\";i:1679691783;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678482183;}s:64:\"b10563b24cebaf6ce670f3a861dfd55baab464b5252c037bf777d2c3ccf38ac0\";a:4:{s:10:\"expiration\";i:1679702605;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678493005;}s:64:\"f7cc1c055bfea1ff25a59bb26ee28ee81b8796d34f21650ba61009de80a175b1\";a:4:{s:10:\"expiration\";i:1679753267;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678543667;}s:64:\"6dd86b2829cd840af7c6474f1c5ec68b6ea30a4a7f319cbd55beac60ae08d657\";a:4:{s:10:\"expiration\";i:1679756820;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678547220;}s:64:\"9fdb0d144ecdd8c4575b02ade561a38da0bb7c9ec66ca85440a4fca58f9f02e2\";a:4:{s:10:\"expiration\";i:1679759054;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678549454;}s:64:\"583bba89d7d2b93378aad3db422bfaa88fe7724a426d48c8b5f766eab492ebf5\";a:4:{s:10:\"expiration\";i:1679761429;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678551829;}s:64:\"1dcde7a5070843a98d2e3dfb256acf9771fd4c5d47dbbf567409f77cf6126dfe\";a:4:{s:10:\"expiration\";i:1679763187;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678553587;}s:64:\"6d5b251a4ecb1d5f2aa9591046a33aae17f46e3bab9582d790061c96d4612cd5\";a:4:{s:10:\"expiration\";i:1679781457;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678571857;}s:64:\"07393c1b69081a9924a19cc12eed2b58daff18134e4ed82ce3de89032a70ea9c\";a:4:{s:10:\"expiration\";i:1679793781;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678584181;}s:64:\"f9c6a5b407197ad083e1356a8c6356605a851f71f06560c3b9a172505a6af66a\";a:4:{s:10:\"expiration\";i:1679804925;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678595325;}s:64:\"948dd6464082e58addb48d39a3ab9a246495a726c2d3820f1ab58d993300a77e\";a:4:{s:10:\"expiration\";i:1679806679;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678597079;}s:64:\"e439af8f00c004ce3eb147ab297ce04ea5314009cdada57f53c0879babd3d864\";a:4:{s:10:\"expiration\";i:1679809010;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678599410;}s:64:\"79dc0a9ae647476a56ec5e36963131818428476d8c2ab0ae061f0f0c64f9bbc6\";a:4:{s:10:\"expiration\";i:1679844211;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678634611;}s:64:\"083bf5a2734d6a36c37f86cd4990011c2f00778fdd3fb0bc013ba775139ce1f5\";a:4:{s:10:\"expiration\";i:1679845416;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678635816;}s:64:\"2ebb83fd8427cd2f5363d9f74e953cb072b87dd0642e79d5df7e12a95ea6da62\";a:4:{s:10:\"expiration\";i:1679848732;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678639132;}s:64:\"72e51a9bead90acebf1e2ad8ecc0835e67df59305be21b2668fbd43093eabbf0\";a:4:{s:10:\"expiration\";i:1679851274;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678641674;}s:64:\"41ff3befc8355bb7408aa9670cdbe374a495290d2ea8f61b218ab5923abb4d68\";a:4:{s:10:\"expiration\";i:1679861427;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678651827;}s:64:\"0e1ebe63b6fe9a48fbb9c41ba67cf076d259dcaecb2b26d9f421a3a03454e392\";a:4:{s:10:\"expiration\";i:1679958281;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678748681;}s:64:\"b8f950dab11cbd92f2f73e4fb43619a9c7f04cb1825d704d15b6b2d9a9533941\";a:4:{s:10:\"expiration\";i:1679970701;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678761101;}s:64:\"8c63eef31e7444c4140e92364815d42bdeb74246a8611de56f93b810412d0f3c\";a:4:{s:10:\"expiration\";i:1679974733;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678765133;}s:64:\"b2f67f58153c2d2a9181a854032f18f319137d8efba365eafde06dbb2dba05b3\";a:4:{s:10:\"expiration\";i:1679978816;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678769216;}s:64:\"a82a2118db3208cc25f592e90fbc0cadb982728bb68b02c186558055f5e7544f\";a:4:{s:10:\"expiration\";i:1679983766;s:2:\"ip\";s:14:\"185.244.182.41\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1678774166;}}'),(101,5,'wc_last_active','1678752000'),(107,5,'_order_count','0'),(171,6,'nickname','alexiscason202'),(172,6,'first_name',''),(173,6,'last_name',''),(174,6,'description',''),(175,6,'rich_editing','true'),(176,6,'syntax_highlighting','true'),(177,6,'comment_shortcuts','false'),(178,6,'admin_color','fresh'),(179,6,'use_ssl','0'),(180,6,'show_admin_bar_front','true'),(181,6,'locale',''),(182,6,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(183,6,'wp_user_level','0'),(184,6,'session_tokens','a:1:{s:64:\"c82cbedb89c2ae5f1f8c63f436ff27177af5be02e2f93d77917982a5e8461bf9\";a:4:{s:10:\"expiration\";i:1719736012;s:2:\"ip\";s:11:\"23.83.185.6\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1718526412;}}'),(185,6,'wc_last_active','1718496000'),(186,7,'nickname','charlenemcgriff'),(187,7,'first_name',''),(188,7,'last_name',''),(189,7,'description',''),(190,7,'rich_editing','true'),(191,7,'syntax_highlighting','true'),(192,7,'comment_shortcuts','false'),(193,7,'admin_color','fresh'),(194,7,'use_ssl','0'),(195,7,'show_admin_bar_front','true'),(196,7,'locale',''),(197,7,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(198,7,'wp_user_level','0'),(199,7,'session_tokens','a:1:{s:64:\"b93db002e0fcb23de773148ce87208e3a910ce4eb8558afbab6b9f77a71c7235\";a:4:{s:10:\"expiration\";i:1721970578;s:2:\"ip\";s:14:\"159.242.227.32\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1720760978;}}'),(200,7,'wc_last_active','1720742400'),(201,7,'_order_count','0'),(203,6,'_order_count','0'),(214,8,'nickname','kaytrevizo'),(215,8,'first_name',''),(216,8,'last_name',''),(217,8,'description',''),(218,8,'rich_editing','true'),(219,8,'syntax_highlighting','true'),(220,8,'comment_shortcuts','false'),(221,8,'admin_color','fresh'),(222,8,'use_ssl','0'),(223,8,'show_admin_bar_front','true'),(224,8,'locale',''),(225,8,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(226,8,'wp_user_level','0'),(227,8,'session_tokens','a:1:{s:64:\"07b49f3b83bef49f4f3f3bde8854e5c0820bb61408eeb10f00ededa9bf58c6e2\";a:4:{s:10:\"expiration\";i:1690470136;s:2:\"ip\";s:13:\"94.131.64.254\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1689260536;}}'),(228,8,'wc_last_active','1689206400'),(229,8,'_order_count','0'),(304,9,'nickname','christieromilly'),(305,9,'first_name',''),(306,9,'last_name',''),(307,9,'description',''),(308,9,'rich_editing','true'),(309,9,'syntax_highlighting','true'),(310,9,'comment_shortcuts','false'),(311,9,'admin_color','fresh'),(312,9,'use_ssl','0'),(313,9,'show_admin_bar_front','true'),(314,9,'locale',''),(315,9,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(316,9,'wp_user_level','0'),(317,9,'session_tokens','a:1:{s:64:\"d167a83532b181de0162f0d7e9f0ab824c1739f5ca0d0fbfad48ee1ad0e05a86\";a:4:{s:10:\"expiration\";i:1692523789;s:2:\"ip\";s:13:\"147.78.141.89\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1691314189;}}'),(318,9,'wc_last_active','1691280000'),(322,10,'nickname','gastonbillington'),(323,10,'first_name',''),(324,10,'last_name',''),(325,10,'description',''),(326,10,'rich_editing','true'),(327,10,'syntax_highlighting','true'),(328,10,'comment_shortcuts','false'),(329,10,'admin_color','fresh'),(330,10,'use_ssl','0'),(331,10,'show_admin_bar_front','true'),(332,10,'locale',''),(333,10,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(334,10,'wp_user_level','0'),(335,10,'session_tokens','a:4:{s:64:\"07c310959053be6ec049026bf078a76fad605b3688adb90f02b4c9fd8d8863b4\";a:4:{s:10:\"expiration\";i:1697342464;s:2:\"ip\";s:12:\"45.80.230.98\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1696132864;}s:64:\"86fc7ea736800144fcfc70f4b6225410a521bf18ec4635fc6eb03b49f132f830\";a:4:{s:10:\"expiration\";i:1697342601;s:2:\"ip\";s:12:\"45.80.230.98\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1696133001;}s:64:\"ea9670d2e86874d77e16a7084fd43cef418409998ac1abd6931ea45a16fcb68f\";a:4:{s:10:\"expiration\";i:1697380047;s:2:\"ip\";s:12:\"45.80.230.98\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1696170447;}s:64:\"3c0ee40444731dfbe61bd3fd27dfbab2b7dd19631256d9512b7f79382b8c3e09\";a:4:{s:10:\"expiration\";i:1697465794;s:2:\"ip\";s:12:\"45.80.230.98\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1696256194;}}'),(336,10,'wc_last_active','1696204800'),(339,10,'_order_count','0'),(344,11,'nickname','adriannaqxc'),(345,11,'first_name',''),(346,11,'last_name',''),(347,11,'description',''),(348,11,'rich_editing','true'),(349,11,'syntax_highlighting','true'),(350,11,'comment_shortcuts','false'),(351,11,'admin_color','fresh'),(352,11,'use_ssl','0'),(353,11,'show_admin_bar_front','true'),(354,11,'locale',''),(355,11,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(356,11,'wp_user_level','0'),(357,11,'session_tokens','a:3:{s:64:\"58b6d6b4b105a1eac25afbe1825101c6167fcc1d84ef355bea91f0ca78219011\";a:4:{s:10:\"expiration\";i:1700471472;s:2:\"ip\";s:13:\"147.78.64.170\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1699261872;}s:64:\"aaa189dd156e85b37f0b4cc50eba3ad8e77f0705399c2a8be6d8b31c0bd0405e\";a:4:{s:10:\"expiration\";i:1700471761;s:2:\"ip\";s:13:\"147.78.64.170\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1699262161;}s:64:\"96f545cbfd1283cc6f5d908d30ba4ed0c0b57de93513ee1fa0d572c96a245953\";a:4:{s:10:\"expiration\";i:1700491431;s:2:\"ip\";s:13:\"147.78.64.170\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1699281831;}}'),(358,11,'wc_last_active','1699228800'),(362,12,'nickname','13.01heq9w6fkbs84v2mbeb768ahf@mail4u.fun'),(363,12,'first_name',''),(364,12,'last_name',''),(365,12,'description',''),(366,12,'rich_editing','true'),(367,12,'syntax_highlighting','true'),(368,12,'comment_shortcuts','false'),(369,12,'admin_color','fresh'),(370,12,'use_ssl','0'),(371,12,'show_admin_bar_front','true'),(372,12,'locale',''),(373,12,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(374,12,'wp_user_level','0'),(375,12,'session_tokens','a:1:{s:64:\"47a33b2b7135223ae6e5cffa31be976bc13c22199aa46953c5499e4243c3179e\";a:4:{s:10:\"expiration\";i:1701042612;s:2:\"ip\";s:14:\"188.130.188.24\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Safari/605.1.15\";s:5:\"login\";i:1699833012;}}'),(376,12,'wc_last_active','1699747200'),(378,13,'nickname','marlongaray6587'),(379,13,'first_name',''),(380,13,'last_name',''),(381,13,'description',''),(382,13,'rich_editing','true'),(383,13,'syntax_highlighting','true'),(384,13,'comment_shortcuts','false'),(385,13,'admin_color','fresh'),(386,13,'use_ssl','0'),(387,13,'show_admin_bar_front','true'),(388,13,'locale',''),(389,13,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(390,13,'wp_user_level','0'),(391,13,'session_tokens','a:21:{s:64:\"63f2656fab4e9ff153c513fe7b16940f6a5d7999cf8b2bb4b7dca98996dec3d3\";a:4:{s:10:\"expiration\";i:1702383889;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701174289;}s:64:\"e5531f6d930e63a64561966e3ecb8da4df37991ba143e3d987feed20a542b6d1\";a:4:{s:10:\"expiration\";i:1702384097;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701174497;}s:64:\"dd7a928099c857702f6ca4311a780163770fef62ab8c0f1b55ba7dbfb4ba371d\";a:4:{s:10:\"expiration\";i:1702387364;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701177764;}s:64:\"bc9b0f838413ce13612d300eac15de329e34c9aba2dea8796571b71c49110c9d\";a:4:{s:10:\"expiration\";i:1702400456;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701190856;}s:64:\"09b90b6745c9f859f26376d20b0c0a720ebf7e083ab04ea66392970927a35504\";a:4:{s:10:\"expiration\";i:1702449537;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701239937;}s:64:\"cf22e3b7147d9df37001757218a1b5f483b6016cd9066c9a6855e19f9199c826\";a:4:{s:10:\"expiration\";i:1702531550;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701321950;}s:64:\"c0fe5bc1aee859b38e77525856437fee8864f3a7df984f90f2c92a773c115d8f\";a:4:{s:10:\"expiration\";i:1702581837;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701372237;}s:64:\"17b41f60c58e61cc9648f6246f7ec25ce785d667aa22870f9e8e2183d1c8ed73\";a:4:{s:10:\"expiration\";i:1702682144;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701472544;}s:64:\"365729b2bcd41db26c418b7d0240697ec0dd923c58990a6af82038208689693e\";a:4:{s:10:\"expiration\";i:1702761455;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701551855;}s:64:\"9918b8325659700dda390e64b5331331162ef231f486e62e11c35eebf5f8d0dd\";a:4:{s:10:\"expiration\";i:1702774168;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701564568;}s:64:\"42150b509752d92c1deb8d3cd235b97b3a3283154f73aaaf1ee4d3475be1caed\";a:4:{s:10:\"expiration\";i:1702825374;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701615774;}s:64:\"cd269f70372298e4a88804a1bec5866aa5129932d2a4d117fb9c8dac154440b7\";a:4:{s:10:\"expiration\";i:1702850070;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701640470;}s:64:\"53bc4e85bbac38b9df612aac6d2a0263e66618a376cc0b95e05225a5728254e0\";a:4:{s:10:\"expiration\";i:1702921906;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701712306;}s:64:\"1df14131c51589360d752173d209ecfb8ed4d8e6e8f37ce1db8b7771ce721e35\";a:4:{s:10:\"expiration\";i:1702980235;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701770635;}s:64:\"04654b3185d9a5613851137114e8f2e7ec3016dfbe7a3e1606696c67fb7b9545\";a:4:{s:10:\"expiration\";i:1703030205;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701820605;}s:64:\"19ca2663c42801010275fa9eeaf09a44064addd4b829811f5d3f861c8b4a812d\";a:4:{s:10:\"expiration\";i:1703072687;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701863087;}s:64:\"1204160ce9e05bdab142d2541bf5a87253992a2f21ab44272a7517bfe26c0fc7\";a:4:{s:10:\"expiration\";i:1703077095;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1701867495;}s:64:\"d7556065eb900a1b0a1b61409c2c2393f25aaf831bb3443a4ca5055aecba4ae6\";a:4:{s:10:\"expiration\";i:1703209667;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1702000067;}s:64:\"45e288ea7f2c7b0ac74dc904c281bf9219e368659d25f9631aade8369480279d\";a:4:{s:10:\"expiration\";i:1703279245;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1702069645;}s:64:\"e34c6b5c3023ff149b42ec5f03e5a32cece892d3563c57f91bdfae584c7e58b2\";a:4:{s:10:\"expiration\";i:1703300011;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1702090411;}s:64:\"1407443b371daa38c6f71b42bb6c638d6ddc6865f618ff048fad20f8b4be5320\";a:4:{s:10:\"expiration\";i:1703372904;s:2:\"ip\";s:13:\"23.231.39.122\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1702163304;}}'),(392,13,'wc_last_active','1702080000'),(396,13,'_order_count','0'),(415,14,'nickname','isabelhoar829'),(416,14,'first_name',''),(417,14,'last_name',''),(418,14,'description',''),(419,14,'rich_editing','true'),(420,14,'syntax_highlighting','true'),(421,14,'comment_shortcuts','false'),(422,14,'admin_color','fresh'),(423,14,'use_ssl','0'),(424,14,'show_admin_bar_front','true'),(425,14,'locale',''),(426,14,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(427,14,'wp_user_level','0'),(428,14,'session_tokens','a:1:{s:64:\"d5dc2224f44ceb736f00bd479d79bb73b31cb97e04a8f4e25217821e51e741ad\";a:4:{s:10:\"expiration\";i:1719872845;s:2:\"ip\";s:13:\"37.139.53.167\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1718663245;}}'),(429,14,'wc_last_active','1718582400'),(431,15,'nickname','Kmtcktwibe'),(432,15,'first_name',''),(433,15,'last_name',''),(434,15,'description',''),(435,15,'rich_editing','true'),(436,15,'syntax_highlighting','true'),(437,15,'comment_shortcuts','false'),(438,15,'admin_color','fresh'),(439,15,'use_ssl','0'),(440,15,'show_admin_bar_front','true'),(441,15,'locale',''),(442,15,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(443,15,'wp_user_level','0'),(444,15,'session_tokens','a:2:{s:64:\"2c3a54b6ac524433fc1b31229e1629acea6c98b8f5fb298a7b4df93d011067e2\";a:4:{s:10:\"expiration\";i:1704249201;s:2:\"ip\";s:13:\"178.159.37.28\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:53.0) Gecko/20100101 Firefox/53.0\";s:5:\"login\";i:1703039601;}s:64:\"65e2189d2a10a3a8a7e60a4903723c12ee5579bf98fc0f733684194a44bd40e1\";a:4:{s:10:\"expiration\";i:1703549620;s:2:\"ip\";s:13:\"178.159.37.28\";s:2:\"ua\";s:72:\"Mozilla/5.0 (Windows NT 8.1; Win64; rv:40.1) Gecko/20100101 Firefox/40.1\";s:5:\"login\";i:1703376820;}}'),(445,15,'wc_last_active','1703376000'),(446,14,'_order_count','0'),(449,15,'_order_count','0'),(465,16,'nickname','UtnvMorce'),(466,16,'first_name',''),(467,16,'last_name',''),(468,16,'description',''),(469,16,'rich_editing','true'),(470,16,'syntax_highlighting','true'),(471,16,'comment_shortcuts','false'),(472,16,'admin_color','fresh'),(473,16,'use_ssl','0'),(474,16,'show_admin_bar_front','true'),(475,16,'locale',''),(476,16,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(477,16,'wp_user_level','0'),(478,16,'session_tokens','a:2:{s:64:\"af010ebbe671a6ce32db140b44feb6e72e5c415724568624f5596e640b68bf23\";a:4:{s:10:\"expiration\";i:1707630758;s:2:\"ip\";s:13:\"178.159.37.17\";s:2:\"ua\";s:144:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 YaBrowser/17.10.1.1204 Yowser/2.5 Safari/537.36\";s:5:\"login\";i:1706421158;}s:64:\"443a13cf5243780b960d20f53f62cac4d301e8081b0a96ada54a1f5a15f1b140\";a:4:{s:10:\"expiration\";i:1706931140;s:2:\"ip\";s:13:\"178.159.37.17\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36\";s:5:\"login\";i:1706758340;}}'),(479,16,'wc_last_active','1706745600'),(486,16,'_order_count','0'),(510,17,'nickname','marionkwok82596'),(511,17,'first_name',''),(512,17,'last_name',''),(513,17,'description',''),(514,17,'rich_editing','true'),(515,17,'syntax_highlighting','true'),(516,17,'comment_shortcuts','false'),(517,17,'admin_color','fresh'),(518,17,'use_ssl','0'),(519,17,'show_admin_bar_front','true'),(520,17,'locale',''),(521,17,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(522,17,'wp_user_level','0'),(523,17,'session_tokens','a:4:{s:64:\"7704d93a8607b61b41999efaf84bf48668533c76a340b712021940ba134165ea\";a:4:{s:10:\"expiration\";i:1741366573;s:2:\"ip\";s:11:\"77.83.1.177\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1740156973;}s:64:\"0e89619ebac0cefb1d069c64dd8ad1a161ee88610c28393ee359e99ce8c23e88\";a:4:{s:10:\"expiration\";i:1741694599;s:2:\"ip\";s:11:\"77.83.1.102\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1740484999;}s:64:\"f2831e2efee9844198f217731135cbca89e53137963fdcd5f767be257b0f9825\";a:4:{s:10:\"expiration\";i:1741973095;s:2:\"ip\";s:11:\"77.83.1.144\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1740763495;}s:64:\"d9ad86a2b5784a49a625f799410cde51354662e80b5d2536e385dfaaf1223567\";a:4:{s:10:\"expiration\";i:1742006259;s:2:\"ip\";s:11:\"77.83.1.124\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1740796659;}}'),(524,17,'wc_last_active','1740787200'),(525,18,'nickname','olivemyles1032'),(526,18,'first_name',''),(527,18,'last_name',''),(528,18,'description',''),(529,18,'rich_editing','true'),(530,18,'syntax_highlighting','true'),(531,18,'comment_shortcuts','false'),(532,18,'admin_color','fresh'),(533,18,'use_ssl','0'),(534,18,'show_admin_bar_front','true'),(535,18,'locale',''),(536,18,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(537,18,'wp_user_level','0'),(538,18,'session_tokens','a:2:{s:64:\"1945d4467e2dae38833dd62480381423a0ab62a3f0b0e889593c0f0b0521dc5e\";a:4:{s:10:\"expiration\";i:1740839187;s:2:\"ip\";s:11:\"77.83.1.111\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1739629587;}s:64:\"50be5498e67a5b9c08e0f29c9086433f196d1b9f9a5529e986343dc8d68a7753\";a:4:{s:10:\"expiration\";i:1741553965;s:2:\"ip\";s:11:\"77.83.1.116\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1740344365;}}'),(539,18,'wc_last_active','1740268800'),(540,17,'_order_count','0'),(542,18,'_order_count','0'),(569,19,'nickname','Migueldaund'),(570,19,'first_name',''),(571,19,'last_name',''),(572,19,'description',''),(573,19,'rich_editing','true'),(574,19,'syntax_highlighting','true'),(575,19,'comment_shortcuts','false'),(576,19,'admin_color','fresh'),(577,19,'use_ssl','0'),(578,19,'show_admin_bar_front','true'),(579,19,'locale',''),(580,19,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(581,19,'wp_user_level','0'),(582,19,'session_tokens','a:1:{s:64:\"03bf0c5f8e886dc074e9a51de91d9fae30341b60a0adb9cbe44f325541cd41d0\";a:4:{s:10:\"expiration\";i:1740493429;s:2:\"ip\";s:13:\"37.139.53.179\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1739283829;}}'),(583,19,'wc_last_active','1739232000'),(586,20,'nickname','dorinegearhart'),(587,20,'first_name',''),(588,20,'last_name',''),(589,20,'description',''),(590,20,'rich_editing','true'),(591,20,'syntax_highlighting','true'),(592,20,'comment_shortcuts','false'),(593,20,'admin_color','fresh'),(594,20,'use_ssl','0'),(595,20,'show_admin_bar_front','true'),(596,20,'locale',''),(597,20,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(598,20,'wp_user_level','0'),(599,20,'session_tokens','a:1:{s:64:\"b29a086c34f227b824fcd9dd55e400626ebfffe99f8ce53b8f058da2a676930a\";a:4:{s:10:\"expiration\";i:1744646881;s:2:\"ip\";s:11:\"37.212.87.5\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1743437281;}}'),(600,20,'wc_last_active','1743379200'),(602,20,'_order_count','0'),(616,21,'nickname','MatthewThate'),(617,21,'first_name',''),(618,21,'last_name',''),(619,21,'description',''),(620,21,'rich_editing','true'),(621,21,'syntax_highlighting','true'),(622,21,'comment_shortcuts','false'),(623,21,'admin_color','fresh'),(624,21,'use_ssl','0'),(625,21,'show_admin_bar_front','true'),(626,21,'locale',''),(627,21,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(628,21,'wp_user_level','0'),(629,21,'session_tokens','a:1:{s:64:\"fd656f9930e9218abc8b9befcb21c5704f3908cdff1cc070c77ae21cfe88ee09\";a:4:{s:10:\"expiration\";i:1757942107;s:2:\"ip\";s:13:\"37.212.87.169\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1757769307;}}'),(630,21,'wc_last_active','1757721600'),(631,21,'_order_count','0');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'philip','$P$B1A/39oWgDapK9inIuhUxPpE7ewgmA0','philip','info@thedragonhouse.co.za','http://www.thedragonhouse.co.za','2020-10-16 12:49:58','1709749499:$P$BEkmx29TTFeuT6g.05mFrk9UVfydx50',0,'philip'),(2,'stfaklqooxptmjx','$P$B20gKfu8kD.LobQ.estTKr78SAD7VO.','stfaklqooxptmjx','stfaklqoox@mail.com','','2021-10-31 22:59:17','',0,'stfaklqooxptmjx'),(3,'stskwqnjwgxmqml','$P$Bx6Fw.HNedhehKhAEuLlHD.UqYkh2i0','stskwqnjwgxmqml','stskwqnjwg@mail.com','','2021-11-01 16:44:12','',0,'stskwqnjwgxmqml'),(4,'stxkqcpyjhbxopr','$P$BDVEb0aW4I5ahN2EEo7W4B/z6NHJ.g0','stxkqcpyjhbxopr','stxkqcpyjh@mail.com','','2022-01-30 13:09:26','',0,'stxkqcpyjhbxopr'),(5,'julianemackinnon','$P$BbTSy2BUPDG5r6EH/buya1kW5n9rL61','julianemackinnon','a.nt.o.ni.os.u.pe.rs.port.k.u.cha.a205@gmail.com','','2023-02-17 19:00:57','',0,'julianemackinnon'),(6,'alexiscason202','$P$BQfj0tFcM2agGkSh4lCWUdG5qo1eX/0','alexiscason202','alexis_cason@plumandsplitmilk.com','','2023-03-19 23:06:40','',0,'alexiscason202'),(7,'charlenemcgriff','$P$BNWdxEf.saNGwow428s2mgxz6HhpPe1','charlenemcgriff','charlene-mcgriff@bivforbrooklyn.com','','2023-03-23 01:29:24','',0,'charlenemcgriff'),(8,'kaytrevizo','$P$B3Z964yTwrYqGRnOZXKBs.EPPiCvpD.','kaytrevizo','mattbizenmail7@gmx.com','','2023-04-18 23:33:46','',0,'kaytrevizo'),(9,'christieromilly','$P$BbYvyJbWrBM7dE1v0niZoJAoxgTGmq1','christieromilly','christie_romilly93@jahqoi.com','','2023-08-06 09:29:49','',0,'christieromilly'),(10,'gastonbillington','$P$BZVTkm5oelOclaGKJq.19.Akh7IDmQ1','gastonbillington','gaston-billington@hotmail.com','','2023-10-01 04:01:03','',0,'gastonbillington'),(11,'adriannaqxc','$P$B9c66UN2n3j0yQ078wdCegTz9nVodf/','adriannaqxc','adrianna.harkins@outlook.com.br','','2023-11-06 09:11:12','',0,'adriannaqxc'),(12,'13.01heq9w6fkbs84v2mbeb768ahf@mail4u.fun','$P$BOiNrE.s0cwVjG2P96WPbhy3W59UFg0','13-01heq9w6fkbs84v2mbeb768ahfmail4u-fun','13.01heq9w6fkbs84v2mbeb768ahf@mail4u.fun','','2023-11-12 23:50:12','',0,'13.01heq9w6fkbs84v2mbeb768ahf@mail4u.fun'),(13,'marlongaray6587','$P$BuMandIFPAaKrOCE/mUpYx0iFHYReX.','marlongaray6587','marlongaray64@also.jsafes.com','','2023-11-28 12:24:48','',0,'marlongaray6587'),(14,'isabelhoar829','$P$BKJVsmsLtieaqai.bo0tgpgaSsfs2F0','isabelhoar829','genphcy@bmaill.xyz','','2023-12-19 18:58:37','',0,'isabelhoar829'),(15,'Kmtcktwibe','$P$Bdwu2OiREJe/ZHV1v7m5LwGRwh3R7y/','kmtcktwibe','hwg6jdgsfg5ci@gmail.com','','2023-12-20 02:33:20','',0,'Kmtcktwibe'),(16,'UtnvMorce','$P$BvsVTmPElsvD2Lkns7NeffrbXs/sbQ1','utnvmorce','wf43sdfx5dnj5gbtl@gmail.com','','2024-01-28 05:52:38','',0,'UtnvMorce'),(17,'marionkwok82596','$P$BNnCMZu2wwCPIAykUg8WdSkkDWBmTJ1','marionkwok82596','luciennemartinsen2617@1secmail.com','','2024-12-30 21:32:42','',0,'marionkwok82596'),(18,'olivemyles1032','$P$BEGuxFdzJvSvqRgQPiYEIKN2eMEpSQ0','olivemyles1032','eulaliasantiago@1secmail.com','','2024-12-31 18:33:14','',0,'olivemyles1032'),(19,'Migueldaund','$P$BZdt6ZkSuWgR8wslSGF5gGBgloIozk0','migueldaund','kertyucds@onet.eu','','2025-02-11 14:23:48','',0,'Migueldaund'),(20,'dorinegearhart','$P$Bg4ggGKHSafXZ0XFw2H7oe3rq4L5D7/','dorinegearhart','fikach0108@inbox.lv','','2025-02-16 02:39:03','',0,'dorinegearhart'),(21,'MatthewThate','$P$BQcXm2kd65SevQzEuc0WIUUxUHIRYK.','matthewthate','003xrumer@sitesseo.site','','2025-08-20 02:22:42','',0,'MatthewThate');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_admin_note_actions`
--
DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=104589 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_admin_note_actions`
--
LOCK TABLES `wp_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_note_actions` VALUES (1,1,'connect','Connect','?page=wc-addons§ion=helper','unactioned',0,''),(2,2,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971&SIGNUPPAGE=plugin','actioned',0,''),(3,3,'open-marketing-hub','Open marketing hub','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,''),(7,7,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,''),(20,8,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned',1,''),(126,9,'tracking-opt-in','Activate usage tracking','','actioned',1,''),(130,10,'share-feedback','Share feedback','https://automattic.survey.fm/new-onboarding-survey','actioned',0,''),(131,11,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback'),(132,11,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback'),(172,12,'home-screen-feedback-share-feedback','Share feedback','https://automattic.survey.fm/home-screen-survey','actioned',0,''),(591,17,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,''),(993,14,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(995,16,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(1158,26,'install-mollie','Install Mollie','https://wordpress.org/plugins/mollie-payments-for-woocommerce/','actioned',1,''),(3576,43,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,''),(5825,48,'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',1,''),(7018,50,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,''),(7885,42,'wayflyer_q3_2021','Get funded','https://woocommerce.com/products/wayflyer/','actioned',1,''),(7886,41,'eu_vat_changes_2021','Learn more about the EU tax regulations','https://woocommerce.com/posts/new-eu-vat-regulations','actioned',1,''),(7887,30,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,''),(7888,20,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=§ion=changelog','actioned',1,''),(7889,21,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,''),(7905,33,'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',1,''),(7921,49,'learn-more','Learn more','https://woocommerce.com/products/bbpos-chipper2xbt-card-reader?utm_source=inbox&utm_medium=product&utm_campaign=bbpos-chipper-launch','unactioned',1,''),(8014,22,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,''),(8015,23,'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,''),(8016,29,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments','actioned',1,''),(8017,29,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,''),(8018,27,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,''),(8019,28,'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,''),(8274,52,'browse_extensions','Browse extensions','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,''),(8275,53,'browse_extensions','Browse extensions','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,''),(10901,37,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(10902,38,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(11416,62,'wc_simple_payments_m2_reader_launch_q1_2022','Learn more','https://woocommerce.com/in-person-payments/','actioned',0,''),(11560,54,'stripe_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,''),(11561,55,'square_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,''),(11562,56,'wcpay_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,''),(12642,63,'wcpay_applepay_q1_2022','Let your customers know about Apple Pay','https://developer.apple.com/apple-pay/marketing/','actioned',0,''),(12643,64,'stripe_applepay_q1_2022','Add Apple Pay','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=checkout§ion=stripe','actioned',0,''),(12644,65,'square_applepay_q1_2022','Add Apple Pay','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=square','actioned',0,''),(13681,66,'lead_gen_existing_customers_1','Yes, please','https://woocommerce.com/take-your-business-to-the-next-level/?utm_source=inbox_note&utm_medium=product&utm_campaign=lead_gen_existing_customers_1','actioned',0,''),(13946,70,'pinterest_gtm_q2_2021','Get started for free','https://woocommerce.com/products/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_gtm_q2_2021','unactioned',1,''),(14056,72,'woocommerce_payments_subscriptions_nopayments_q2_2022','Start selling subscriptions','https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_payments_subscriptions_nopayments_q2_2022','actioned',0,''),(14057,73,'woocommerce_payments_subscriptions_yespayments_q2_2022','Get started','https://woocommerce.com/document/payments/subscriptions/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_payments_subscriptions_yespayments_q2_2022#section-2','actioned',0,''),(14476,78,'googlelistings_multicountrygtm_q22022','Get Google Listings & Ads – free','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=googlelistings_multicountrygtm_q22022','actioned',1,''),(14703,74,'setup_task_second_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned',0,''),(14741,77,'affirm_q2_2022','Get started for free','https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q2_2022','unactioned',1,''),(15114,79,'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',0,''),(16003,76,'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',1,''),(16153,81,'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',1,''),(16446,82,'tiktok-webinar-promo-july2022-button','RSVP Now','https://gettingstartedwithtiktokforwoocommerce.splashthat.com/','actioned',1,''),(17272,71,'setup_task_initiative_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned',0,''),(17952,84,'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',1,''),(18328,83,'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',1,''),(18334,87,'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',0,''),(18915,89,'product_creation_usability_test_6_months_take_a_look','Try it now','https://t.maze.co/103446424','unactioned',1,''),(18916,90,'product_creation_usability_test_12_months_take_a_look','Try it now','https://t.maze.co/103446424','unactioned',1,''),(18917,88,'product_creation_usability_test_3_months_take_a_look','Try it now','https://t.maze.co/103446424','unactioned',1,''),(19036,91,'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',1,''),(19037,91,'dismiss_customize_your_deposits','Dismiss','','actioned',1,''),(19851,94,'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',0,''),(20055,92,'googlelistings_signals2022_hasGLA_click','Connect Google Listings & Ads','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-admin&path=marketing','unactioned',1,''),(20056,93,'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',1,''),(20417,96,'facebook_q4-2022_hasFB-click','Drive more demand','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-facebook','unactioned',1,''),(20499,97,'facebook_q4-2022_noFB-click','Get started','https://woocommerce.com/products/facebook/?utm_source=inbox_note&utm_medium=product&utm_campaign=facebook_q4-2022_noFB-click','unactioned',1,''),(20584,59,'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',1,''),(20585,4,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,''),(20587,6,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,''),(20588,19,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,''),(20591,25,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',1,''),(22122,95,'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',1,''),(22375,106,'meta-hasFB-dec-q4-2022','Connect your store','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-facebook','unactioned',1,''),(22632,107,'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',1,''),(22924,103,'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',0,''),(23249,98,'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',1,''),(23253,104,'apple_pay_square_q422','Enable Apple Pay','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=square_credit_card','unactioned',1,''),(23254,105,'apple_pay_wcpay_q422','Enable Apple Pay','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments','unactioned',1,''),(23429,61,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned',1,''),(24333,110,'storeediting_feedback_jan_2023','Share your input','https://t.maze.co/135212793','actioned',1,''),(24536,100,'woocommerce_admin_deprecation_q4_2022','Deactivate WooCommerce Admin','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php','actioned',0,''),(24537,99,'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',1,''),(24578,101,'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',1,''),(26433,112,'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',1,''),(28357,134,'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',0,''),(28358,134,'woopay-beta-existingmerchants-noaction-documentation-27APR23-dismiss-test2','Dismiss','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin#','actioned',1,''),(28359,135,'woopay-beta-existingmerchants-update-WCPay-27APR23-test','Update WooCommerce Payments','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','actioned',1,''),(28360,135,'woopay-beta-existingmerchants-update-WCPay-27APR23-dismiss-test','Dismiss','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin#','actioned',0,''),(29729,131,'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',1,''),(30102,146,'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',1,''),(30313,113,'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',0,''),(30314,114,'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',0,''),(30897,119,'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',1,''),(30898,120,'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',1,''),(30899,121,'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',1,''),(30900,122,'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',1,''),(30901,123,'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',1,''),(30902,124,'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',1,''),(30903,125,'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',1,''),(30904,126,'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',1,''),(30905,127,'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',1,''),(30906,128,'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',1,''),(30907,129,'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',1,''),(30908,130,'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',1,''),(30931,149,'product_management_card_sorting','Get started','https://t.maze.co/163892579','unactioned',1,''),(33525,162,'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',1,''),(34325,60,'browse_extensions','Browse extensions','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-addons','unactioned',1,''),(34443,80,'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',0,''),(34893,102,'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',0,''),(35738,154,'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',0,''),(36016,166,'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',1,''),(36377,167,'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',1,''),(36477,172,'tiktok-apac-webinar-2023','RSVP today','https://unlockingtiktokwithwoocommerce.splashthat.com/','actioned',1,''),(36946,174,'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',1,''),(37042,175,'google_uxstudy_recruitment_q3-2023','Take the survey','https://eachandother.fra1.qualtrics.com/jfe/form/SV_0W118szcJOtIkzc','unactioned',1,''),(37403,156,'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',1,''),(37404,157,'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',1,''),(37405,158,'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',1,''),(37406,159,'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',1,''),(37407,160,'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',1,''),(37408,161,'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',1,''),(38254,117,'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',0,''),(38805,147,'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',0,''),(38806,148,'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',0,''),(39434,177,'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',1,''),(39521,178,'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',1,''),(40040,179,'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',1,''),(41448,180,'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',1,''),(41449,181,'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',1,''),(42431,183,'Klarna_Enable_CTA_10OCT23','Enable Klarna','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminwp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments/#payment-methods','actioned',1,''),(42432,183,'Klarna_Update_CTA_10OCT23','Update WooPayments','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminwp-admin/plugins.php?s=woocommercepayments&plugin_status=all','actioned',0,''),(44088,184,'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',0,''),(44089,185,'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',0,''),(44090,186,'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',0,''),(44184,188,'wc_admin_WooPay_Q4_2023','Get started today','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminhttps://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_WooPay_Q4_2023','actioned',1,''),(44850,190,'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',1,''),(45183,189,'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',1,''),(48556,191,'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',0,''),(48557,192,'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',0,''),(54614,196,'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',0,''),(56448,85,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned',1,''),(56449,85,'dismiss','Dismiss','','actioned',0,''),(56450,86,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned',1,''),(56451,86,'dismiss','Dismiss','','actioned',0,''),(57435,197,'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',1,''),(57798,194,'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',0,''),(60290,150,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings','See available updates','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','unactioned',0,''),(60291,150,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss','Dismiss','#','actioned',0,''),(60468,153,'woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings','See available updates','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','unactioned',0,''),(60469,153,'woocommerce-WCPayments-June-2023-updated-needed-Dismiss','Dismiss','#','actioned',0,''),(60484,170,'woocommerce-WooPayments-Aug-2023-update-needed','See available updates','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminupdate-core.php?','unactioned',1,''),(60485,170,'dismiss','Dismiss','#','actioned',1,''),(61588,198,'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',1,''),(69310,5,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,''),(70367,176,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned',1,''),(99803,199,'woohoo10-coupon','Get 10% off now','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin/admin.php?page=wc-admin&tab=extensions&path=extensions','unactioned',1,''),(101100,57,'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',1,''),(101101,58,'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',1,''),(101146,140,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned',1,''),(101147,140,'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',0,''),(101148,141,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned',1,''),(101149,141,'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',0,''),(101150,142,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned',1,''),(101151,142,'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',0,''),(101152,143,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','http://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned',1,''),(101153,143,'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',0,''),(104518,18,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned',1,''),(104519,24,'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',1,''),(104520,31,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/woopayments-new-user-feedback','actioned',1,''),(104521,32,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,''),(104522,35,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned',1,''),(104523,34,'update-wc-subscriptions-3-0-15','View latest version','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin&page=wc-addons§ion=helper','actioned',1,''),(104524,36,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,''),(104525,39,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,''),(104526,40,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,''),(104527,44,'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',1,''),(104528,44,'dismiss','Dismiss','','actioned',0,''),(104529,45,'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',1,''),(104530,45,'dismiss','Dismiss','','actioned',0,''),(104531,46,'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',1,''),(104532,46,'dismiss','Dismiss','','actioned',0,''),(104533,47,'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',1,''),(104534,47,'dismiss','Dismiss','','actioned',0,''),(104535,51,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned',1,''),(104536,67,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',1,''),(104537,67,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned',0,''),(104538,68,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',1,''),(104539,68,'dismiss','Dismiss','','actioned',0,''),(104540,69,'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',0,''),(104541,75,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned',0,''),(104542,108,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin/update-core.php','unactioned',0,''),(104543,108,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned',0,''),(104544,109,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin/update-core.php','unactioned',0,''),(104545,109,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned',0,''),(104546,111,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned',1,''),(104547,136,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned',1,''),(104548,136,'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',0,''),(104549,115,'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',0,''),(104550,115,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned',0,''),(104551,116,'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',0,''),(104552,118,'extension-settings','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminupdate-core.php','unactioned',0,''),(104553,118,'dismiss','Dismiss','#','actioned',0,''),(104554,137,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','unactioned',1,''),(104555,137,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned',0,''),(104556,132,'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',1,''),(104557,133,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','actioned',1,''),(104558,138,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned',1,''),(104559,138,'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',0,''),(104560,139,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','unactioned',1,''),(104561,139,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned',0,''),(104562,144,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned',1,''),(104563,144,'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',0,''),(104564,145,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','unactioned',1,''),(104565,145,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned',0,''),(104566,152,'woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','unactioned',0,''),(104567,152,'woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss','Dismiss','#','actioned',0,''),(104568,151,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','unactioned',0,''),(104569,151,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned',0,''),(104570,155,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','actioned',1,''),(104571,155,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin#','actioned',1,''),(104572,163,'woocommerce-WCGC-July-2023-update-needed','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','unactioned',1,''),(104573,163,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned',1,''),(104574,164,'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',0,''),(104575,165,'plugin-list','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','unactioned',1,''),(104576,165,'dismiss','Dismiss','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-admin','actioned',0,''),(104577,168,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminupdate-core.php?','unactioned',1,''),(104578,168,'dismiss','Dismiss','#','actioned',1,''),(104579,169,'dismiss','Dismiss','#','actioned',1,''),(104580,171,'dismiss','Dismiss','#','actioned',1,''),(104581,173,'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',1,''),(104582,182,'woocommerce-usermeta-Sept2023-productvendors','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminplugins.php','unactioned',1,''),(104583,182,'dismiss','Dismiss','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-admin#','actioned',1,''),(104584,187,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','https://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-adminupdate-core.php','unactioned',1,''),(104585,187,'dismiss','Dismiss','#','actioned',0,''),(104586,193,'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',0,''),(104587,193,'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',0,''),(104588,195,'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',0,'');
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_admin_notes`
--
DROP TABLE IF EXISTS `wp_wc_admin_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=200 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_admin_notes`
--
LOCK TABLES `wp_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_notes` VALUES (1,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2020-10-19 05:58:34',NULL,0,'plain','',0,'info'),(2,'wc-admin-onboarding-email-marketing','info','en_US','Tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','actioned','woocommerce-admin','2020-10-19 05:58:34',NULL,0,'plain','',0,'info'),(3,'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','2020-10-19 05:58:34',NULL,0,'plain','',0,'info'),(4,'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','2020-10-19 05:58:35',NULL,0,'plain','',0,'info'),(5,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','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.','{}','pending','woocommerce.com','2020-10-19 05:58:35',NULL,0,'plain','',0,'info'),(6,'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','2020-10-19 05:58:35',NULL,0,'plain','',0,'info'),(7,'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','2020-10-23 12:16:23',NULL,0,'plain','',0,'info'),(8,'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','2020-10-24 12:16:56',NULL,0,'plain','',0,'info'),(9,'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://www.thedragonhouse.co.za/wp-admin/admin.php?page=wc-settings&tab=advanced&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','2020-10-26 14:55:42',NULL,0,'plain','',0,'info'),(10,'wc-admin-store-notice-giving-feedback-2','info','en_US','Give feedback','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','{}','unactioned','woocommerce-admin','2020-10-27 12:16:31',NULL,0,'plain','',0,'info'),(11,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2020-10-27 12:16:31',NULL,0,'plain','',0,'info'),(12,'wc-admin-home-screen-feedback','info','en_US','Help us improve the WooCommerce Home screen','We\'d love your input to shape the future of the WooCommerce Home screen together. Feel free to share any feedback, ideas or suggestions that you have.','{}','unactioned','woocommerce-admin','2020-11-01 17:38:49',NULL,0,'plain','',0,'info'),(13,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2020-11-20 12:29:12',NULL,0,'plain','',0,'info'),(14,'wcpay-subscriptions-2020-11','marketing','en_US','Manage subscriber payments from your store\'s dashboard','Securely accept cards and manage transactions right from your dashboard with <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Payments</a> – now supporting <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Subscriptions</a>! <br /><br /><em>By clicking \"Install now,\" you agree to our <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_ctrl20\" target=\"_blank\">Terms of Service</a>.</em>','{}','pending','woocommerce.com','2020-11-20 12:29:12',NULL,0,'plain','',0,'info'),(15,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2020-12-10 12:30:51',NULL,0,'plain','',0,'info'),(16,'wcpay-subscriptions-2020-12','marketing','en_US','Manage payments from your store\'s dashboard','Securely accept cards and manage transactions right from your dashboard with <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Payments</a>! Zero setup fees or monthly fees. Just pay-as-you-go, starting at just 2.9% + $0.30 per transaction for U.S.-issued cards. <br /><br /><em>By clicking \"Install now,\" you agree to our <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_ctrl20\" target=\"_blank\">Terms of Service</a>.</em>','{}','pending','woocommerce.com','2020-12-10 12:30:51',NULL,0,'plain','',0,'info'),(17,'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-01-18 05:42:48',NULL,0,'plain','',0,'info'),(18,'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>.','{}','pending','woocommerce.com','2021-01-21 12:26:56',NULL,0,'plain','',0,'info'),(19,'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-01-27 05:35:42',NULL,0,'plain','',0,'info'),(20,'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.','{}','pending','woocommerce.com','2021-02-12 13:27:52',NULL,0,'plain','',0,'info'),(21,'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-02-12 13:27:53',NULL,0,'plain','',0,'info'),(22,'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-02-12 13:27:54',NULL,0,'plain','',0,'info'),(23,'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-02-12 13:27:54',NULL,0,'plain','',0,'info'),(24,'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-02-17 13:51:43',NULL,0,'plain','',0,'info'),(25,'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-02-17 13:51:43',NULL,0,'plain','',0,'info'),(26,'wc-admin-effortless-payments-by-mollie','info','en_US','Effortless payments by Mollie','Offer global and local payment methods, get onboarded in minutes and supported in your language – try it now!','{}','pending','woocommerce.com','2021-02-20 12:23:19',NULL,0,'plain','',0,'info'),(27,'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-20 12:38:36',NULL,0,'plain','',0,'info'),(28,'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-20 12:38:37',NULL,0,'plain','',0,'info'),(29,'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&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>.','{}','pending','woocommerce.com','2021-03-31 12:17:13',NULL,0,'plain','',0,'info'),(30,'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-01 12:50:00',NULL,0,'plain','',0,'info'),(31,'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.','{}','pending','woocommerce.com','2021-04-16 12:32:57',NULL,0,'plain','',0,'info'),(32,'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 12:20:16',NULL,0,'plain','',0,'info'),(33,'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&utm_medium=product&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-14 12:20:16',NULL,0,'plain','',0,'info'),(34,'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-05-31 12:35:40',NULL,0,'plain','',0,'info'),(35,'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.','{}','pending','woocommerce.com','2021-06-07 12:23:47',NULL,0,'plain','',0,'info'),(36,'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-10 12:41:03',NULL,0,'plain','',0,'info'),(37,'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&utm_source=product&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&utm_source=product&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 12:20:16',NULL,0,'plain','',0,'info'),(38,'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&utm_source=product&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&utm_source=product&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 12:20:17',NULL,0,'plain','',0,'info'),(39,'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.','{}','pending','woocommerce.com','2021-06-23 12:32:51',NULL,0,'plain','',0,'info'),(40,'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 12:32:51',NULL,0,'plain','',0,'info'),(41,'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.','{}','pending','woocommerce.com','2021-06-24 12:22:35',NULL,0,'plain','',0,'info'),(42,'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-15 12:23:34',NULL,0,'plain','',0,'info'),(43,'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','2021-07-16 12:25:18',NULL,0,'plain','',0,'info'),(44,'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 12:25:28',NULL,0,'plain','',0,'info'),(45,'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 12:25:28',NULL,0,'plain','',0,'info'),(46,'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.','{}','unactioned','woocommerce.com','2021-07-16 12:25:29',NULL,0,'plain','',0,'info'),(47,'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 12:25:29',NULL,0,'plain','',0,'info'),(48,'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-08-31 12:20:59',NULL,0,'plain','',0,'info'),(49,'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-15 12:18:04',NULL,0,'plain','',0,'info'),(50,'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','2021-10-19 12:21:04',NULL,0,'plain','',0,'info'),(51,'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 12:38:22',NULL,0,'plain','',0,'info'),(52,'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 12:17:30',NULL,0,'plain','',0,'info'),(53,'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 12:17:30',NULL,0,'plain','',0,'info'),(54,'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-11 12:19:37',NULL,0,'plain','',0,'info'),(55,'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-11 12:19:37',NULL,0,'plain','',0,'info'),(56,'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-11 12:19:37',NULL,0,'plain','',0,'info'),(57,'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 12:20:39',NULL,0,'plain','',0,'info'),(58,'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 12:20:39',NULL,0,'plain','',0,'info'),(59,'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 12:20:39',NULL,0,'plain','',0,'info'),(60,'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.','{}','pending','woocommerce.com','2021-11-23 15:18:31',NULL,0,'plain','',0,'info'),(61,'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-01-06 12:19:13',NULL,0,'plain','',0,'info'),(62,'wc_simple_payments_m2_reader_launch_q1_2022','marketing','en_US','Take quick and easy in-person payments','WooCommerce is continuing to power up your business with our new Simple Payments feature, built exclusively for WooCommerce In-Person Payments. Capture quick and simple payments anywhere else your customers are – or offer a local pickup option with payment taken in-person for orders placed online.','{}','pending','woocommerce.com','2022-02-04 12:16:33',NULL,0,'plain','',0,'info'),(63,'wcpay_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Diane does','See how Diane from <a href=\"https://woocommerce.com/posts/lady-dye-yarns-from-crafts-to-activism-with-woocommerce/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Lady Dye Yarns</a> uses Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – Apple Pay is included in WooCommerce Payments. Here\'s how you can increase conversions by encouraging shoppers to pay with a single tap.','{}','pending','woocommerce.com','2022-02-07 14:44:35',NULL,0,'plain','',0,'info'),(64,'stripe_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Thomas does','Read the inspirational story of <a href=\"https://woocommerce.com/posts/incredible-story-of-thomas-trendy-socks-down-syndrome-entrepreneur/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Thomas\'s Trendy Socks</a> and see how he’s using Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – ready to turn more visitors into buyers? Accept Apple Pay by selecting Enable express checkouts in Settings > Payments > Stripe.','{}','pending','woocommerce.com','2022-02-07 14:44:35',NULL,0,'plain','',0,'info'),(65,'square_applepay_q1_2022','marketing','en_US','Increase conversions with a faster checkout experience','By enabling Apple Pay in Square, your customers can complete purchases quickly and securely with a single touch or a glance – no lengthy checkout forms necessary. Accept Apple Pay by enabling Digital Wallets within Settings > Payments > Square.','{}','pending','woocommerce.com','2022-02-07 14:44:35',NULL,0,'plain','',0,'info'),(66,'lead_gen_existing_customers_1','marketing','en_US','Talk to a consultant','As your business grows, you want to optimize costs, streamline operations, and sell more. We can help. Talk to us about how you can get the most out of WooCommerce.','{}','pending','woocommerce.com','2022-02-11 12:17:00',NULL,0,'plain','',0,'info'),(67,'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.','{}','unactioned','woocommerce.com','2022-03-11 12:18:08',NULL,0,'plain','',0,'info'),(68,'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-03-11 12:18:08',NULL,0,'plain','',0,'info'),(69,'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 > Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2022-03-23 12:19:51',NULL,0,'plain','',0,'info'),(70,'pinterest_gtm_q2_2021','marketing','en_US','Get your products in front of a large, engaged audience','Did you know that shoppers on Pinterest spend twice as much as people on other social platforms? With the new, official Pinterest for WooCommerce, you can turn your product catalog into shoppable Pins and showcase them to 400+ million monthly users looking to buy.','{}','unactioned','woocommerce.com','2022-04-24 12:18:48',NULL,0,'plain','',0,'info'),(71,'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-04-26 12:31:50',NULL,0,'plain','',0,'info'),(72,'woocommerce_payments_subscriptions_nopayments_q2_2022','marketing','en_US','Sell subscriptions online – without a paid extension','Say hello to WooCommerce Payments – now with built-in subscriptions functionality. Get free access to the features you need to start earning recurring revenue online. Pay as you go, with no setup costs or monthly fees.','{}','pending','woocommerce.com','2022-04-27 12:20:58',NULL,0,'plain','',0,'info'),(73,'woocommerce_payments_subscriptions_yespayments_q2_2022','marketing','en_US','Sell subscriptions online – no extra extension required','It\'s here! WooCommerce Payments now features built-in subscriptions functionality. No need to install an extra, paid extension – we\'ve made it simpler than ever to start earning recurring revenue. Ready to grow your business?','{}','pending','woocommerce.com','2022-04-27 12:20:58',NULL,0,'plain','',0,'info'),(74,'setup_task_second_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-05-10 12:50:11',NULL,0,'plain','',0,'info'),(75,'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-05-10 12:50:11',NULL,0,'plain','',0,'info'),(76,'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-05-14 12:19:26',NULL,0,'plain','',0,'info'),(77,'affirm_q2_2022','marketing','en_US','Boost your business with flexible payments','Expand your customer base with smarter payment options for more shoppers. With Affirm, you can offer the most relevant payment options at every price point – from four interest-free payments every two weeks to longer installments up to 36 months. Fast-track your revenue goals today!','{}','pending','woocommerce.com','2022-05-15 12:28:30',NULL,0,'plain','',0,'info'),(78,'googlelistings_multicountrygtm_q22022','marketing','en_US','Expand your audience with Multi-Country Advertising','It\'s time to expand your audience with Multi-Country Advertising, an exciting new feature in Google Listings & Ads. Reach more potential customers in as many regions as you like within a single campaign, all from the convenience of your WooCommerce dashboard.','{}','unactioned','woocommerce.com','2022-05-16 12:42:10',NULL,0,'plain','',0,'info'),(79,'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-05-26 12:16:28',NULL,0,'plain','',0,'info'),(80,'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-15 16:04:36',NULL,0,'plain','',0,'info'),(81,'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 & conditions apply).','{}','unactioned','woocommerce.com','2022-06-22 12:18:14',NULL,0,'plain','',0,'info'),(82,'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.','{}','pending','woocommerce.com','2022-07-09 12:16:38',NULL,0,'plain','',0,'info'),(83,'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-08 12:21:58',NULL,0,'plain','',0,'info'),(84,'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.','{}','pending','woocommerce.com','2022-08-08 12:21:58',NULL,0,'plain','',0,'info'),(85,'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 12:16:41',NULL,0,'plain','',0,'info'),(86,'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 12:16:42',NULL,0,'plain','',0,'info'),(87,'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 13:00:25',NULL,0,'plain','',0,'info'),(88,'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-25 12:16:42',NULL,0,'plain','',0,'info'),(89,'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 12:22:39',NULL,0,'plain','',0,'info'),(90,'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 12:20:39',NULL,0,'plain','',0,'info'),(91,'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.','{}','pending','woocommerce.com','2022-09-15 12:17:42',NULL,0,'plain','',0,'info'),(92,'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&Cs apply). <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">Contact support</a> if you need guidance with Google Listings & Ads.','{}','pending','woocommerce.com','2022-09-23 12:20:31',NULL,0,'plain','',0,'info'),(93,'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&Cs apply). <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">Contact support</a> if you need guidance with Google Listings & Ads.','{}','pending','woocommerce.com','2022-09-23 12:20:31',NULL,0,'plain','',0,'info'),(94,'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 12:17:57',NULL,0,'plain','',0,'info'),(95,'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-13 12:17:27',NULL,0,'plain','',0,'info'),(96,'facebook_q4-2022_hasFB','marketing','en_US','Drive more demand this holiday season with Facebook for WooCommerce','Deliver a personalized and seamless shopping experience this holiday season with Facebook for WooCommerce. With more ad formats than ever, you can create engaging ads that meet customers across Facebook, Instagram, Messenger, and WhatsApp throughout the busy shopping season.','{}','pending','woocommerce.com','2022-10-21 12:25:24',NULL,0,'plain','',0,'info'),(97,'facebook_q4-2022_noFB','marketing','en_US','Meet your customers where they are with Facebook for WooCommerce','Don’t wait for your customers to come to you – meet them where they’re browsing! Use the Facebook for WooCommerce extension to promote your products on Facebook, Instagram, Messenger, and WhatsApp. Create seamless shopping experiences – straight from your WooCommerce dashboard.','{}','unactioned','woocommerce.com','2022-10-22 12:19:27',NULL,0,'plain','',0,'info'),(98,'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 & conditions apply</a>.','{}','pending','woocommerce.com','2022-10-25 12:20:16',NULL,0,'plain','',0,'info'),(99,'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 & 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 12:20:40',NULL,0,'plain','',0,'info'),(100,'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-04 12:19:05',NULL,0,'plain','',0,'info'),(101,'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 12:19:05',NULL,0,'plain','',0,'info'),(102,'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 12:16:43',NULL,0,'plain','',0,'info'),(103,'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 12:16:43',NULL,0,'plain','',0,'info'),(104,'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 > Payments > Square.','{}','pending','woocommerce.com','2022-12-08 12:18:36',NULL,0,'plain','',0,'info'),(105,'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 > Settings and making sure Enable express checkouts is checked.','{}','pending','woocommerce.com','2022-12-08 12:18:36',NULL,0,'plain','',0,'info'),(106,'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 12:17:15',NULL,0,'plain','',0,'info'),(107,'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 12:18:57',NULL,0,'plain','',0,'info'),(108,'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-05 12:16:23',NULL,0,'plain','',0,'info'),(109,'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-05 12:16:23',NULL,0,'plain','',0,'info'),(110,'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 12:21:14',NULL,0,'plain','',0,'info'),(111,'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-16 12:27:43',NULL,0,'plain','',0,'info'),(112,'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 12:17:10',NULL,0,'plain','',0,'info'),(113,'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 & 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 12:16:20',NULL,0,'plain','',0,'info'),(114,'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 & 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 12:16:20',NULL,0,'plain','',0,'info'),(115,'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 12:27:38',NULL,0,'plain','',0,'info'),(116,'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 12:20:35',NULL,0,'plain','',0,'info'),(117,'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 12:20:35',NULL,0,'plain','',0,'info'),(118,'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 12:16:57',NULL,0,'plain','',0,'info'),(119,'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 12:16:57',NULL,0,'plain','',0,'info'),(120,'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 12:16:57',NULL,0,'plain','',0,'info'),(121,'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 12:16:57',NULL,0,'plain','',0,'info'),(122,'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 12:16:57',NULL,0,'plain','',0,'info'),(123,'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 12:16:57',NULL,0,'plain','',0,'info'),(124,'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 12:16:57',NULL,0,'plain','',0,'info'),(125,'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 12:16:57',NULL,0,'plain','',0,'info'),(126,'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 12:16:57',NULL,0,'plain','',0,'info'),(127,'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 12:16:57',NULL,0,'plain','',0,'info'),(128,'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 12:16:57',NULL,0,'plain','',0,'info'),(129,'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 12:16:57',NULL,0,'plain','',0,'info'),(130,'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 12:16:57',NULL,0,'plain','',0,'info'),(131,'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 12:20:40',NULL,0,'plain','',0,'info'),(132,'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 12:16:43',NULL,0,'plain','',0,'info'),(133,'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 12:16:43',NULL,0,'plain','',0,'info'),(134,'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 12:16:43',NULL,0,'plain','',0,'info'),(135,'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 12:16:43',NULL,0,'plain','',0,'info'),(136,'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 12:16:31',NULL,0,'plain','',0,'info'),(137,'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 12:16:31',NULL,0,'plain','',0,'info'),(138,'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 12:16:31',NULL,0,'plain','',0,'info'),(139,'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 12:16:31',NULL,0,'plain','',0,'info'),(140,'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 12:20:35',NULL,0,'plain','',0,'info'),(141,'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 12:20:35',NULL,0,'plain','',0,'info'),(142,'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 12:20:35',NULL,0,'plain','',0,'info'),(143,'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 12:20:35',NULL,0,'plain','',0,'info'),(144,'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-10 12:40:44',NULL,0,'plain','',0,'info'),(145,'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-10 12:40:44',NULL,0,'plain','',0,'info'),(146,'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-14 12:27:52',NULL,0,'plain','',0,'info'),(147,'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 12:28:58',NULL,0,'plain','',0,'info'),(148,'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 12:28:58',NULL,0,'plain','',0,'info'),(149,'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.','{}','pending','woocommerce.com','2023-05-19 12:16:29',NULL,0,'plain','',0,'info'),(150,'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 12:22:06',NULL,0,'plain','',0,'info'),(151,'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 12:27:31',NULL,0,'plain','',0,'info'),(152,'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.','{}','pending','woocommerce.com','2023-06-06 12:25:23',NULL,0,'plain','',0,'info'),(153,'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 12:29:48',NULL,0,'plain','',0,'info'),(154,'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 12:29:48',NULL,0,'plain','',0,'info'),(155,'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-21 12:16:55',NULL,0,'plain','',0,'info'),(156,'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 12:19:02',NULL,0,'plain','',0,'info'),(157,'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 12:19:02',NULL,0,'plain','',0,'info'),(158,'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 12:19:02',NULL,0,'plain','',0,'info'),(159,'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 12:19:02',NULL,0,'plain','',0,'info'),(160,'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 12:19:02',NULL,0,'plain','',0,'info'),(161,'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 12:19:02',NULL,0,'plain','',0,'info'),(162,'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 12:19:02',NULL,0,'plain','',0,'info'),(163,'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 12:17:14',NULL,0,'plain','',0,'info'),(164,'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 12:23:04',NULL,0,'plain','',0,'info'),(165,'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 & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2023-07-12 12:33:10',NULL,0,'plain','',0,'info'),(166,'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.','{}','pending','woocommerce.com','2023-07-19 12:28:56',NULL,0,'plain','',0,'info'),(167,'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 12:18:31',NULL,0,'plain','',0,'info'),(168,'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 12:18:50',NULL,0,'plain','',0,'info'),(169,'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 12:18:50',NULL,0,'plain','',0,'info'),(170,'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 12:18:50',NULL,0,'plain','',0,'info'),(171,'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 12:18:50',NULL,0,'plain','',0,'info'),(172,'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 12:36:38',NULL,0,'plain','',0,'info'),(173,'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.','{}','pending','woocommerce.com','2023-08-09 12:18:29',NULL,0,'plain','',0,'info'),(174,'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 12:18:29',NULL,0,'plain','',0,'info'),(175,'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 12:30:16',NULL,0,'plain','',0,'info'),(176,'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 12:58:51',NULL,0,'plain','',0,'info'),(177,'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-06 12:33:50',NULL,0,'plain','',0,'info'),(178,'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-07 12:38:48',NULL,0,'plain','',0,'info'),(179,'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.','{}','pending','woocommerce.com','2023-09-12 12:24:31',NULL,0,'plain','',0,'info'),(180,'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 12:19:50',NULL,0,'plain','',0,'info'),(181,'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 12:19:50',NULL,0,'plain','',0,'info'),(182,'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 12:17:54',NULL,0,'plain','',0,'info'),(183,'Klarna_10OCT23','marketing','en_US','Klarna is now available','This is a test. Klarna is now available.','{}','pending','woocommerce.com','2023-10-11 12:30:47',NULL,0,'plain','',0,'info'),(184,'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 12:17:13',NULL,0,'plain','',0,'info'),(185,'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 12:17:13',NULL,0,'plain','',0,'info'),(186,'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 12:17:13',NULL,0,'plain','',0,'info'),(187,'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 12:27:25',NULL,0,'plain','',0,'info'),(188,'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 12:16:31',NULL,0,'plain','',0,'info'),(189,'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 12:17:05',NULL,0,'plain','',0,'info'),(190,'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 12:22:29',NULL,0,'plain','',0,'info'),(191,'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 12:24:08',NULL,0,'plain','',0,'info'),(192,'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 12:24:08',NULL,0,'plain','',0,'info'),(193,'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 12:22:41',NULL,0,'plain','',0,'info'),(194,'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 12:18:43',NULL,0,'plain','',0,'info'),(195,'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-19 12:21:48',NULL,0,'plain','',0,'info'),(196,'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.”','{}','pending','woocommerce.com','2024-02-06 12:17:24',NULL,0,'plain','',0,'info'),(197,'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 12:19:15',NULL,0,'plain','',0,'info'),(198,'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.','{}','pending','woocommerce.com','2024-03-01 12:19:15',NULL,0,'plain','',0,'info'),(199,'woohoo10-coupon','marketing','en_US','Celebrate and save with WooCommerce 10.0','To mark this milestone release, get 10% off extensions and themes in the official Woo Marketplace. Use code WOOHOO10 at checkout to save on essential tools that help grow your business. Offer ends August 15, 2025. Terms and conditions apply.','{}','unactioned','woocommerce.com','2025-07-21 12:34:39',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_category_lookup`
--
DROP TABLE IF EXISTS `wp_wc_category_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_wc_category_lookup`
--
LOCK TABLES `wp_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_category_lookup` VALUES (15,15),(27,27),(38,38),(50,50);
/*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_customer_lookup`
--
DROP TABLE IF EXISTS `wp_wc_customer_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_customer_lookup`
--
LOCK TABLES `wp_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_customer_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_customer_lookup` VALUES (1,5,'julianemackinnon','','','a.nt.o.ni.os.u.pe.rs.port.k.u.cha.a205@gmail.com','2023-03-13 22:00:00','2023-02-17 17:00:57','','','',''),(2,7,'charlenemcgriff','','','charlene-mcgriff@bivforbrooklyn.com','2024-07-11 22:00:00','2023-03-22 23:29:24','','','',''),(3,6,'alexiscason202','','','alexis_cason@plumandsplitmilk.com','2024-06-15 22:00:00','2023-03-19 21:06:40','','','',''),(4,8,'kaytrevizo','','','mattbizenmail7@gmx.com','2023-07-12 22:00:00','2023-04-18 21:33:46','','','',''),(5,10,'gastonbillington','','','gaston-billington@hotmail.com','2023-10-01 22:00:00','2023-10-01 02:01:03','','','',''),(6,13,'marlongaray6587','','','marlongaray64@also.jsafes.com','2023-12-08 22:00:00','2023-11-28 10:24:48','','','',''),(7,14,'isabelhoar829','','','genphcy@bmaill.xyz','2024-06-16 22:00:00','2023-12-19 16:58:37','','','',''),(8,15,'Kmtcktwibe','','','hwg6jdgsfg5ci@gmail.com','2023-12-23 22:00:00','2023-12-20 00:33:20','','','',''),(9,16,'UtnvMorce','','','wf43sdfx5dnj5gbtl@gmail.com','2024-01-31 22:00:00','2024-01-28 03:52:38','','','',''),(10,17,'marionkwok82596','','','luciennemartinsen2617@1secmail.com','2025-02-28 22:00:00','2024-12-30 19:32:42','','','',''),(11,18,'olivemyles1032','','','eulaliasantiago@1secmail.com','2025-02-22 22:00:00','2024-12-31 16:33:14','','','',''),(12,20,'dorinegearhart','','','fikach0108@inbox.lv','2025-03-30 22:00:00','2025-02-16 00:39:03','','','',''),(13,21,'MatthewThate','','','003xrumer@sitesseo.site','2025-09-12 22:00:00','2025-08-20 00:22:42','','','','');
/*!40000 ALTER TABLE `wp_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_download_log`
--
DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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`),
CONSTRAINT `fk_wp_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wp_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_download_log`
--
LOCK TABLES `wp_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wp_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_coupon_lookup`
--
DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_wc_order_coupon_lookup`
--
LOCK TABLES `wp_wc_order_coupon_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_product_lookup`
--
DROP TABLE IF EXISTS `wp_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_wc_order_product_lookup`
--
LOCK TABLES `wp_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_stats`
--
DROP TABLE IF EXISTS `wp_wc_order_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_wc_order_stats`
--
LOCK TABLES `wp_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_tax_lookup`
--
DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_wc_order_tax_lookup`
--
LOCK TABLES `wp_wc_order_tax_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_tax_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_tax_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_product_meta_lookup`
--
DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_wc_product_meta_lookup`
--
LOCK TABLES `wp_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_product_meta_lookup` VALUES (99,'',0,0,18.0000,18.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(100,'',0,0,55.0000,55.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(101,'',0,0,16.0000,16.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(102,'',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(103,'',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(104,'',0,0,35.0000,35.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(105,'',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(106,'',0,0,42.0000,42.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(107,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(108,'',0,0,20.0000,20.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(109,'',0,0,18.0000,18.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(110,'',0,0,18.0000,18.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(297,'',0,0,1099.0000,1099.0000,0,NULL,'instock',4,4.00,156,'',''),(298,'',0,0,1099.0000,1099.0000,0,NULL,'instock',3,4.33,402337,'',''),(299,'',0,0,89.0000,89.0000,0,NULL,'instock',0,0.00,127,'',''),(323,'',0,0,89.0000,89.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(389,'',0,0,1099.0000,1099.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(390,'',0,0,89.0000,89.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(391,'',0,0,1099.0000,1099.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(392,'',0,0,89.0000,89.0000,0,NULL,'instock',0,0.00,0,'taxable','');
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_reserved_stock`
--
DROP TABLE IF EXISTS `wp_wc_reserved_stock`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_wc_reserved_stock`
--
LOCK TABLES `wp_wc_reserved_stock` WRITE;
/*!40000 ALTER TABLE `wp_wc_reserved_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_reserved_stock` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_tax_rate_classes`
--
DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_wc_tax_rate_classes`
--
LOCK TABLES `wp_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_webhooks`
--
DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_wc_webhooks`
--
LOCK TABLES `wp_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wp_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_api_keys`
--
DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_api_keys`
--
LOCK TABLES `wp_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--
DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_attribute_taxonomies`
--
LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--
DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_downloadable_product_permissions`
--
LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_log`
--
DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_log`
--
LOCK TABLES `wp_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_order_itemmeta`
--
LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_items`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_order_items`
--
LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_payment_tokenmeta`
--
LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokens`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_payment_tokens`
--
LOCK TABLES `wp_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_sessions`
--
DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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=775 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_sessions`
--
LOCK TABLES `wp_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_sessions` VALUES (605,'17','a:7:{s:8:\"customer\";s:719:\"a:26:{s:2:\"id\";s:2:\"17\";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:0:\"\";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:0:\"\";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:34:\"luciennemartinsen2617@1secmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";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:{}\";}',1735767164),(607,'869cac17c374dac86797f73762b4270f','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1735767167),(608,'66e57792be7bbda9333f50d12b97054b','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1735767168),(609,'18','a:7:{s:8:\"customer\";s:713:\"a:26:{s:2:\"id\";s:2:\"18\";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:0:\"\";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:0:\"\";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:28:\"eulaliasantiago@1secmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";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:{}\";}',1735842795),(611,'8b1508eb6c3e4822463160da5072fbf8','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1735842799),(612,'49bbffbef5c4b11c778c2c717ecb69e4','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1735842800),(613,'00ad7fe91324bb15e058b69f35345935','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1735927514),(614,'371c2cd0e429b67f7a612df2e7307ac7','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1735927515),(615,'90f3ccaa6f8b4362ec55f72c9ba19865','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1735972726),(616,'8d8a91b5aa16664ef5640de166aa0960','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1735972726),(617,'c5c2aef1c76d921500a44555d1bffc17','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736078727),(618,'b9243a27f9e29b59cfcda36e879a2341','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736078727),(619,'b1fa74059a3a1fc01b2d78a159d9d523','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736080950),(620,'d9efc0e71efce8360ffc36ac4b8de42f','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736080950),(621,'be2e16b1586c4e625a35b84ca981f99e','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736127371),(622,'55d81ed3a0ab98403573b012edac7143','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736127372),(623,'15e6d787698500d9c1f343824a61ca6b','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736151841),(624,'f3f1179e568667a999ad30f8dfc45487','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736151842),(625,'4d107eee0a6e640668f4922f2eb04d2b','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736159016),(626,'212975e42261428fe2d62dacddc1aeb9','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736159017),(627,'e6c220fbfefbea3cde9068413132a455','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736169564),(628,'4653ede59f567cf868a1d570013fddcb','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736169564),(629,'b7a0b1e735d897c4e253a12b84905145','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736175147),(630,'cd938769bd9d27b9aaced707bc4ed89a','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736175148),(631,'be294125cd5eb018af406f74a71f4897','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736189859),(632,'bf60cc430b1a4e5f440e2e81686010e3','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736189860),(633,'8871a054259c545ca13ba0c47d53ce00','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736244638),(634,'222c05b74b43fd5bca142b9697a0150d','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736244638),(635,'21667dd7161beb14817a161beffbd23c','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736331595),(636,'159a961c9681c087c382c60576b0e2d9','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736331596),(637,'9e9d8e38156a3e9e15c3908662e72113','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736352457),(638,'789639c6744f4bdffe66eb880ba67d05','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736352458),(639,'1f8f42283deb8b441942ca6fc8d68018','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736386442),(640,'8e7d0108883e1fd42618a3a514d8f472','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736386442),(641,'12fae70be0e41bde990aac9102992dbb','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736508882),(642,'27f4bb55d995e9afb7699135d9bc7c44','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1736508883),(643,'8fe6eaaa997729f80e10ddadd402b5ca','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737052294),(644,'a084684678d04d87d0fff2bdd1a50876','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737052294),(645,'62ed4c9c482636e7b03e4169fdd14035','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737053344),(646,'0fad953456fa32489d7c2ce9bf4b380f','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737053345),(647,'43ddf5cb4026f030eb2d07d85f8e80dd','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737200301),(648,'dc7dbfecd5bff91fe201f5b4690238ba','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737200301),(649,'91405251a0669da2dcbda268190b1a35','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737209787),(650,'35360fb336e73137b32cb3ff5c75568b','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737209788),(651,'7ae30d62ee142169d04e612345d17946','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737833247),(652,'57ccb555d1b4f63dded29cdc847ee2a2','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737833257),(653,'79cc413a2484d4358a2fd91b17be6276','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737918577),(654,'189efb400ed840b35325c95301eb8508','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737918578),(655,'1b861c586816232153f361a919e6d96f','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737966675),(656,'fbbf25c6aea20cc77f3de61392270587','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1737966677),(657,'a99156cd462ce5fba587f1d7d6b7a1ec','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738029807),(658,'8b95f8facbf5e06c6f673342d6f8ce05','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738029810),(659,'2dc4bb3aee275f2c7eb83b099a3f7fad','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738401203),(660,'2d779075c3b18c33bd975813fc7de029','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738401206),(661,'f6519e8022f76500eec45d71eae66518','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738421261),(662,'fbf2c72c7efa8766fef9442fa53adb9b','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738421262),(663,'8738ec84b5038e449821dc9a8363ae36','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738781879),(664,'5091b3207b7d19cc4f40d0e67979b5cb','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738781884),(665,'11650b9fa15eb8c2d091395c4c9ec6e9','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738841128),(666,'cc182aedfb4feda4f595631087ffbd0c','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1738841130),(667,'19','a:7:{s:8:\"customer\";s:702:\"a:26:{s:2:\"id\";s:2:\"19\";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:0:\"\";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:0:\"\";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:17:\"kertyucds@onet.eu\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";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:{}\";}',1739456632),(669,'61cf7662462fed7693b48fbdc2950dcf','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1739578137),(670,'2bc796f8beb6fdb3c580712a509b5182','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1739578137),(671,'b4be69a8e0ccb0f03d4fee47e62d6efd','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1739802410),(672,'a3f8d8aabafa078d5ff40cf04bb41abc','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1739802416),(673,'20','a:7:{s:8:\"customer\";s:704:\"a:26:{s:2:\"id\";s:2:\"20\";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:0:\"\";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:0:\"\";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:19:\"fikach0108@inbox.lv\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";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:{}\";}',1739846345),(675,'89e0b0d8c74cc58af34f63c1ebe6c260','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1739846346),(676,'e0b18bdbc599c9f5a7fc0d9d111a9202','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1739846347),(677,'ecefdfad35597bc08fee48ec0c861b48','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1739871641),(678,'fb240a9b09d0aee566fc3f4a614961b8','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1739871643),(679,'979c04dba73a14e86198639e71f9a6f0','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740034894),(680,'e93e526298cc2cdf2c1443eb6f3c86d2','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740034895),(681,'1d4c0e66e6f2488ea4bcedc9efa3ad74','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740046539),(682,'bac7d3211e7ad22bd0d1bc77223bef28','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740046540),(683,'e142c07f31edb6e9ca6eaebbbef10f23','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740329814),(684,'2d952c7355de3bffbbc558c41ca69877','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740329824),(685,'9773525ead60108046ba4ce50d471b54','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740385550),(686,'a4929cfdd31272ec015fc038a2fd3406','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740385551),(687,'012fbdb29a741917cc4204a04e6d8218','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740503789),(688,'4b1e9afb8db440cc799a2e528e704532','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740503789),(689,'d00633b133813255877134ce9b43b28f','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740517170),(690,'7c4a07d667a8597a40176636ef82cdca','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740517171),(691,'89e033ba494c6fa2e0104cba82faf0c2','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740574984),(692,'a47ba7029a16e94867a9e398f8dfeae8','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740574985),(693,'7769c770c5dce78debb6c0e198dbcff0','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740657802),(694,'4fa670ac577eb359244b1ef95a4975fe','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740657802),(695,'4f09642fcdba348de4b069e41ef9f0e7','a:8:{s:4:\"cart\";s:411:\"a:1:{s:32:\"a01a0380ca3c61428c26a231f0e49a09\";a:11:{s:3:\"key\";s:32:\"a01a0380ca3c61428c26a231f0e49a09\";s:10:\"product_id\";i:390;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"89.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:5:\"89.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"89.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740723505),(696,'45e1d405e3e1794c994d2398694e6d31','a:8:{s:4:\"cart\";s:411:\"a:1:{s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";a:11:{s:3:\"key\";s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";s:10:\"product_id\";i:392;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"89.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:5:\"89.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"89.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740723515),(697,'457932827e4d46edffe9e7d7239bd1e3','a:8:{s:4:\"cart\";s:415:\"a:1:{s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";a:11:{s:3:\"key\";s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";s:10:\"product_id\";i:391;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"1099.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"1099.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1099.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740723758),(698,'5ba0f7a0bc506ecac0ade036239b24d4','a:8:{s:4:\"cart\";s:415:\"a:1:{s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";a:11:{s:3:\"key\";s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";s:10:\"product_id\";i:389;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"1099.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"1099.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1099.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740723763),(699,'73bd7882c5dbb4f271727f063560a730','a:8:{s:4:\"cart\";s:411:\"a:1:{s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";a:11:{s:3:\"key\";s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";s:10:\"product_id\";i:392;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"89.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:5:\"89.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"89.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740723768),(700,'d1cb5b5bf4a45e50d44dab8d38f6c1a2','a:8:{s:4:\"cart\";s:411:\"a:1:{s:32:\"a01a0380ca3c61428c26a231f0e49a09\";a:11:{s:3:\"key\";s:32:\"a01a0380ca3c61428c26a231f0e49a09\";s:10:\"product_id\";i:390;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"89.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:5:\"89.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"89.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740723773),(701,'ec598d953ea6b0cd4b17d9e62ed6a6f4','a:8:{s:4:\"cart\";s:415:\"a:1:{s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";a:11:{s:3:\"key\";s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";s:10:\"product_id\";i:389;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"1099.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"1099.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1099.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740724558),(702,'04e5239b3c674ffb9f49ceca57f374a3','a:8:{s:4:\"cart\";s:415:\"a:1:{s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";a:11:{s:3:\"key\";s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";s:10:\"product_id\";i:391;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"1099.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"1099.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1099.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740724563),(703,'7c643738e4e0557f003640eb9104d16f','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740936298),(704,'29b41480449dfbe9c3d02749ac2ba91f','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740936299),(705,'bb104238d5b9e9eb3e69eab4eb9c7391','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740969462),(706,'38a0669569c79216eb39df3bb4008c55','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1740969462),(707,'f31d71f7840ac083e4348988c16989ce','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1741034316),(708,'a0545a9946b48fe8eac1c62d91c293c4','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1741034316),(709,'7049f403d6f5f08deb0aaf2ed7d61410','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1741123109),(710,'bf2795dfada94d30e55085e0bf7f823e','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1741123110),(711,'43b659f728d64742d9c68133f88da38e','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1743610083),(712,'6e47232f43590dbfbf6ec519869b816c','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:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1743610083),(713,'b2134347b1930381939accd3c767eb4f','a:8:{s:4:\"cart\";s:1636:\"a:4:{s:32:\"a01a0380ca3c61428c26a231f0e49a09\";a:11:{s:3:\"key\";s:32:\"a01a0380ca3c61428c26a231f0e49a09\";s:10:\"product_id\";i:390;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;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:267;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:267;s:8:\"line_tax\";i:0;}s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";a:11:{s:3:\"key\";s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";s:10:\"product_id\";i:389;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;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:2198;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:2198;s:8:\"line_tax\";i:0;}s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";a:11:{s:3:\"key\";s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";s:10:\"product_id\";i:392;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";a:11:{s:3:\"key\";s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";s:10:\"product_id\";i:391;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;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:2198;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:2198;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"4752.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"4752.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"4752.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1747887433),(733,'84842a85b0b431b61e3e5e3d58eba4a0','a:8:{s:4:\"cart\";s:1634:\"a:4:{s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";a:11:{s:3:\"key\";s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";s:10:\"product_id\";i:391;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";a:11:{s:3:\"key\";s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";s:10:\"product_id\";i:389;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}s:32:\"a01a0380ca3c61428c26a231f0e49a09\";a:11:{s:3:\"key\";s:32:\"a01a0380ca3c61428c26a231f0e49a09\";s:10:\"product_id\";i:390;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";a:11:{s:3:\"key\";s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";s:10:\"product_id\";i:392;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"2376.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"2376.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2376.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1751594270),(749,'0dfc6e7f2744e6dee8deef155fe64481','a:8:{s:4:\"cart\";s:1634:\"a:4:{s:32:\"a01a0380ca3c61428c26a231f0e49a09\";a:11:{s:3:\"key\";s:32:\"a01a0380ca3c61428c26a231f0e49a09\";s:10:\"product_id\";i:390;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";a:11:{s:3:\"key\";s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";s:10:\"product_id\";i:392;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";a:11:{s:3:\"key\";s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";s:10:\"product_id\";i:389;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";a:11:{s:3:\"key\";s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";s:10:\"product_id\";i:391;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"2376.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"2376.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2376.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1755332962),(765,'21','a:7:{s:8:\"customer\";s:708:\"a:26:{s:2:\"id\";s:2:\"21\";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:0:\"\";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:0:\"\";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:23:\"003xrumer@sitesseo.site\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";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:{}\";}',1755829363),(767,'0e436f182f97158379e0af9abd03db02','a:8:{s:4:\"cart\";s:415:\"a:1:{s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";a:11:{s:3:\"key\";s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";s:10:\"product_id\";i:389;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"1099.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"1099.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1099.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1757376996),(768,'2647cfd97e70f7dfdaefce88bd2e71d8','a:8:{s:4:\"cart\";s:824:\"a:2:{s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";a:11:{s:3:\"key\";s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";s:10:\"product_id\";i:391;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";a:11:{s:3:\"key\";s:32:\"c86a7ee3d8ef0b551ed58e354a836f2b\";s:10:\"product_id\";i:389;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"2198.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"2198.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2198.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1757378239),(770,'43af23fb6fcbdfceffe9c1261aface62','a:8:{s:4:\"cart\";s:1225:\"a:3:{s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";a:11:{s:3:\"key\";s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";s:10:\"product_id\";i:392;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";a:11:{s:3:\"key\";s:32:\"5a4b25aaed25c2ee1b74de72dc03c14e\";s:10:\"product_id\";i:391;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:1099;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1099;s:8:\"line_tax\";i:0;}s:32:\"a01a0380ca3c61428c26a231f0e49a09\";a:11:{s:3:\"key\";s:32:\"a01a0380ca3c61428c26a231f0e49a09\";s:10:\"product_id\";i:390;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"1277.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:7:\"1277.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1277.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1757378590),(773,'ae9b1eaeac0c45e83150274b067b2da1','a:8:{s:4:\"cart\";s:816:\"a:2:{s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";a:11:{s:3:\"key\";s:32:\"f73b76ce8949fe29bf2a537cfa420e8f\";s:10:\"product_id\";i:392;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}s:32:\"a01a0380ca3c61428c26a231f0e49a09\";a:11:{s:3:\"key\";s:32:\"a01a0380ca3c61428c26a231f0e49a09\";s:10:\"product_id\";i:390;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:89;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:89;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:408:\"a:15:{s:8:\"subtotal\";s:6:\"178.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";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\";s:6:\"178.00\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"178.00\";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:10:\"wc_notices\";N;s:8:\"customer\";s:683:\"a:26:{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:0:\"\";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:0:\"\";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:\"\";}\";}',1757378960);
/*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_shipping_zone_locations`
--
LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_shipping_zone_methods`
--
LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zones`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_shipping_zones`
--
LOCK TABLES `wp_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_tax_rate_locations`
--
LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rates`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_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 `wp_woocommerce_tax_rates`
--
LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yith_wcwl`
--
DROP TABLE IF EXISTS `wp_yith_wcwl`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yith_wcwl` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`prod_id` bigint(20) NOT NULL,
`quantity` int(11) NOT NULL,
`user_id` bigint(20) DEFAULT NULL,
`wishlist_id` bigint(20) DEFAULT NULL,
`position` int(11) DEFAULT 0,
`original_price` decimal(9,3) DEFAULT NULL,
`original_currency` char(3) DEFAULT NULL,
`dateadded` timestamp NOT NULL DEFAULT current_timestamp(),
`on_sale` tinyint(4) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `prod_id` (`prod_id`)
) ENGINE=InnoDB AUTO_INCREMENT=397 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yith_wcwl`
--
LOCK TABLES `wp_yith_wcwl` WRITE;
/*!40000 ALTER TABLE `wp_yith_wcwl` DISABLE KEYS */;
INSERT INTO `wp_yith_wcwl` VALUES (188,391,1,NULL,182,0,1099.000,'ZAR','2025-09-25 18:47:51',0),(189,392,1,NULL,183,0,89.000,'ZAR','2025-10-05 15:59:02',0),(190,391,1,NULL,184,0,1099.000,'ZAR','2025-10-05 15:59:02',0),(191,389,1,NULL,185,0,1099.000,'ZAR','2025-10-05 15:59:02',0),(192,391,1,NULL,186,0,1099.000,'ZAR','2025-10-05 15:59:23',0),(193,390,1,NULL,187,0,89.000,'ZAR','2025-10-05 15:59:23',0),(194,392,1,NULL,188,0,89.000,'ZAR','2025-10-05 15:59:24',0),(195,392,1,NULL,189,0,89.000,'ZAR','2025-10-05 15:59:24',0),(196,391,1,NULL,190,0,1099.000,'ZAR','2025-10-05 15:59:24',0),(197,392,1,NULL,191,0,89.000,'ZAR','2025-10-05 15:59:25',0),(198,391,1,NULL,192,0,1099.000,'ZAR','2025-10-05 15:59:25',0),(199,391,1,NULL,193,0,1099.000,'ZAR','2025-10-05 15:59:26',0),(200,389,1,NULL,194,0,1099.000,'ZAR','2025-10-05 15:59:27',0),(201,389,1,NULL,195,0,1099.000,'ZAR','2025-10-05 15:59:27',0),(202,389,1,NULL,196,0,1099.000,'ZAR','2025-10-05 15:59:27',0),(203,391,1,NULL,197,0,1099.000,'ZAR','2025-10-05 15:59:27',0),(204,390,1,NULL,198,0,89.000,'ZAR','2025-10-05 15:59:28',0),(205,392,1,NULL,199,0,89.000,'ZAR','2025-10-05 15:59:28',0),(206,391,1,NULL,200,0,1099.000,'ZAR','2025-10-05 15:59:28',0),(207,392,1,NULL,201,0,89.000,'ZAR','2025-10-05 15:59:29',0),(208,389,1,NULL,202,0,1099.000,'ZAR','2025-10-05 15:59:29',0),(209,391,1,NULL,203,0,1099.000,'ZAR','2025-10-05 15:59:30',0),(210,389,1,NULL,204,0,1099.000,'ZAR','2025-10-05 15:59:30',0),(211,389,1,NULL,205,0,1099.000,'ZAR','2025-10-05 15:59:38',0),(212,389,1,NULL,206,0,1099.000,'ZAR','2025-10-05 15:59:43',0),(213,391,1,NULL,207,0,1099.000,'ZAR','2025-10-05 15:59:45',0),(214,389,1,NULL,208,0,1099.000,'ZAR','2025-10-05 15:59:45',0),(215,392,1,NULL,209,0,89.000,'ZAR','2025-10-05 15:59:45',0),(216,391,1,NULL,210,0,1099.000,'ZAR','2025-10-05 15:59:47',0),(217,392,1,NULL,211,0,89.000,'ZAR','2025-10-05 15:59:47',0),(218,391,1,NULL,212,0,1099.000,'ZAR','2025-10-05 15:59:49',0),(219,392,1,NULL,213,0,89.000,'ZAR','2025-10-05 15:59:50',0),(220,390,1,NULL,214,0,89.000,'ZAR','2025-10-05 15:59:50',0),(221,390,1,NULL,215,0,89.000,'ZAR','2025-10-05 15:59:52',0),(222,391,1,NULL,216,0,1099.000,'ZAR','2025-10-05 15:59:53',0),(223,392,1,NULL,217,0,89.000,'ZAR','2025-10-05 15:59:53',0),(224,391,1,NULL,218,0,1099.000,'ZAR','2025-10-05 15:59:54',0),(225,391,1,NULL,219,0,1099.000,'ZAR','2025-10-05 15:59:54',0),(226,391,1,NULL,220,0,1099.000,'ZAR','2025-10-05 15:59:54',0),(227,391,1,NULL,221,0,1099.000,'ZAR','2025-10-05 15:59:54',0),(228,391,1,NULL,222,0,1099.000,'ZAR','2025-10-05 15:59:54',0),(229,391,1,NULL,223,0,1099.000,'ZAR','2025-10-05 15:59:54',0),(230,390,1,NULL,224,0,89.000,'ZAR','2025-10-05 15:59:56',0),(231,390,1,NULL,225,0,89.000,'ZAR','2025-10-05 15:59:56',0),(232,390,1,NULL,226,0,89.000,'ZAR','2025-10-05 15:59:56',0),(233,391,1,NULL,227,0,1099.000,'ZAR','2025-10-05 15:59:57',0),(234,392,1,NULL,228,0,89.000,'ZAR','2025-10-05 15:59:58',0),(235,392,1,NULL,229,0,89.000,'ZAR','2025-10-05 15:59:59',0),(236,392,1,NULL,230,0,89.000,'ZAR','2025-10-05 15:59:59',0),(237,392,1,NULL,231,0,89.000,'ZAR','2025-10-05 15:59:59',0),(238,392,1,NULL,232,0,89.000,'ZAR','2025-10-05 15:59:59',0),(239,392,1,NULL,233,0,89.000,'ZAR','2025-10-05 15:59:59',0),(240,391,1,NULL,234,0,1099.000,'ZAR','2025-10-05 15:59:59',0),(241,391,1,NULL,235,0,1099.000,'ZAR','2025-10-05 15:59:59',0),(242,391,1,NULL,236,0,1099.000,'ZAR','2025-10-05 15:59:59',0),(243,391,1,NULL,237,0,1099.000,'ZAR','2025-10-05 16:00:00',0),(244,391,1,NULL,238,0,1099.000,'ZAR','2025-10-05 16:00:00',0),(245,391,1,NULL,239,0,1099.000,'ZAR','2025-10-05 16:00:00',0),(246,391,1,NULL,240,0,1099.000,'ZAR','2025-10-05 16:00:03',0),(247,391,1,NULL,241,0,1099.000,'ZAR','2025-10-05 16:00:03',0),(248,389,1,NULL,242,0,1099.000,'ZAR','2025-10-05 16:00:04',0),(249,389,1,NULL,243,0,1099.000,'ZAR','2025-10-05 16:00:04',0),(250,389,1,NULL,244,0,1099.000,'ZAR','2025-10-05 16:00:04',0),(251,391,1,NULL,245,0,1099.000,'ZAR','2025-10-05 16:00:04',0),(252,391,1,NULL,246,0,1099.000,'ZAR','2025-10-05 16:00:04',0),(253,392,1,NULL,247,0,89.000,'ZAR','2025-10-05 16:00:05',0),(254,392,1,NULL,248,0,89.000,'ZAR','2025-10-05 16:00:05',0),(255,392,1,NULL,249,0,89.000,'ZAR','2025-10-05 16:00:05',0),(256,391,1,NULL,250,0,1099.000,'ZAR','2025-10-05 16:00:06',0),(257,391,1,NULL,251,0,1099.000,'ZAR','2025-10-05 16:00:08',0),(258,391,1,NULL,252,0,1099.000,'ZAR','2025-10-05 16:00:08',0),(259,391,1,NULL,253,0,1099.000,'ZAR','2025-10-05 16:00:08',0),(260,392,1,NULL,254,0,89.000,'ZAR','2025-10-05 16:00:09',0),(261,392,1,NULL,255,0,89.000,'ZAR','2025-10-05 16:00:09',0),(262,392,1,NULL,256,0,89.000,'ZAR','2025-10-05 16:00:09',0),(263,389,1,NULL,257,0,1099.000,'ZAR','2025-10-05 16:00:10',0),(264,389,1,NULL,258,0,1099.000,'ZAR','2025-10-05 16:00:10',0),(265,389,1,NULL,259,0,1099.000,'ZAR','2025-10-05 16:00:10',0),(266,389,1,NULL,260,0,1099.000,'ZAR','2025-10-05 16:00:10',0),(267,389,1,NULL,261,0,1099.000,'ZAR','2025-10-05 16:00:10',0),(268,389,1,NULL,262,0,1099.000,'ZAR','2025-10-05 16:00:11',0),(269,392,1,NULL,263,0,89.000,'ZAR','2025-10-05 16:00:13',0),(270,390,1,NULL,264,0,89.000,'ZAR','2025-10-05 16:00:13',0),(271,390,1,NULL,265,0,89.000,'ZAR','2025-10-05 16:00:14',0),(272,391,1,NULL,266,0,1099.000,'ZAR','2025-10-05 16:00:14',0),(273,391,1,NULL,267,0,1099.000,'ZAR','2025-10-05 16:00:14',0),(274,392,1,NULL,268,0,89.000,'ZAR','2025-10-05 16:00:14',0),(275,391,1,NULL,269,0,1099.000,'ZAR','2025-10-05 16:00:14',0),(276,390,1,NULL,270,0,89.000,'ZAR','2025-10-05 16:00:14',0),(277,392,1,NULL,271,0,89.000,'ZAR','2025-10-05 16:00:14',0),(278,389,1,NULL,272,0,1099.000,'ZAR','2025-10-05 16:00:14',0),(279,392,1,NULL,273,0,89.000,'ZAR','2025-10-05 16:00:15',0),(280,392,1,NULL,274,0,89.000,'ZAR','2025-10-05 16:00:16',0),(281,392,1,NULL,275,0,89.000,'ZAR','2025-10-05 16:00:16',0),(282,392,1,NULL,276,0,89.000,'ZAR','2025-10-05 16:00:16',0),(283,392,1,NULL,277,0,89.000,'ZAR','2025-10-05 16:00:16',0),(284,392,1,NULL,278,0,89.000,'ZAR','2025-10-05 16:00:16',0),(285,392,1,NULL,279,0,89.000,'ZAR','2025-10-05 16:00:18',0),(286,392,1,NULL,280,0,89.000,'ZAR','2025-10-05 16:00:19',0),(287,392,1,NULL,281,0,89.000,'ZAR','2025-10-05 16:00:19',0),(288,392,1,NULL,282,0,89.000,'ZAR','2025-10-05 16:00:20',0),(289,390,1,NULL,283,0,89.000,'ZAR','2025-10-05 16:00:20',0),(290,390,1,NULL,284,0,89.000,'ZAR','2025-10-05 16:00:20',0),(291,390,1,NULL,285,0,89.000,'ZAR','2025-10-05 16:00:20',0),(292,390,1,NULL,286,0,89.000,'ZAR','2025-10-05 16:00:20',0),(293,390,1,NULL,287,0,89.000,'ZAR','2025-10-05 16:00:20',0),(294,390,1,NULL,288,0,89.000,'ZAR','2025-10-05 16:00:21',0),(295,390,1,NULL,289,0,89.000,'ZAR','2025-10-05 16:00:21',0),(296,392,1,NULL,290,0,89.000,'ZAR','2025-10-05 16:00:21',0),(297,391,1,NULL,291,0,1099.000,'ZAR','2025-10-05 16:00:21',0),(298,391,1,NULL,292,0,1099.000,'ZAR','2025-10-05 16:00:21',0),(299,391,1,NULL,293,0,1099.000,'ZAR','2025-10-05 16:00:21',0),(300,392,1,NULL,294,0,89.000,'ZAR','2025-10-05 16:00:22',0),(301,390,1,NULL,295,0,89.000,'ZAR','2025-10-05 16:00:26',0),(302,390,1,NULL,296,0,89.000,'ZAR','2025-10-05 16:00:26',0),(303,390,1,NULL,297,0,89.000,'ZAR','2025-10-05 16:00:26',0),(304,390,1,NULL,298,0,89.000,'ZAR','2025-10-05 16:00:26',0),(305,390,1,NULL,299,0,89.000,'ZAR','2025-10-05 16:00:30',0),(306,389,1,NULL,300,0,1099.000,'ZAR','2025-10-12 09:47:30',0),(307,391,1,NULL,301,0,1099.000,'ZAR','2025-10-12 09:47:30',0),(308,392,1,NULL,302,0,89.000,'ZAR','2025-10-12 09:47:30',0),(309,392,1,NULL,303,0,89.000,'ZAR','2025-10-12 09:47:36',0),(310,391,1,NULL,304,0,1099.000,'ZAR','2025-10-12 09:47:37',0),(311,389,1,NULL,305,0,1099.000,'ZAR','2025-10-12 09:47:38',0),(312,391,1,NULL,306,0,1099.000,'ZAR','2025-10-12 09:47:43',0),(313,389,1,NULL,307,0,1099.000,'ZAR','2025-10-12 09:47:43',0),(314,389,1,NULL,308,0,1099.000,'ZAR','2025-10-12 09:47:46',0),(315,392,1,NULL,309,0,89.000,'ZAR','2025-10-12 09:47:46',0),(316,390,1,NULL,310,0,89.000,'ZAR','2025-10-12 09:47:48',0),(317,391,1,NULL,311,0,1099.000,'ZAR','2025-10-12 09:47:52',0),(318,392,1,NULL,312,0,89.000,'ZAR','2025-10-12 09:47:52',0),(319,391,1,NULL,313,0,1099.000,'ZAR','2025-10-12 09:47:52',0),(320,389,1,NULL,314,0,1099.000,'ZAR','2025-10-12 09:47:53',0),(321,391,1,NULL,315,0,1099.000,'ZAR','2025-10-12 09:47:54',0),(322,391,1,NULL,316,0,1099.000,'ZAR','2025-10-12 09:47:54',0),(323,391,1,NULL,317,0,1099.000,'ZAR','2025-10-12 09:47:54',0),(324,389,1,NULL,318,0,1099.000,'ZAR','2025-10-12 09:47:55',0),(325,392,1,NULL,320,0,89.000,'ZAR','2025-10-12 09:47:55',0),(326,391,1,NULL,319,0,1099.000,'ZAR','2025-10-12 09:47:55',0),(327,391,1,NULL,321,0,1099.000,'ZAR','2025-10-12 09:47:55',0),(328,391,1,NULL,322,0,1099.000,'ZAR','2025-10-12 09:47:55',0),(329,392,1,NULL,323,0,89.000,'ZAR','2025-10-12 09:47:57',0),(330,390,1,NULL,324,0,89.000,'ZAR','2025-10-12 09:47:57',0),(331,389,1,NULL,325,0,1099.000,'ZAR','2025-10-12 09:47:57',0),(332,389,1,NULL,326,0,1099.000,'ZAR','2025-10-12 09:47:57',0),(333,389,1,NULL,327,0,1099.000,'ZAR','2025-10-12 09:47:58',0),(334,391,1,NULL,328,0,1099.000,'ZAR','2025-10-12 09:47:59',0),(335,391,1,NULL,329,0,1099.000,'ZAR','2025-10-12 09:47:59',0),(336,391,1,NULL,330,0,1099.000,'ZAR','2025-10-12 09:47:59',0),(337,391,1,NULL,331,0,1099.000,'ZAR','2025-10-12 09:47:59',0),(338,390,1,NULL,332,0,89.000,'ZAR','2025-10-12 09:47:59',0),(339,389,1,NULL,333,0,1099.000,'ZAR','2025-10-12 09:48:00',0),(340,392,1,NULL,335,0,89.000,'ZAR','2025-10-12 09:48:02',0),(341,391,1,NULL,334,0,1099.000,'ZAR','2025-10-12 09:48:02',0),(342,389,1,NULL,336,0,1099.000,'ZAR','2025-10-12 09:48:03',0),(343,391,1,NULL,337,0,1099.000,'ZAR','2025-10-12 09:48:04',0),(344,392,1,NULL,338,0,89.000,'ZAR','2025-10-12 09:48:04',0),(345,391,1,NULL,339,0,1099.000,'ZAR','2025-10-12 09:48:04',0),(346,391,1,NULL,340,0,1099.000,'ZAR','2025-10-12 09:48:04',0),(347,392,1,NULL,341,0,89.000,'ZAR','2025-10-12 09:48:05',0),(348,389,1,NULL,342,0,1099.000,'ZAR','2025-10-12 09:48:06',0),(349,391,1,NULL,343,0,1099.000,'ZAR','2025-10-12 09:48:06',0),(350,391,1,NULL,344,0,1099.000,'ZAR','2025-10-12 09:48:07',0),(351,391,1,NULL,346,0,1099.000,'ZAR','2025-10-12 09:48:08',0),(352,392,1,NULL,345,0,89.000,'ZAR','2025-10-12 09:48:08',0),(353,389,1,NULL,347,0,1099.000,'ZAR','2025-10-12 09:48:08',0),(354,390,1,NULL,348,0,89.000,'ZAR','2025-10-12 09:48:08',0),(355,391,1,NULL,349,0,1099.000,'ZAR','2025-10-12 09:48:09',0),(356,392,1,NULL,350,0,89.000,'ZAR','2025-10-12 09:48:09',0),(357,391,1,NULL,351,0,1099.000,'ZAR','2025-10-12 09:48:09',0),(358,391,1,NULL,352,0,1099.000,'ZAR','2025-10-12 09:48:09',0),(359,391,1,NULL,353,0,1099.000,'ZAR','2025-10-12 09:48:10',0),(360,391,1,NULL,354,0,1099.000,'ZAR','2025-10-12 09:48:10',0),(361,391,1,NULL,356,0,1099.000,'ZAR','2025-10-12 09:48:11',0),(362,391,1,NULL,355,0,1099.000,'ZAR','2025-10-12 09:48:11',0),(363,391,1,NULL,357,0,1099.000,'ZAR','2025-10-12 09:48:11',0),(364,391,1,NULL,358,0,1099.000,'ZAR','2025-10-12 09:48:12',0),(365,390,1,NULL,359,0,89.000,'ZAR','2025-10-12 09:48:13',0),(366,392,1,NULL,360,0,89.000,'ZAR','2025-10-12 09:48:13',0),(367,391,1,NULL,361,0,1099.000,'ZAR','2025-10-12 09:48:13',0),(368,391,1,NULL,362,0,1099.000,'ZAR','2025-10-12 09:48:15',0),(369,391,1,NULL,363,0,1099.000,'ZAR','2025-10-12 09:48:15',0),(370,391,1,NULL,364,0,1099.000,'ZAR','2025-10-12 09:48:21',0),(371,391,1,NULL,365,0,1099.000,'ZAR','2025-10-12 09:48:21',0),(372,391,1,NULL,366,0,1099.000,'ZAR','2025-10-12 09:48:21',0),(373,391,1,NULL,367,0,1099.000,'ZAR','2025-10-12 09:48:26',0),(374,391,1,NULL,368,0,1099.000,'ZAR','2025-10-12 09:48:27',0),(375,391,1,NULL,369,0,1099.000,'ZAR','2025-10-12 09:48:27',0),(376,391,1,NULL,370,0,1099.000,'ZAR','2025-10-12 09:48:30',0),(377,391,1,NULL,371,0,1099.000,'ZAR','2025-10-12 09:48:30',0),(378,391,1,NULL,372,0,1099.000,'ZAR','2025-10-12 09:48:30',0),(379,391,1,NULL,373,0,1099.000,'ZAR','2025-10-12 09:48:35',0),(380,391,1,NULL,374,0,1099.000,'ZAR','2025-10-12 09:48:35',0),(381,391,1,NULL,375,0,1099.000,'ZAR','2025-10-12 09:48:35',0),(382,391,1,NULL,376,0,1099.000,'ZAR','2025-10-12 09:48:41',0),(383,391,1,NULL,377,0,1099.000,'ZAR','2025-10-12 09:48:42',0),(384,391,1,NULL,378,0,1099.000,'ZAR','2025-10-12 09:48:42',0),(385,391,1,NULL,379,0,1099.000,'ZAR','2025-10-14 13:34:39',0),(386,392,1,NULL,380,0,89.000,'ZAR','2025-10-14 13:34:41',0),(387,389,1,NULL,381,0,1099.000,'ZAR','2025-10-14 13:34:42',0),(388,392,1,NULL,382,0,89.000,'ZAR','2025-10-14 13:34:43',0),(389,391,1,NULL,383,0,1099.000,'ZAR','2025-10-14 13:34:45',0),(390,391,1,NULL,384,0,1099.000,'ZAR','2025-10-14 13:34:47',0),(391,391,1,NULL,385,0,1099.000,'ZAR','2025-10-14 13:34:47',0),(392,389,1,NULL,386,0,1099.000,'ZAR','2025-10-14 13:34:48',0),(393,390,1,NULL,387,0,89.000,'ZAR','2025-10-14 13:34:49',0),(394,389,1,NULL,388,0,1099.000,'ZAR','2025-10-14 13:34:50',0),(395,390,1,NULL,389,0,89.000,'ZAR','2025-10-14 13:34:50',0),(396,392,1,NULL,390,0,89.000,'ZAR','2025-10-15 16:04:46',0);
/*!40000 ALTER TABLE `wp_yith_wcwl` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yith_wcwl_lists`
--
DROP TABLE IF EXISTS `wp_yith_wcwl_lists`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yith_wcwl_lists` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) DEFAULT NULL,
`session_id` varchar(255) DEFAULT NULL,
`wishlist_slug` varchar(200) NOT NULL,
`wishlist_name` text DEFAULT NULL,
`wishlist_token` varchar(64) NOT NULL,
`wishlist_privacy` tinyint(1) NOT NULL DEFAULT 0,
`is_default` tinyint(1) NOT NULL DEFAULT 0,
`dateadded` timestamp NOT NULL DEFAULT current_timestamp(),
`expiration` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `wishlist_token` (`wishlist_token`),
KEY `wishlist_slug` (`wishlist_slug`)
) ENGINE=InnoDB AUTO_INCREMENT=391 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yith_wcwl_lists`
--
LOCK TABLES `wp_yith_wcwl_lists` WRITE;
/*!40000 ALTER TABLE `wp_yith_wcwl_lists` DISABLE KEYS */;
INSERT INTO `wp_yith_wcwl_lists` VALUES (182,NULL,'fcc6a54a63cc3bacd94648def59acb2e','','','6KQAG3894HH6',0,1,'2025-09-25 18:47:51','2025-10-25 18:47:38'),(183,NULL,'6db252485d363dce0d0d5bfbcc979372','','','YAC9GAVJQCMG',0,1,'2025-10-05 15:59:02','2025-11-04 15:59:02'),(184,NULL,'15eff4c780900b9ae197ba736ed98c1f','','','DVQ7KG7NSEIO',0,1,'2025-10-05 15:59:02','2025-11-04 15:59:02'),(185,NULL,'ee6e391ee32e2fb6b30f2a61d1699fb4','','','2SX56PLJJXDB',0,1,'2025-10-05 15:59:02','2025-11-04 15:59:02'),(186,NULL,'1624ec987866f1ef3421dd027ce09b0e','','','MP080M4FDK5S',0,1,'2025-10-05 15:59:23','2025-11-04 15:59:23'),(187,NULL,'0e56bbf912cf6c5ef351054047c55f23','','','21EK76G6LKCB',0,1,'2025-10-05 15:59:23','2025-11-04 15:59:23'),(188,NULL,'5727ac2304d888c7754fff8ba226acf1','','','710ZMHFIVKJ0',0,1,'2025-10-05 15:59:24','2025-11-04 15:59:24'),(189,NULL,'91326faf0439b4a74a59732f828a4d15','','','CZSQ0I6MVW51',0,1,'2025-10-05 15:59:24','2025-11-04 15:59:24'),(190,NULL,'7eb52b775323999be0ece3191c97f024','','','KOHI83T5ES3L',0,1,'2025-10-05 15:59:24','2025-11-04 15:59:24'),(191,NULL,'0560212535ed0df3870450ee4aab27cd','','','5SR6LN4HTKEB',0,1,'2025-10-05 15:59:25','2025-11-04 15:59:25'),(192,NULL,'9a7c9dc054ac683096c074bd64b71cc9','','','FGZE6G2JQFGG',0,1,'2025-10-05 15:59:25','2025-11-04 15:59:25'),(193,NULL,'0ee6cc85a7443573e902a6be0d8cd6ee','','','RLJZNKTT6A9J',0,1,'2025-10-05 15:59:26','2025-11-04 15:59:26'),(194,NULL,'10cef952748dda902d7e59949dd6bdb8','','','EWDDZRIVWXQJ',0,1,'2025-10-05 15:59:27','2025-11-04 15:59:27'),(195,NULL,'5be85946dc1338b07e86679abb4ad8c9','','','IT05UNTOUQ57',0,1,'2025-10-05 15:59:27','2025-11-04 15:59:27'),(196,NULL,'218ddc6c9a30388605ed3671f55ea254','','','5HYOXS0BGYIG',0,1,'2025-10-05 15:59:27','2025-11-04 15:59:27'),(197,NULL,'3298ce9b1b5d63d199d523129b7acc11','','','0J0XN1IDBWSY',0,1,'2025-10-05 15:59:27','2025-11-04 15:59:27'),(198,NULL,'d1842f6a9ab6b030ad618f7ea13acbd4','','','E9QFOXZSDAT7',0,1,'2025-10-05 15:59:28','2025-11-04 15:59:28'),(199,NULL,'f233bedc154029f69e9ca1d2707bc5a9','','','ACKDQDMOXQ94',0,1,'2025-10-05 15:59:28','2025-11-04 15:59:28'),(200,NULL,'38d3c8ba2dbc65a6d6893d5ea7a7a2fb','','','I31YYWSXSLR9',0,1,'2025-10-05 15:59:28','2025-11-04 15:59:28'),(201,NULL,'0ea0f147511516007c11e34152a4ad01','','','2191DKFVB55Z',0,1,'2025-10-05 15:59:29','2025-11-04 15:59:29'),(202,NULL,'d65bd64a7238c99c3fa08c7673d242af','','','BYQAVUCIC74M',0,1,'2025-10-05 15:59:29','2025-11-04 15:59:29'),(203,NULL,'87ccb63dfcd12dcfe2c260d111c62048','','','LBQWHV8FNWXS',0,1,'2025-10-05 15:59:30','2025-11-04 15:59:30'),(204,NULL,'1fdcb5c71ddab33f35d090b52abae762','','','JZZXDFS88D2W',0,1,'2025-10-05 15:59:30','2025-11-04 15:59:30'),(205,NULL,'cc67273742aea0a4af0d87f1b4e3cc8c','','','L0K0O2DZK77K',0,1,'2025-10-05 15:59:38','2025-11-04 15:59:38'),(206,NULL,'8d67181646d935cfb2b13a62400d19f1','','','JA2HGE1X5JNL',0,1,'2025-10-05 15:59:43','2025-11-04 15:59:43'),(207,NULL,'3ecd6d02448f0445497652a44dfa828f','','','T9Z2TQ0W78KR',0,1,'2025-10-05 15:59:45','2025-11-04 15:59:45'),(208,NULL,'ae40bc9e63f553250fb0aa69253761c5','','','9P3YDU6RHR39',0,1,'2025-10-05 15:59:45','2025-11-04 15:59:45'),(209,NULL,'0ff480f5eebf80f2b9994a8bb76ead34','','','9GCZVTL34N9Z',0,1,'2025-10-05 15:59:45','2025-11-04 15:59:45'),(210,NULL,'b9c3d414b53c1e2ff8c83b1d38ff55aa','','','LZV73JJRRX65',0,1,'2025-10-05 15:59:47','2025-11-04 15:59:47'),(211,NULL,'ccaae6d7060de02d9342f2dbeb8d7172','','','TH6BHMMQM641',0,1,'2025-10-05 15:59:47','2025-11-04 15:59:47'),(212,NULL,'ff3b64694eac75b76f7dd0e8fd0334d7','','','DK1D4O03UA1R',0,1,'2025-10-05 15:59:49','2025-11-04 15:59:49'),(213,NULL,'1ba57638ca417d8dd9a2f382e4b8fe20','','','CG48R6LRZ78A',0,1,'2025-10-05 15:59:50','2025-11-04 15:59:50'),(214,NULL,'c9f98eb729335324a79a9229119f2be1','','','KZ2TATAZ25BC',0,1,'2025-10-05 15:59:50','2025-11-04 15:59:50'),(215,NULL,'7e406f27bbeb36e8413f0b8907e64149','','','HYN5CUEHZ1S2',0,1,'2025-10-05 15:59:52','2025-11-04 15:59:52'),(216,NULL,'f80bfadd788a0e19784a9d9abca617b1','','','LYBKRBBATFW2',0,1,'2025-10-05 15:59:53','2025-11-04 15:59:53'),(217,NULL,'81c8b2c617b870279e21ad474b06ec30','','','N69W5U4F54CB',0,1,'2025-10-05 15:59:53','2025-11-04 15:59:53'),(218,NULL,'136c1f691b0bd12c28aa52d0fd0c141c','','','HHS3LTYEN6J2',0,1,'2025-10-05 15:59:54','2025-11-04 15:59:54'),(219,NULL,'c101af7e8db9988fb0ce8ab404e18844','','','TWPYVJLRR4LC',0,1,'2025-10-05 15:59:54','2025-11-04 15:59:54'),(220,NULL,'59ea6a2eaab33a711dc089f42f19ec03','','','GZ6K3XHUBX8N',0,1,'2025-10-05 15:59:54','2025-11-04 15:59:54'),(221,NULL,'d986b453da4a697df38565b02aec09b9','','','VEW7FT9LN7WN',0,1,'2025-10-05 15:59:54','2025-11-04 15:59:54'),(222,NULL,'8ebb7b4536dbb099e7e3fd31046dd795','','','CT3LB5JM2OUR',0,1,'2025-10-05 15:59:54','2025-11-04 15:59:54'),(223,NULL,'56f7508750fa7d10ce51fa0276770498','','','J99VYY9VGG1E',0,1,'2025-10-05 15:59:54','2025-11-04 15:59:54'),(224,NULL,'0087ef55baf4de0df66c350172341ef4','','','RPAK9L0H0CQN',0,1,'2025-10-05 15:59:56','2025-11-04 15:59:56'),(225,NULL,'be5c043f1ef61ccb6d9aebdd94a09b11','','','ITRD8S81QN9D',0,1,'2025-10-05 15:59:56','2025-11-04 15:59:56'),(226,NULL,'c2769318fe1469c45e5a5a6af3af8211','','','Q1JOEBNF4M9K',0,1,'2025-10-05 15:59:56','2025-11-04 15:59:56'),(227,NULL,'3407916f6bc928a20543ee5a1d422a51','','','TBCTRZZJXL7E',0,1,'2025-10-05 15:59:57','2025-11-04 15:59:57'),(228,NULL,'a49942d580fa4e3ba0efae19f697495c','','','VXP6H3I2DEXS',0,1,'2025-10-05 15:59:58','2025-11-04 15:59:58'),(229,NULL,'ef5c4212800ea1f4defcd6ef85c0ef23','','','MBDF7LQGXVJC',0,1,'2025-10-05 15:59:59','2025-11-04 15:59:59'),(230,NULL,'7bf018477eeeacb35829d15a0682e8e1','','','SGIHA37BSJ62',0,1,'2025-10-05 15:59:59','2025-11-04 15:59:59'),(231,NULL,'697ab9f13c80d84ffcd33ffa1680dd4b','','','R9CFL0W5F8SN',0,1,'2025-10-05 15:59:59','2025-11-04 15:59:59'),(232,NULL,'7a7433f3c27b77154eae26cba1810548','','','DCHK9PANB5OG',0,1,'2025-10-05 15:59:59','2025-11-04 15:59:59'),(233,NULL,'933a0b5ef46298708f9a98a6b5c31769','','','TWAOYVJ82OUL',0,1,'2025-10-05 15:59:59','2025-11-04 15:59:59'),(234,NULL,'f7b3833448e4f12a228ab487c2a538c8','','','L97FIH5UY5X4',0,1,'2025-10-05 15:59:59','2025-11-04 15:59:59'),(235,NULL,'73ca690e89035ae3ab7b4ac4cd02c21b','','','7XR2GOXMCZEL',0,1,'2025-10-05 15:59:59','2025-11-04 15:59:59'),(236,NULL,'618533e9021a92f5ca1c884632346356','','','2FWE05MOJSZE',0,1,'2025-10-05 15:59:59','2025-11-04 15:59:59'),(237,NULL,'0480bda5b8866356c0170675e580e84c','','','H8KAU5NS1UPE',0,1,'2025-10-05 16:00:00','2025-11-04 16:00:00'),(238,NULL,'6a9ea95dd5a3d390dfb6b551fa862224','','','C5BBNCWGUHAC',0,1,'2025-10-05 16:00:00','2025-11-04 16:00:00'),(239,NULL,'4361d36c333ef6e15fa79476e1f33a83','','','T4VIKSNO7RAL',0,1,'2025-10-05 16:00:00','2025-11-04 16:00:00'),(240,NULL,'174da4c49b32be3c9d4cf364c0f657e9','','','47W3VDQ6RIDU',0,1,'2025-10-05 16:00:03','2025-11-04 16:00:03'),(241,NULL,'3926055bd91c0794bf270cd1c698bbf1','','','9D4PP6P00WLD',0,1,'2025-10-05 16:00:03','2025-11-04 16:00:03'),(242,NULL,'82b513dc8846b647090eafa929aed4fe','','','EVF3ITWYBUMC',0,1,'2025-10-05 16:00:04','2025-11-04 16:00:04'),(243,NULL,'d40cc08eb75e13a4681070cd03d167d6','','','JWS64K5MHI9V',0,1,'2025-10-05 16:00:04','2025-11-04 16:00:04'),(244,NULL,'ffddc843b9f6020d3f8d3597ccaeafb9','','','919Y7U51L4B8',0,1,'2025-10-05 16:00:04','2025-11-04 16:00:04'),(245,NULL,'e1a27b4a219092267b8a36827fa1b2c1','','','Z2ER1GDX4HVX',0,1,'2025-10-05 16:00:04','2025-11-04 16:00:04'),(246,NULL,'ead87282ae305624b0dac976e504fc41','','','UIJ6CRECGEDH',0,1,'2025-10-05 16:00:04','2025-11-04 16:00:04'),(247,NULL,'248ab8f706e195ef98beb43a057f9274','','','LJ2TLICQXJOD',0,1,'2025-10-05 16:00:05','2025-11-04 16:00:05'),(248,NULL,'85c0642658af49004c88c2ab7f380da3','','','3VYVT1690CLQ',0,1,'2025-10-05 16:00:05','2025-11-04 16:00:05'),(249,NULL,'948e06b4edb3cd5bc6b4b0293e82e7ec','','','JGOCN4IEB4II',0,1,'2025-10-05 16:00:05','2025-11-04 16:00:05'),(250,NULL,'f849f7ce0f073ed48cbbdacc989e2c22','','','EDODPFDTNYJO',0,1,'2025-10-05 16:00:06','2025-11-04 16:00:06'),(251,NULL,'44bbf889f9c06fdbbe5dcd10d0a70e28','','','KV8LP3NGG6JK',0,1,'2025-10-05 16:00:08','2025-11-04 16:00:08'),(252,NULL,'288d2f47c960cf3e8250a1a9424b38ae','','','HQFT6UVFSLOZ',0,1,'2025-10-05 16:00:08','2025-11-04 16:00:08'),(253,NULL,'6167098f15f9c660b5877cfd48aee684','','','Y6I1N9AZSDZB',0,1,'2025-10-05 16:00:08','2025-11-04 16:00:08'),(254,NULL,'4a652010c82f3c1ecbec24cdddfc1d9a','','','FD1MUPDU1VZ3',0,1,'2025-10-05 16:00:09','2025-11-04 16:00:09'),(255,NULL,'c6dd5d4a16e5412cb13a933c5d4342c9','','','JKNMGGB6EZ2X',0,1,'2025-10-05 16:00:09','2025-11-04 16:00:09'),(256,NULL,'ee4ab5ac89a28b233651453b9553ead1','','','AV2IU8X1Y7EU',0,1,'2025-10-05 16:00:09','2025-11-04 16:00:09'),(257,NULL,'a858c85b1e91ee6fcab9b50119609c9f','','','CBCBPQS4UZMO',0,1,'2025-10-05 16:00:10','2025-11-04 16:00:10'),(258,NULL,'9d18de5c621f413710d957f8f6b30a23','','','7IPDRQA0P41O',0,1,'2025-10-05 16:00:10','2025-11-04 16:00:10'),(259,NULL,'245b7a10166158abfbf281bb1dcf3020','','','UN0B0DSIM4P4',0,1,'2025-10-05 16:00:10','2025-11-04 16:00:10'),(260,NULL,'27969712943bf73f256d65a549d8aad6','','','EAT46OJECIVQ',0,1,'2025-10-05 16:00:10','2025-11-04 16:00:10'),(261,NULL,'53841e6f073c2296646f5ec2e83ef66d','','','U3XBZE05AZKM',0,1,'2025-10-05 16:00:10','2025-11-04 16:00:10'),(262,NULL,'b4c39eae21c62c3131ddd8d553dcda06','','','E23BV3NEC02K',0,1,'2025-10-05 16:00:11','2025-11-04 16:00:11'),(263,NULL,'269cc9225d15a4ccb26118d119986273','','','IBKF3J6A2ZYK',0,1,'2025-10-05 16:00:13','2025-11-04 16:00:13'),(264,NULL,'10da42c4ae247df9f348e5f70c5b7750','','','CAM6X92O95F0',0,1,'2025-10-05 16:00:13','2025-11-04 16:00:13'),(265,NULL,'f929ea95183a2b029c75870fe99bff73','','','AR0H47VYMRC5',0,1,'2025-10-05 16:00:14','2025-11-04 16:00:14'),(266,NULL,'deaa690b72103410165f267d874eecfb','','','T6WYPB2207JU',0,1,'2025-10-05 16:00:14','2025-11-04 16:00:14'),(267,NULL,'88071a06562853a0aaf9c03eab8ae573','','','5BIWGY333FD5',0,1,'2025-10-05 16:00:14','2025-11-04 16:00:14'),(268,NULL,'667b4eb3deb7bce4b96732ab2e321a10','','','JVDJL5EVBWBP',0,1,'2025-10-05 16:00:14','2025-11-04 16:00:14'),(269,NULL,'4f7fe9908f260090a317f2569ce4d753','','','F1RPEFKH00X2',0,1,'2025-10-05 16:00:14','2025-11-04 16:00:14'),(270,NULL,'978847ece7c9bf15b0144a54cab3bb67','','','8H6ZUKNRFMW4',0,1,'2025-10-05 16:00:14','2025-11-04 16:00:14'),(271,NULL,'5f19ac64c0737aab7bbedd90708d9fea','','','R3GNLMR4XXXY',0,1,'2025-10-05 16:00:14','2025-11-04 16:00:14'),(272,NULL,'4a5e0e076a660ee102ff29cb22f0af1c','','','F818BWXJVT2S',0,1,'2025-10-05 16:00:14','2025-11-04 16:00:14'),(273,NULL,'bb448afcbe79d46c6cd8899afdbcb336','','','K323YTQQM0CS',0,1,'2025-10-05 16:00:15','2025-11-04 16:00:15'),(274,NULL,'0477d85f9b5a980fe4b2e85700d7b8f1','','','RMH663MU06NP',0,1,'2025-10-05 16:00:16','2025-11-04 16:00:16'),(275,NULL,'e77355d9b5d1b7018414b4512651c048','','','3L9TJWRHWHQD',0,1,'2025-10-05 16:00:16','2025-11-04 16:00:16'),(276,NULL,'d1022761accc0a5f969cc6a7e0177966','','','C6MX9AL5EBW2',0,1,'2025-10-05 16:00:16','2025-11-04 16:00:16'),(277,NULL,'c0e9c049718d96800cee881d5d0407ed','','','C4D9R4PBHR69',0,1,'2025-10-05 16:00:16','2025-11-04 16:00:16'),(278,NULL,'db16294101ce16027df67aa8f26a199c','','','3X039TTHDV2K',0,1,'2025-10-05 16:00:16','2025-11-04 16:00:16'),(279,NULL,'24baa2ee66a4e06fe5e1b65756d1f631','','','4IGGU8ZYP6GF',0,1,'2025-10-05 16:00:18','2025-11-04 16:00:18'),(280,NULL,'1f027811be26d5b99295fd6edd8ccb05','','','W25YAC2SC3X1',0,1,'2025-10-05 16:00:19','2025-11-04 16:00:19'),(281,NULL,'346e1718a31ce4cc605e5c8c01c4acda','','','P9KBXLHNEQK0',0,1,'2025-10-05 16:00:19','2025-11-04 16:00:19'),(282,NULL,'5ce2a907f16e15cb13739e211aee2a33','','','A5P9ITWI72OZ',0,1,'2025-10-05 16:00:20','2025-11-04 16:00:20'),(283,NULL,'5f93fee609ae6f2c4147461016a1e39a','','','QT75DZ6ZF1BD',0,1,'2025-10-05 16:00:20','2025-11-04 16:00:20'),(284,NULL,'12bb89173d47b2ed2218287d711dfaa7','','','4XJCSSPXF7PA',0,1,'2025-10-05 16:00:20','2025-11-04 16:00:20'),(285,NULL,'63c766c59c4495d2d7bdad810339e375','','','9L1JT6WNUT6S',0,1,'2025-10-05 16:00:20','2025-11-04 16:00:20'),(286,NULL,'6404faf3ac1185619a9b450e280126d6','','','0CM1FD8DLJTH',0,1,'2025-10-05 16:00:20','2025-11-04 16:00:20'),(287,NULL,'94d08a8a7abb02d83f95087f5eb3e985','','','GGUXI62RUZ1B',0,1,'2025-10-05 16:00:20','2025-11-04 16:00:20'),(288,NULL,'31b7aab9751ce0806f854487f2d35b87','','','Q2F2KMKNKYME',0,1,'2025-10-05 16:00:21','2025-11-04 16:00:21'),(289,NULL,'7a671f44f83042f14b5535ae28bf8f65','','','64W2F4IPOPVX',0,1,'2025-10-05 16:00:21','2025-11-04 16:00:21'),(290,NULL,'58ed19e325d87c4f63de40e6185c3ae6','','','AWUY5IWVLEZD',0,1,'2025-10-05 16:00:21','2025-11-04 16:00:21'),(291,NULL,'52c30c439607a11d35fa02a3cf349532','','','0H2QE0XXSZ20',0,1,'2025-10-05 16:00:21','2025-11-04 16:00:21'),(292,NULL,'c4057fb3239a884437b713e874961453','','','MFDEY2MYAUJ2',0,1,'2025-10-05 16:00:21','2025-11-04 16:00:21'),(293,NULL,'7709f35c16bcc0ea2f8cbb0212a0b80e','','','WFDHBZF7KTT8',0,1,'2025-10-05 16:00:21','2025-11-04 16:00:21'),(294,NULL,'e5e24b76b5002d1fd95531f6788ec241','','','D10LZ2N3ZU3N',0,1,'2025-10-05 16:00:22','2025-11-04 16:00:22'),(295,NULL,'e1b8fdfa3690a61074591a50e6be6253','','','NQWQ9H4BCT66',0,1,'2025-10-05 16:00:26','2025-11-04 16:00:26'),(296,NULL,'13efbf86d19fa3420ceb5ceffddb4dea','','','O1PCXI1Z6XPO',0,1,'2025-10-05 16:00:26','2025-11-04 16:00:26'),(297,NULL,'95987657b44486c2c26d098a54465601','','','XYAPQN73C7EN',0,1,'2025-10-05 16:00:26','2025-11-04 16:00:26'),(298,NULL,'8029eb661938d6b71e9c8dc2d130a1be','','','7DUWUCKUAJJ0',0,1,'2025-10-05 16:00:26','2025-11-04 16:00:26'),(299,NULL,'fb741e5165db446a04b56c861f650b1d','','','ZDCY44N6BLTY',0,1,'2025-10-05 16:00:30','2025-11-04 16:00:30'),(300,NULL,'01ce15524f4176e44d8dacf9c9b3c8cf','','','ENUWS4EFBH2U',0,1,'2025-10-12 09:47:30','2025-11-11 09:47:30'),(301,NULL,'d1156926b079df4a71337f98a70df6ee','','','E2YF51QIG0Q3',0,1,'2025-10-12 09:47:30','2025-11-11 09:47:30'),(302,NULL,'aee9b11d9e97f83b28a5faeddc8f3e61','','','G7EV2R6GC2R9',0,1,'2025-10-12 09:47:30','2025-11-11 09:47:30'),(303,NULL,'81373616884a87f1d0545d2cc4e058cc','','','2R9VZC4YE2XC',0,1,'2025-10-12 09:47:36','2025-11-11 09:47:36'),(304,NULL,'abff5d0060d7b60830f70a54ab06b6b5','','','Z2V1KXUJOOQP',0,1,'2025-10-12 09:47:37','2025-11-11 09:47:37'),(305,NULL,'f6cfb2ff83bd7bd34aef3faf9dd24966','','','6YN27VDFH4WV',0,1,'2025-10-12 09:47:38','2025-11-11 09:47:38'),(306,NULL,'f73819e0666571d4d796c0736bae6fa3','','','YP3GLC7WCWOR',0,1,'2025-10-12 09:47:43','2025-11-11 09:47:43'),(307,NULL,'cc8b40fc51894a7c8dcd7bdb3110c8a8','','','44P8T1HEAMXA',0,1,'2025-10-12 09:47:43','2025-11-11 09:47:43'),(308,NULL,'f3d6a00632400a89f2d5d13029026bdc','','','IRYD6RECHPVQ',0,1,'2025-10-12 09:47:46','2025-11-11 09:47:46'),(309,NULL,'2f77e28af94682d82653a502974bad7f','','','NJ34TSKSU6VA',0,1,'2025-10-12 09:47:46','2025-11-11 09:47:46'),(310,NULL,'7904ce1cf8f775b6ac3513fd000aff04','','','IV971AOQ51DY',0,1,'2025-10-12 09:47:48','2025-11-11 09:47:48'),(311,NULL,'1f23040c5738666b71262b3a795117b4','','','E8KKTK1OGA45',0,1,'2025-10-12 09:47:52','2025-11-11 09:47:52'),(312,NULL,'176eeca1a426b8669bcc7fdd10256c8c','','','NCJEEK3SRRDQ',0,1,'2025-10-12 09:47:52','2025-11-11 09:47:52'),(313,NULL,'d909c37f2bfddf2d7a23c03d0d6c30d6','','','HFLFAQVYW8PY',0,1,'2025-10-12 09:47:52','2025-11-11 09:47:52'),(314,NULL,'d692098b0489390acd0a7e98186bec0f','','','230QN10QL0VT',0,1,'2025-10-12 09:47:52','2025-11-11 09:47:52'),(315,NULL,'5e7701a8f32f42bf195f657b964904f8','','','24THP1G95WZX',0,1,'2025-10-12 09:47:54','2025-11-11 09:47:54'),(316,NULL,'6a21f35ccae70942644fd89beec1257e','','','L5Z2HQNVBZU8',0,1,'2025-10-12 09:47:54','2025-11-11 09:47:54'),(317,NULL,'202fda76d037eae256011f8801869e13','','','51FEI8KIU6R1',0,1,'2025-10-12 09:47:54','2025-11-11 09:47:54'),(318,NULL,'cbc9df2748d0a1357b8462a6bcfcc1bb','','','9IYP4U6D1IUM',0,1,'2025-10-12 09:47:55','2025-11-11 09:47:55'),(319,NULL,'991ee2ad7dda8e5445e8160e770d7325','','','4MBEBL7PYCCD',0,1,'2025-10-12 09:47:55','2025-11-11 09:47:55'),(320,NULL,'abb5fc8c2e3df22080cbd96432f662a8','','','MW1PVH33AUHL',0,1,'2025-10-12 09:47:55','2025-11-11 09:47:55'),(321,NULL,'4eedacda4f31acb19bd5e5480245791f','','','ARKS1XKITN5F',0,1,'2025-10-12 09:47:55','2025-11-11 09:47:55'),(322,NULL,'48f477de0a2ef15a1bb0344de9dc8c62','','','P07VE02Y1YJ7',0,1,'2025-10-12 09:47:55','2025-11-11 09:47:55'),(323,NULL,'3f6564987b78e954c70f38cca5d688e8','','','0HMRJNJ8G7HD',0,1,'2025-10-12 09:47:57','2025-11-11 09:47:57'),(324,NULL,'5c71a229200f4b8704ae92580db8a8f2','','','ITJ4ZAVRRFTE',0,1,'2025-10-12 09:47:57','2025-11-11 09:47:57'),(325,NULL,'a44c74f0a22e6f2400b6516b97107f56','','','FQVMMZTES40B',0,1,'2025-10-12 09:47:57','2025-11-11 09:47:57'),(326,NULL,'157cd0f4d9b8b23405c0e70f00a1dca3','','','CCFZQ5JM95X2',0,1,'2025-10-12 09:47:57','2025-11-11 09:47:57'),(327,NULL,'2f75cf66d962cc8d857280ec0b0998b5','','','3MTTOWR2MC2U',0,1,'2025-10-12 09:47:58','2025-11-11 09:47:58'),(328,NULL,'10e3308dd3e484324577a3a408cd3e4c','','','75UPPSA9J49O',0,1,'2025-10-12 09:47:59','2025-11-11 09:47:59'),(329,NULL,'1266feb2d7b543a101bf7c392ad76611','','','UI6JYZU8MQS5',0,1,'2025-10-12 09:47:59','2025-11-11 09:47:59'),(330,NULL,'a5cdf8a44fd9b9618d1516b1ecd64fe6','','','0QL2CNATNUKA',0,1,'2025-10-12 09:47:59','2025-11-11 09:47:59'),(331,NULL,'0f0f2173cae5fb2bbafcb6a6fa8f5567','','','XRX15DX53XAA',0,1,'2025-10-12 09:47:59','2025-11-11 09:47:59'),(332,NULL,'2460ad1881b2f5166989e1d7e65ac781','','','K3NU90IZZLYI',0,1,'2025-10-12 09:47:59','2025-11-11 09:47:59'),(333,NULL,'858e91f69b3bd83d3ce5274e47d309a4','','','GFYNL0W0ANGM',0,1,'2025-10-12 09:48:00','2025-11-11 09:48:00'),(334,NULL,'2a6e05add6e16ca19c9b541a6cf4b498','','','NYOMMFPT0ZZ7',0,1,'2025-10-12 09:48:02','2025-11-11 09:48:02'),(335,NULL,'d66d8c79ff92de354e59c5112a719d37','','','LSZR8R5JPMOM',0,1,'2025-10-12 09:48:02','2025-11-11 09:48:02'),(336,NULL,'78ae1d22465172301f1c914894a8b15d','','','RYXV9PZY2TOY',0,1,'2025-10-12 09:48:03','2025-11-11 09:48:03'),(337,NULL,'221a59b2c9dcab2931a299a1dad35a66','','','NBQT15Z8Y0Z2',0,1,'2025-10-12 09:48:04','2025-11-11 09:48:04'),(338,NULL,'2b24d1d0a3ed9d9864e3832a9898d9d2','','','X3TTSBWCZSYU',0,1,'2025-10-12 09:48:04','2025-11-11 09:48:04'),(339,NULL,'1f7be96e094bb6b9d8c5d7bd5d2a4967','','','25SB6DHDKN1C',0,1,'2025-10-12 09:48:04','2025-11-11 09:48:04'),(340,NULL,'73ab6abd3a4c47a6d122a8b0ae94b78e','','','T3P444HMIMPU',0,1,'2025-10-12 09:48:04','2025-11-11 09:48:04'),(341,NULL,'a94efe54c7d6ba202a850b8ca34cb89d','','','D3AKDUZHRWGX',0,1,'2025-10-12 09:48:05','2025-11-11 09:48:05'),(342,NULL,'b5a0c77cc6cfbdaa10ae97cfd4c67ab1','','','7BCU7TJOBC1S',0,1,'2025-10-12 09:48:06','2025-11-11 09:48:06'),(343,NULL,'96615a9bc8d80cf68ce131d78d665e01','','','NER11LWW3PB2',0,1,'2025-10-12 09:48:06','2025-11-11 09:48:06'),(344,NULL,'495ed63bf3abb826a04ca245d8d40896','','','91CORW57QCXN',0,1,'2025-10-12 09:48:07','2025-11-11 09:48:07'),(345,NULL,'ad9d36edaa13167652744bcfa4f47e92','','','OSMR8Z9KRLGT',0,1,'2025-10-12 09:48:08','2025-11-11 09:48:08'),(346,NULL,'4a61dd456d79e2b540162d25aa067d23','','','ZOL9JSE6UQHI',0,1,'2025-10-12 09:48:08','2025-11-11 09:48:08'),(347,NULL,'95dfc047f59d273a42e635ef824bac9e','','','NLMUCZINHB9M',0,1,'2025-10-12 09:48:08','2025-11-11 09:48:08'),(348,NULL,'c4e6a015bf75d7857d09600746e66dae','','','CVEU0HOMB048',0,1,'2025-10-12 09:48:08','2025-11-11 09:48:08'),(349,NULL,'75ffb367b13497b5521c82177ab8ef23','','','293O73FKGCSK',0,1,'2025-10-12 09:48:08','2025-11-11 09:48:08'),(350,NULL,'a5bef62ab27d98cfe5b750aac9cee75d','','','ZXIFZ05A2D54',0,1,'2025-10-12 09:48:09','2025-11-11 09:48:09'),(351,NULL,'889fa5b31cf12a5516b5d3efbfcae2cf','','','4TNYRT96FNAR',0,1,'2025-10-12 09:48:09','2025-11-11 09:48:09'),(352,NULL,'8e778c114662ee3f94f4ebce81605f16','','','280HOVX1MSGC',0,1,'2025-10-12 09:48:09','2025-11-11 09:48:09'),(353,NULL,'cf0547c8cf3b4a99fb6c7577c01cbaa0','','','8X0ZGP069JLY',0,1,'2025-10-12 09:48:10','2025-11-11 09:48:10'),(354,NULL,'ef32964c97beb27caa9086bc7802466e','','','VMG907GI5DAE',0,1,'2025-10-12 09:48:10','2025-11-11 09:48:10'),(355,NULL,'971288e399fa6778b0c79b6e95dc5ac4','','','LC9WIIUMSQ4S',0,1,'2025-10-12 09:48:11','2025-11-11 09:48:11'),(356,NULL,'11019dd30f3172f6f001feecb36ac889','','','5OW78BWCI9JE',0,1,'2025-10-12 09:48:11','2025-11-11 09:48:11'),(357,NULL,'6417d1ae25f7004d2347e263497fca19','','','Q3DCQT9Q5MB7',0,1,'2025-10-12 09:48:11','2025-11-11 09:48:11'),(358,NULL,'c83a116631a69e7e7553af0abc13cff6','','','6GCKR9SJB9J9',0,1,'2025-10-12 09:48:12','2025-11-11 09:48:12'),(359,NULL,'66f2d1c3c916c6c1397a0327584bb850','','','ZTUNXJUWYRXZ',0,1,'2025-10-12 09:48:12','2025-11-11 09:48:12'),(360,NULL,'fa0472bc1805720bbef9a2c84714e6f5','','','TOWCY7RDGSIG',0,1,'2025-10-12 09:48:13','2025-11-11 09:48:13'),(361,NULL,'ed2204ee08f86077661bca2f471959dd','','','RYE7Z3E7FM38',0,1,'2025-10-12 09:48:13','2025-11-11 09:48:13'),(362,NULL,'bcbe78ad92c700295bf65c369a03f8fe','','','ZSC4P6KR7VHM',0,1,'2025-10-12 09:48:15','2025-11-11 09:48:15'),(363,NULL,'bedf2d453fbe24604b151a37585d1d16','','','ZKJOVP4MJOXR',0,1,'2025-10-12 09:48:15','2025-11-11 09:48:15'),(364,NULL,'1d40f5de73a706931d5530152d9ff754','','','7QP84FKYPQO9',0,1,'2025-10-12 09:48:21','2025-11-11 09:48:21'),(365,NULL,'2a203d7663c045a579283139c8772938','','','WRG7FR70TH2O',0,1,'2025-10-12 09:48:21','2025-11-11 09:48:21'),(366,NULL,'916faebd4e6941c9a1afa3ec6f26ca61','','','9GY9IZ9XF2E6',0,1,'2025-10-12 09:48:21','2025-11-11 09:48:21'),(367,NULL,'d23d0327689e38d2444221a2ca7c41b7','','','SW5HEQ27G462',0,1,'2025-10-12 09:48:26','2025-11-11 09:48:26'),(368,NULL,'659bb6f3be2d62f8ac91bdb1cb16e4fa','','','FUNJCRJDABYS',0,1,'2025-10-12 09:48:27','2025-11-11 09:48:27'),(369,NULL,'45a9ce3f2f796d13b5bfe85794b9d48a','','','F6QLUQYTXN2S',0,1,'2025-10-12 09:48:27','2025-11-11 09:48:27'),(370,NULL,'84be52a0797aaa9c7c81cbcd19642e6e','','','XU09X2L2FGWS',0,1,'2025-10-12 09:48:30','2025-11-11 09:48:30'),(371,NULL,'47419fe1495157a07318ca86aaf4c9ee','','','S6Q9I6LX8WZY',0,1,'2025-10-12 09:48:30','2025-11-11 09:48:30'),(372,NULL,'12f8a46d4b54ce2ddc6e07351a020e1b','','','8X0L0HUK9SI7',0,1,'2025-10-12 09:48:30','2025-11-11 09:48:30'),(373,NULL,'22e7aa9467bebc6622dd569b360ca4da','','','1KI53FA5Q4LE',0,1,'2025-10-12 09:48:35','2025-11-11 09:48:35'),(374,NULL,'6b2cbf6a416c52f0ff2d7bc651af2d8b','','','9HOXQ23XMZ2K',0,1,'2025-10-12 09:48:35','2025-11-11 09:48:35'),(375,NULL,'6adc9b4d377c1d4c7cb1b7756fc60629','','','9KS2M0SEN1K9',0,1,'2025-10-12 09:48:35','2025-11-11 09:48:35'),(376,NULL,'4276d95d07f3aa6e2b242daefe515910','','','XVRFU4H4ADCL',0,1,'2025-10-12 09:48:41','2025-11-11 09:48:41'),(377,NULL,'e8fc3a74424bb7fbda17cbfb0ce6202b','','','SM3J6685XP9U',0,1,'2025-10-12 09:48:42','2025-11-11 09:48:42'),(378,NULL,'6611b8e7a1398ebf5fc7147f2a6f246b','','','JOOXMT1X6IQ6',0,1,'2025-10-12 09:48:42','2025-11-11 09:48:42'),(379,NULL,'c48a281d74e04b4b8deed9043ecdd716','','','67OXEVW9ION8',0,1,'2025-10-14 13:34:39','2025-11-13 13:34:39'),(380,NULL,'3ff9fc337deede25c227ecda89284e50','','','W85JZ65D422C',0,1,'2025-10-14 13:34:41','2025-11-13 13:34:41'),(381,NULL,'c2d58882d51578d45f579519deb68583','','','3JGQ7X5UOWPM',0,1,'2025-10-14 13:34:42','2025-11-13 13:34:42'),(382,NULL,'3ef76a1e7965c568a2ed52bb03c87dd9','','','O8N083R6JC9Z',0,1,'2025-10-14 13:34:43','2025-11-13 13:34:43'),(383,NULL,'d5a3b8547a1a5465fb15eabc75882fc4','','','3SLX2B8HGL0U',0,1,'2025-10-14 13:34:45','2025-11-13 13:34:45'),(384,NULL,'ce922039b587e1610d11759590b22f3c','','','D5CV7KSOP83C',0,1,'2025-10-14 13:34:47','2025-11-13 13:34:47'),(385,NULL,'6f85ed2cdcd315bfd0879f9d8f0defcd','','','ZVDJ0X0XP151',0,1,'2025-10-14 13:34:47','2025-11-13 13:34:47'),(386,NULL,'762edf7fb41007e427a905b80f6af0fe','','','HZEUJPHW3JFV',0,1,'2025-10-14 13:34:48','2025-11-13 13:34:48'),(387,NULL,'d1613790ef4fb6c406a044ee0e2c5bea','','','UDNFG069DYU6',0,1,'2025-10-14 13:34:48','2025-11-13 13:34:48'),(388,NULL,'0d4bbf75af6ef4e8c735a4a06922b597','','','B471W5GC7SE7',0,1,'2025-10-14 13:34:50','2025-11-13 13:34:50'),(389,NULL,'1a065e7f3fdb907f7c31877cc5fea916','','','LCOD7741VVDQ',0,1,'2025-10-14 13:34:50','2025-11-13 13:34:50'),(390,NULL,'405c1939d9ec8e5600ad1f7440a4196b','','','FP0UTYDBJMF2',0,1,'2025-10-15 16:04:46','2025-11-14 16:04:46');
/*!40000 ALTER TABLE `wp_yith_wcwl_lists` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2025-10-19 21:56:22