-- MariaDB dump 10.19  Distrib 10.6.16-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: cach0166_wp840
-- ------------------------------------------------------
-- Server version	10.6.16-MariaDB

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

--
-- Table structure for table `wpj7_EWD_OTP_Customers`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Customers` (
  `Customer_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Customer_Number` text NOT NULL,
  `Customer_Name` text NOT NULL,
  `Sales_Rep_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_WP_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_FEUP_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_Email` text NOT NULL,
  `Customer_Created` datetime DEFAULT '1999-01-01 00:00:00',
  UNIQUE KEY `id` (`Customer_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Customers`
--

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

--
-- Table structure for table `wpj7_EWD_OTP_Fields_Meta`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Fields_Meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Fields_Meta` (
  `Meta_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Field_ID` mediumint(9) DEFAULT 0,
  `Order_ID` mediumint(9) DEFAULT 0,
  `Customer_ID` mediumint(9) DEFAULT 0,
  `Sales_Rep_ID` mediumint(9) DEFAULT 0,
  `Meta_Value` text NOT NULL,
  UNIQUE KEY `id` (`Meta_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Fields_Meta`
--

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

--
-- Table structure for table `wpj7_EWD_OTP_Order_Statuses`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Order_Statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Order_Statuses` (
  `Order_Status_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Order_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Order_Status` text NOT NULL,
  `Order_Location` text NOT NULL,
  `Order_Internal_Status` text NOT NULL,
  `Order_Status_Created` datetime DEFAULT '1999-01-01 00:00:00',
  UNIQUE KEY `id` (`Order_Status_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Order_Statuses`
--

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

--
-- Table structure for table `wpj7_EWD_OTP_Orders`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Orders` (
  `Order_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Order_Name` text NOT NULL,
  `Order_Number` text NOT NULL,
  `Order_Status` text NOT NULL,
  `Order_External_Status` text NOT NULL,
  `Order_Location` text NOT NULL,
  `Order_Notes_Public` text NOT NULL,
  `Order_Notes_Private` text NOT NULL,
  `Order_Customer_Notes` text NOT NULL,
  `Order_Email` text NOT NULL,
  `Sales_Rep_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_ID` mediumint(9) NOT NULL DEFAULT 0,
  `WooCommerce_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Zendesk_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Order_Status_Updated` datetime DEFAULT '1999-01-01 00:00:00',
  `Order_Display` text NOT NULL,
  `Order_Payment_Price` text NOT NULL,
  `Order_Payment_Completed` text NOT NULL,
  `Order_PayPal_Receipt_Number` text NOT NULL,
  `Order_View_Count` mediumint(9) NOT NULL DEFAULT 0,
  `Order_Tracking_Link_Clicked` text NOT NULL,
  `Order_Tracking_Link_Code` text NOT NULL,
  UNIQUE KEY `id` (`Order_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Orders`
--

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

--
-- Table structure for table `wpj7_EWD_OTP_Sales_Reps`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Sales_Reps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Sales_Reps` (
  `Sales_Rep_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Sales_Rep_Number` text NOT NULL,
  `Sales_Rep_First_Name` text NOT NULL,
  `Sales_Rep_Last_Name` text NOT NULL,
  `Sales_Rep_Email` text NOT NULL,
  `Sales_Rep_WP_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Sales_Rep_Created` datetime DEFAULT '1999-01-01 00:00:00',
  UNIQUE KEY `id` (`Sales_Rep_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Sales_Reps`
--

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

--
-- Table structure for table `wpj7_actionscheduler_actions`
--

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

--
-- Dumping data for table `wpj7_actionscheduler_actions`
--

LOCK TABLES `wpj7_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wpj7_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wpj7_actionscheduler_actions` VALUES (95,'woocommerce_run_on_woocommerce_admin_updated','failed','2022-12-07 22:40:07','2022-12-07 16:40:07','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1670452807;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1670452807;}',6,1,'2022-12-07 22:40:19','2022-12-07 16:40:19',0,NULL,10),(136,'woocommerce_run_on_woocommerce_admin_updated','failed','2022-12-14 18:33:01','2022-12-14 12:33:01','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1671042781;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1671042781;}',6,1,'2022-12-14 18:33:30','2022-12-14 12:33:30',0,NULL,10),(13919,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-02-19 19:39:36','2023-02-19 13:39:36','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1676835576;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1676835576;}',6,1,'2023-02-19 19:39:36','2023-02-19 13:39:36',0,NULL,10),(14003,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-03-01 16:09:58','2023-03-01 10:09:58','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1677686998;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1677686998;}',6,1,'2023-03-01 16:09:58','2023-03-01 10:09:58',0,NULL,10),(15473,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-03-14 16:56:48','2023-03-14 11:56:48','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1678813008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1678813008;}',6,1,'2023-03-14 16:57:23','2023-03-14 11:57:23',0,NULL,10),(15723,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-03-25 19:14:20','2023-03-25 14:14:20','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1679771660;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1679771660;}',6,1,'2023-03-25 19:14:24','2023-03-25 14:14:24',0,NULL,10),(16289,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-04-14 17:20:54','2023-04-14 12:20:54','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1681492854;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1681492854;}',6,1,'2023-04-14 17:20:55','2023-04-14 12:20:55',0,NULL,10),(16358,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-04-27 14:58:33','2023-04-27 09:58:33','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1682607513;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1682607513;}',6,1,'2023-04-27 15:05:11','2023-04-27 10:05:11',0,NULL,10),(16426,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-05-10 15:10:56','2023-05-10 10:10:56','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1683731456;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1683731456;}',6,1,'2023-05-10 15:18:59','2023-05-10 10:18:59',0,NULL,10),(17039,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-05-30 15:46:27','2023-05-30 10:46:27','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1685461587;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1685461587;}',6,1,'2023-05-30 15:46:28','2023-05-30 10:46:28',0,NULL,10),(17096,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-06-01 15:58:30','2023-06-01 10:58:30','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1685635110;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1685635110;}',6,1,'2023-06-01 16:06:57','2023-06-01 11:06:57',0,NULL,10),(29969,'action_scheduler/migration_hook','failed','2023-07-05 18:14:19','2023-07-05 13:14:19','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1688580859;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1688580859;}',1,1,'2023-07-05 18:14:25','2023-07-05 13:14:25',0,NULL,10),(65273,'action_scheduler/migration_hook','failed','2023-11-11 21:10:51','2023-11-11 22:10:51','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1699737051;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1699737051;}',1,1,'2023-11-11 21:11:08','2023-11-11 22:11:08',0,NULL,10),(65275,'ast_insert_shipping_provider','failed','2023-11-12 00:38:13','2023-11-12 01:38:13','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1699749493;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1699749493;}',10,1,'2023-11-12 00:38:14','2023-11-12 01:38:14',0,NULL,10),(65350,'action_scheduler/migration_hook','failed','2023-11-18 22:12:59','2023-11-18 23:12:59','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700345579;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700345579;}',1,1,'2023-11-18 22:13:59','2023-11-18 23:13:59',0,NULL,10),(65353,'parcelpanel_update_courier_list','complete','2023-12-20 15:03:03','2023-12-20 16:03:03','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703084583;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703084583;}',7,1,'2023-12-20 15:22:53','2023-12-20 16:22:53',0,NULL,10),(75247,'woocommerce_cleanup_draft_orders','complete','2023-12-05 10:07:57','2023-12-05 11:07:57','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1701770877;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1701770877;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-05 10:10:35','2023-12-05 11:10:35',0,NULL,10),(75248,'woocommerce_cleanup_draft_orders','complete','2023-12-06 10:10:35','2023-12-06 11:10:35','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1701857435;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1701857435;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-06 11:21:44','2023-12-06 12:21:44',0,NULL,10),(75249,'woocommerce_cleanup_draft_orders','complete','2023-12-07 11:21:44','2023-12-07 12:21:44','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1701948104;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1701948104;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-07 11:25:31','2023-12-07 12:25:31',0,NULL,10),(75250,'woocommerce_cleanup_draft_orders','complete','2023-12-08 11:25:31','2023-12-08 12:25:31','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702034731;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702034731;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-08 13:26:45','2023-12-08 14:26:45',0,NULL,10),(75251,'action_scheduler/migration_hook','complete','2023-12-07 15:50:28','2023-12-07 16:50:28','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1701964228;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1701964228;}',1,1,'2023-12-07 15:51:09','2023-12-07 16:51:09',0,NULL,10),(75267,'action_scheduler/migration_hook','complete','2023-12-07 16:32:38','2023-12-07 17:32:38','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1701966758;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1701966758;}',1,1,'2023-12-07 16:32:44','2023-12-07 17:32:44',0,NULL,10),(75268,'action_scheduler/migration_hook','complete','2023-12-07 18:37:40','2023-12-07 19:37:40','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1701974260;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1701974260;}',1,1,'2023-12-07 18:38:23','2023-12-07 19:38:23',0,NULL,10),(75269,'cartflows_ca_send_report_summary_email','complete','2023-12-11 14:00:00','2023-12-11 15:00:00','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702303200;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702303200;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,1,'2023-12-11 15:27:00','2023-12-11 16:27:00',0,NULL,10),(75270,'woocommerce_cleanup_draft_orders','complete','2023-12-09 13:26:45','2023-12-09 14:26:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702128405;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702128405;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-09 16:40:59','2023-12-09 17:40:59',0,NULL,10),(75271,'woocommerce_cleanup_draft_orders','complete','2023-12-10 16:40:59','2023-12-10 17:40:59','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702226459;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702226459;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-10 18:36:26','2023-12-10 19:36:26',0,NULL,10),(75272,'woocommerce_cleanup_draft_orders','complete','2023-12-11 18:36:26','2023-12-11 19:36:26','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702319786;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702319786;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-11 21:19:18','2023-12-11 22:19:18',0,NULL,10),(75273,'cartflows_ca_send_report_summary_email','complete','2023-12-18 15:27:00','2023-12-18 16:27:00','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702913220;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702913220;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,1,'2023-12-18 16:12:49','2023-12-18 17:12:49',0,NULL,10),(75274,'woocommerce_cleanup_draft_orders','complete','2023-12-12 21:19:18','2023-12-12 22:19:18','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702415958;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702415958;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-12 23:54:07','2023-12-13 00:54:07',0,NULL,10),(75275,'woocommerce_cleanup_draft_orders','complete','2023-12-13 23:54:07','2023-12-14 00:54:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702511647;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702511647;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-13 23:54:18','2023-12-14 00:54:18',0,NULL,10),(75276,'woocommerce_run_on_woocommerce_admin_updated','complete','2023-12-13 23:15:13','2023-12-14 00:15:13','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1702509313;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1702509313;}',6,1,'2023-12-13 23:16:04','2023-12-14 00:16:04',0,NULL,10),(75277,'woocommerce_run_on_woocommerce_admin_updated','complete','2023-12-13 23:15:13','2023-12-14 00:15:13','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1702509313;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1702509313;}',6,1,'2023-12-13 23:16:04','2023-12-14 00:16:04',0,NULL,10),(75278,'woocommerce_run_on_woocommerce_admin_updated','complete','2023-12-13 23:15:13','2023-12-14 00:15:13','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1702509313;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1702509313;}',6,1,'2023-12-13 23:16:04','2023-12-14 00:16:04',0,NULL,10),(75279,'woocommerce_cleanup_draft_orders','complete','2023-12-14 23:54:18','2023-12-15 00:54:18','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702598058;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702598058;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-15 02:17:16','2023-12-15 03:17:16',0,NULL,10),(75280,'woocommerce_deliver_webhook_async','complete','2023-12-13 23:58:26','2023-12-14 00:58:26','{\"webhook_id\":25,\"arg\":10190}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1702511906;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1702511906;}',8,1,'2023-12-13 23:59:11','2023-12-14 00:59:11',0,NULL,10),(75281,'woocommerce_cleanup_draft_orders','complete','2023-12-16 02:17:16','2023-12-16 03:17:16','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702693036;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702693036;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-16 03:15:36','2023-12-16 04:15:36',0,NULL,10),(75282,'woocommerce_cleanup_draft_orders','complete','2023-12-17 03:15:36','2023-12-17 04:15:36','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702782936;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702782936;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-17 04:11:26','2023-12-17 05:11:26',0,NULL,10),(75283,'action_scheduler/migration_hook','complete','2023-12-16 16:45:59','2023-12-16 17:45:59','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1702745159;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1702745159;}',1,1,'2023-12-16 16:46:05','2023-12-16 17:46:05',0,NULL,10),(75284,'action_scheduler/migration_hook','complete','2023-12-16 16:48:57','2023-12-16 17:48:57','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1702745337;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1702745337;}',1,1,'2023-12-16 16:49:32','2023-12-16 17:49:32',0,NULL,10),(75285,'action_scheduler/migration_hook','complete','2023-12-16 16:50:52','2023-12-16 17:50:52','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1702745452;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1702745452;}',1,1,'2023-12-16 16:50:53','2023-12-16 17:50:53',0,NULL,10),(75286,'woocommerce_cleanup_draft_orders','complete','2023-12-18 04:11:26','2023-12-18 05:11:26','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702872686;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702872686;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-18 04:57:55','2023-12-18 05:57:55',0,NULL,10),(75287,'woocommerce_cleanup_draft_orders','complete','2023-12-19 04:57:55','2023-12-19 05:57:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1702961875;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1702961875;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-19 05:08:13','2023-12-19 06:08:13',0,NULL,10),(75288,'cartflows_ca_send_report_summary_email','complete','2023-12-25 16:12:49','2023-12-25 17:12:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703520769;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703520769;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,1,'2023-12-25 16:50:30','2023-12-25 17:50:30',0,NULL,10),(75289,'woocommerce_cleanup_draft_orders','complete','2023-12-20 05:08:13','2023-12-20 06:08:13','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703048893;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703048893;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-20 05:11:43','2023-12-20 06:11:43',0,NULL,10),(75290,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-12-19 23:53:39','2023-12-20 00:53:39','[10207,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703030019;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703030019;}',2,1,'2023-12-19 23:54:09','2023-12-20 00:54:09',0,NULL,10),(75291,'woocommerce_deliver_webhook_async','complete','2023-12-19 23:53:38','2023-12-20 00:53:38','{\"webhook_id\":24,\"arg\":10207}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703030018;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703030018;}',8,1,'2023-12-19 23:54:09','2023-12-20 00:54:09',0,NULL,10),(75292,'woocommerce_cleanup_draft_orders','complete','2023-12-21 05:11:43','2023-12-21 06:11:43','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703135503;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703135503;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-21 10:06:32','2023-12-21 11:06:32',0,NULL,10),(75293,'parcelpanel_update_courier_list','pending','2024-01-19 15:22:53','2024-01-19 16:22:53','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1705677773;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1705677773;}',7,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(75294,'woocommerce_cleanup_draft_orders','complete','2023-12-22 10:06:32','2023-12-22 11:06:32','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703239592;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703239592;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-22 10:06:41','2023-12-22 11:06:41',0,NULL,10),(75295,'woocommerce_cleanup_draft_orders','complete','2023-12-23 10:06:41','2023-12-23 11:06:41','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703326001;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703326001;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-23 10:06:41','2023-12-23 11:06:41',0,NULL,10),(75296,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-12-23 03:31:09','2023-12-23 04:31:09','[10207,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703302269;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703302269;}',2,1,'2023-12-23 03:31:11','2023-12-23 04:31:11',0,NULL,10),(75297,'woocommerce_deliver_webhook_async','complete','2023-12-23 03:31:08','2023-12-23 04:31:08','{\"webhook_id\":25,\"arg\":10207}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703302268;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703302268;}',8,1,'2023-12-23 03:31:11','2023-12-23 04:31:11',0,NULL,10),(75298,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-12-23 03:31:23','2023-12-23 04:31:23','[10207,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703302283;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703302283;}',2,1,'2023-12-23 03:33:45','2023-12-23 04:33:45',0,NULL,10),(75299,'rocket_preload_job_load_initial_sitemap','failed','2023-12-23 04:06:06','2023-12-23 04:06:06','[]','O:28:\"ActionScheduler_NullSchedule\":0:{}',11,1,'2023-12-23 04:06:07','2023-12-23 05:06:07',0,NULL,10),(75300,'rocket_preload_job_check_finished','complete','2023-12-23 04:07:11','2023-12-23 05:07:11','[1703304371]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703304431;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703304431;}',11,1,'2023-12-23 04:07:42','2023-12-23 05:07:42',0,NULL,10),(75301,'action_scheduler/migration_hook','complete','2023-12-23 04:07:35','2023-12-23 05:07:35','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703304455;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703304455;}',1,1,'2023-12-23 04:07:42','2023-12-23 05:07:42',0,NULL,10),(75302,'woocommerce_cleanup_draft_orders','complete','2023-12-24 10:06:41','2023-12-24 11:06:41','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703412401;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703412401;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-24 10:07:30','2023-12-24 11:07:30',0,NULL,10),(75303,'rocket_preload_job_check_finished','complete','2023-12-23 16:41:49','2023-12-23 17:41:49','[1703349649]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703349709;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703349709;}',11,1,'2023-12-23 16:43:19','2023-12-23 17:43:19',0,NULL,10),(75304,'rocket_preload_job_check_finished','complete','2023-12-23 18:48:02','2023-12-23 19:48:02','[1703357222]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357282;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357282;}',11,1,'2023-12-23 18:48:07','2023-12-23 19:48:07',0,NULL,10),(75305,'rocket_preload_job_check_finished','complete','2023-12-23 18:49:14','2023-12-23 19:49:14','[1703357294]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357354;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357354;}',11,1,'2023-12-23 18:49:21','2023-12-23 19:49:21',0,NULL,10),(75306,'rocket_preload_job_check_finished','complete','2023-12-23 18:51:07','2023-12-23 19:51:07','[1703357407]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357467;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357467;}',11,1,'2023-12-23 18:52:08','2023-12-23 19:52:08',0,NULL,10),(75307,'action_scheduler/migration_hook','complete','2023-12-23 18:52:04','2023-12-23 19:52:04','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357524;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357524;}',1,1,'2023-12-23 18:52:08','2023-12-23 19:52:08',0,NULL,10),(75308,'action_scheduler/migration_hook','failed','2023-12-23 18:53:08','2023-12-23 19:53:08','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357588;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357588;}',1,1,'2023-12-23 18:53:19','2023-12-23 19:53:19',0,NULL,10),(75309,'rocket_preload_job_check_finished','complete','2023-12-23 18:54:02','2023-12-23 19:54:02','[1703357582]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357642;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357642;}',11,1,'2023-12-23 18:54:20','2023-12-23 19:54:20',0,NULL,10),(75310,'woocommerce_deliver_webhook_async','complete','2023-12-23 18:53:02','2023-12-23 19:53:02','{\"webhook_id\":25,\"arg\":10212}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357582;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357582;}',8,1,'2023-12-23 18:53:19','2023-12-23 19:53:19',0,NULL,10),(75311,'rocket_preload_job_check_finished','complete','2023-12-23 18:57:56','2023-12-23 19:57:56','[1703357816]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357876;}',11,1,'2023-12-23 19:21:27','2023-12-23 20:21:27',0,NULL,10),(75312,'woocommerce_cleanup_draft_orders','complete','2023-12-25 10:07:30','2023-12-25 11:07:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703498850;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703498850;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-25 13:26:15','2023-12-25 14:26:15',0,NULL,10),(75313,'woocommerce_cleanup_draft_orders','complete','2023-12-26 13:26:15','2023-12-26 14:26:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703597175;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703597175;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-26 15:22:25','2023-12-26 16:22:25',0,NULL,10),(75314,'cartflows_ca_send_report_summary_email','complete','2024-01-01 16:50:30','2024-01-01 17:50:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704127830;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704127830;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,1,'2024-01-01 16:51:32','2024-01-01 17:51:32',0,NULL,10),(75315,'woocommerce_cleanup_draft_orders','complete','2023-12-27 15:22:25','2023-12-27 16:22:25','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703690545;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703690545;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-27 16:53:40','2023-12-27 17:53:40',0,NULL,10),(75316,'woocommerce_cleanup_draft_orders','complete','2023-12-28 16:53:40','2023-12-28 17:53:40','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703782420;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703782420;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-28 16:57:05','2023-12-28 17:57:05',0,NULL,10),(75317,'woocommerce_cleanup_draft_orders','complete','2023-12-29 16:57:05','2023-12-29 17:57:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703869025;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703869025;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-29 16:57:47','2023-12-29 17:57:47',0,NULL,10),(75318,'woocommerce_cleanup_draft_orders','complete','2023-12-30 16:57:47','2023-12-30 17:57:47','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703955467;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703955467;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-31 01:17:32','2023-12-31 02:17:32',0,NULL,10),(75319,'woocommerce_cleanup_draft_orders','complete','2024-01-01 01:17:32','2024-01-01 02:17:32','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704071852;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704071852;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-01 04:53:26','2024-01-01 05:53:26',0,NULL,10),(75320,'woocommerce_cleanup_draft_orders','complete','2024-01-02 04:53:26','2024-01-02 05:53:26','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704171206;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704171206;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-02 05:24:27','2024-01-02 06:24:27',0,NULL,10),(75321,'cartflows_ca_send_report_summary_email','pending','2024-01-08 16:51:32','2024-01-08 17:51:32','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704732692;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704732692;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(75322,'woocommerce_cleanup_draft_orders','complete','2024-01-03 05:24:27','2024-01-03 06:24:27','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704259467;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704259467;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-03 08:41:38','2024-01-03 09:41:38',0,NULL,10),(75323,'rocket_preload_job_check_finished','complete','2024-01-02 22:29:19','2024-01-02 23:29:19','[1704234499]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704234559;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704234559;}',11,1,'2024-01-02 22:31:05','2024-01-02 23:31:05',0,NULL,10),(75324,'woocommerce_deliver_webhook_async','complete','2024-01-02 22:28:22','2024-01-02 23:28:22','{\"webhook_id\":25,\"arg\":10215}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704234502;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704234502;}',8,1,'2024-01-02 22:31:05','2024-01-02 23:31:05',0,NULL,10),(75325,'action_scheduler/migration_hook','complete','2024-01-03 00:17:45','2024-01-03 01:17:45','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704241065;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704241065;}',1,1,'2024-01-03 00:23:29','2024-01-03 01:23:29',0,NULL,10),(75326,'action_scheduler/migration_hook','canceled','2024-01-03 00:17:45','2024-01-03 01:17:45','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704241065;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704241065;}',1,0,'2024-01-03 00:23:29','2024-01-03 01:23:29',0,NULL,10),(75327,'rocket_preload_job_check_finished','complete','2024-01-03 00:18:03','2024-01-03 01:18:03','[1704241023]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704241083;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704241083;}',11,1,'2024-01-03 00:23:29','2024-01-03 01:23:29',0,NULL,10),(75328,'woocommerce_cleanup_draft_orders','complete','2024-01-04 08:41:38','2024-01-04 09:41:38','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704357698;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704357698;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-04 10:06:57','2024-01-04 11:06:57',0,NULL,10),(75329,'woocommerce_cleanup_draft_orders','pending','2024-01-05 10:06:57','2024-01-05 11:06:57','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704449217;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704449217;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10);
/*!40000 ALTER TABLE `wpj7_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_actionscheduler_claims`
--

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

--
-- Dumping data for table `wpj7_actionscheduler_claims`
--

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

--
-- Table structure for table `wpj7_actionscheduler_groups`
--

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

--
-- Dumping data for table `wpj7_actionscheduler_groups`
--

LOCK TABLES `wpj7_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wpj7_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wpj7_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'woocommerce-db-updates'),(3,'wc-admin-data'),(4,'TrackShip'),(5,'wc_update_product_default_cat'),(6,'woocommerce-remote-inbox-engine'),(7,'parcelpanel'),(8,'woocommerce-webhooks'),(9,'woocommerce-product-feeds'),(10,''),(11,'rocket-preload');
/*!40000 ALTER TABLE `wpj7_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_actionscheduler_logs`
--

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

--
-- Dumping data for table `wpj7_actionscheduler_logs`
--

LOCK TABLES `wpj7_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wpj7_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wpj7_actionscheduler_logs` VALUES (260,95,'action created','2022-12-07 22:40:07','2022-12-07 16:40:07'),(261,95,'action started via Async Request','2022-12-07 22:40:19','2022-12-07 16:40:19'),(262,95,'action failed via Async Request: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2022-12-07 22:40:19','2022-12-07 16:40:19'),(383,136,'action created','2022-12-14 18:33:01','2022-12-14 12:33:01'),(384,136,'action started via Async Request','2022-12-14 18:33:30','2022-12-14 12:33:30'),(385,136,'action failed via Async Request: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2022-12-14 18:33:30','2022-12-14 12:33:30'),(41730,13919,'action créée','2023-02-19 19:39:36','2023-02-19 13:39:36'),(41734,13919,'action started via WP Cron','2023-02-19 19:39:36','2023-02-19 13:39:36'),(41735,13919,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-02-19 19:39:36','2023-02-19 13:39:36'),(41980,14003,'action créée','2023-03-01 16:09:58','2023-03-01 10:09:58'),(41981,14003,'action started via WP Cron','2023-03-01 16:09:58','2023-03-01 10:09:58'),(41982,14003,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-03-01 16:09:58','2023-03-01 10:09:58'),(46390,15473,'action créée','2023-03-14 16:56:48','2023-03-14 11:56:48'),(46391,15473,'action lancée via Async Request','2023-03-14 16:57:23','2023-03-14 11:57:23'),(46392,15473,'échec de l’action via Async Request : L’action planifiée pour woocommerce_run_on_woocommerce_admin_updated ne sera pas exécutée car aucun rappel n’est enregistré.','2023-03-14 16:57:23','2023-03-14 11:57:23'),(47140,15723,'action created','2023-03-25 19:14:20','2023-03-25 14:14:20'),(47141,15723,'action started via WP Cron','2023-03-25 19:14:24','2023-03-25 14:14:24'),(47142,15723,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-03-25 19:14:24','2023-03-25 14:14:24'),(48838,16289,'action created','2023-04-14 17:20:54','2023-04-14 12:20:54'),(48839,16289,'action started via WP Cron','2023-04-14 17:20:55','2023-04-14 12:20:55'),(48840,16289,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-04-14 17:20:55','2023-04-14 12:20:55'),(49045,16358,'action created','2023-04-27 14:58:33','2023-04-27 09:58:33'),(49046,16358,'action started via WP Cron','2023-04-27 15:05:11','2023-04-27 10:05:11'),(49047,16358,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-04-27 15:05:11','2023-04-27 10:05:11'),(49249,16426,'action created','2023-05-10 15:10:56','2023-05-10 10:10:56'),(49250,16426,'action started via WP Cron','2023-05-10 15:18:59','2023-05-10 10:18:59'),(49251,16426,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-05-10 15:18:59','2023-05-10 10:18:59'),(51088,17039,'action created','2023-05-30 15:46:27','2023-05-30 10:46:27'),(51089,17039,'action started via WP Cron','2023-05-30 15:46:28','2023-05-30 10:46:28'),(51090,17039,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-05-30 15:46:28','2023-05-30 10:46:28'),(51259,17096,'action created','2023-06-01 15:58:30','2023-06-01 10:58:30'),(51260,17096,'action started via Async Request','2023-06-01 16:06:57','2023-06-01 11:06:57'),(51261,17096,'action failed via Async Request: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-06-01 16:06:57','2023-06-01 11:06:57'),(89880,29969,'action created','2023-07-05 18:13:19','2023-07-05 13:13:19'),(89881,29969,'action started via WP Cron','2023-07-05 18:14:25','2023-07-05 13:14:25'),(89882,29969,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-07-05 18:14:25','2023-07-05 13:14:25'),(195792,65273,'action created','2023-11-11 21:09:51','2023-11-11 22:09:51'),(195793,65273,'action started via WP Cron','2023-11-11 21:11:08','2023-11-11 22:11:08'),(195794,65273,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-11-11 21:11:08','2023-11-11 22:11:08'),(195796,65275,'action created','2023-11-12 00:38:13','2023-11-12 01:38:13'),(195797,65275,'action started via WP Cron','2023-11-12 00:38:14','2023-11-12 01:38:14'),(195798,65275,'action failed via WP Cron: Scheduled action for ast_insert_shipping_provider will not be executed as no callbacks are registered.','2023-11-12 00:38:14','2023-11-12 01:38:14'),(196023,65350,'action created','2023-11-18 22:11:59','2023-11-18 23:11:59'),(196024,65350,'action started via WP Cron','2023-11-18 22:13:59','2023-11-18 23:13:59'),(196025,65350,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-11-18 22:13:59','2023-11-18 23:13:59'),(196033,65353,'action created','2023-11-20 15:03:03','2023-11-20 16:03:03'),(225716,75247,'action created','2023-12-04 10:07:57','2023-12-04 11:07:57'),(225717,75247,'action started via WP Cron','2023-12-05 10:10:35','2023-12-05 11:10:35'),(225718,75247,'action complete via WP Cron','2023-12-05 10:10:35','2023-12-05 11:10:35'),(225719,75248,'action created','2023-12-05 10:10:35','2023-12-05 11:10:35'),(225720,75248,'action started via WP Cron','2023-12-06 11:21:44','2023-12-06 12:21:44'),(225721,75248,'action complete via WP Cron','2023-12-06 11:21:44','2023-12-06 12:21:44'),(225722,75249,'action created','2023-12-06 11:21:44','2023-12-06 12:21:44'),(225723,75249,'action started via WP Cron','2023-12-07 11:25:30','2023-12-07 12:25:30'),(225724,75249,'action complete via WP Cron','2023-12-07 11:25:31','2023-12-07 12:25:31'),(225725,75250,'action created','2023-12-07 11:25:31','2023-12-07 12:25:31'),(225726,75251,'action created','2023-12-07 15:49:28','2023-12-07 16:49:28'),(225727,75251,'action started via WP Cron','2023-12-07 15:51:09','2023-12-07 16:51:09'),(225728,75251,'action complete via WP Cron','2023-12-07 15:51:09','2023-12-07 16:51:09'),(225774,75267,'action created','2023-12-07 16:31:38','2023-12-07 17:31:38'),(225775,75267,'action started via WP Cron','2023-12-07 16:32:44','2023-12-07 17:32:44'),(225776,75267,'action complete via WP Cron','2023-12-07 16:32:44','2023-12-07 17:32:44'),(225777,75268,'action created','2023-12-07 18:36:40','2023-12-07 19:36:40'),(225778,75268,'action started via WP Cron','2023-12-07 18:38:23','2023-12-07 19:38:23'),(225779,75268,'action complete via WP Cron','2023-12-07 18:38:23','2023-12-07 19:38:23'),(225780,75269,'action created','2023-12-07 19:28:10','2023-12-07 20:28:10'),(225781,75250,'action started via WP Cron','2023-12-08 13:26:45','2023-12-08 14:26:45'),(225782,75250,'action complete via WP Cron','2023-12-08 13:26:45','2023-12-08 14:26:45'),(225783,75270,'action created','2023-12-08 13:26:45','2023-12-08 14:26:45'),(225784,75270,'action started via WP Cron','2023-12-09 16:40:59','2023-12-09 17:40:59'),(225785,75270,'action complete via WP Cron','2023-12-09 16:40:59','2023-12-09 17:40:59'),(225786,75271,'action created','2023-12-09 16:40:59','2023-12-09 17:40:59'),(225787,75271,'action started via WP Cron','2023-12-10 18:36:26','2023-12-10 19:36:26'),(225788,75271,'action complete via WP Cron','2023-12-10 18:36:26','2023-12-10 19:36:26'),(225789,75272,'action created','2023-12-10 18:36:26','2023-12-10 19:36:26'),(225790,75269,'action started via WP Cron','2023-12-11 15:27:00','2023-12-11 16:27:00'),(225791,75269,'action complete via WP Cron','2023-12-11 15:27:00','2023-12-11 16:27:00'),(225792,75273,'action created','2023-12-11 15:27:00','2023-12-11 16:27:00'),(225793,75272,'action started via WP Cron','2023-12-11 21:19:18','2023-12-11 22:19:18'),(225794,75272,'action complete via WP Cron','2023-12-11 21:19:18','2023-12-11 22:19:18'),(225795,75274,'action created','2023-12-11 21:19:18','2023-12-11 22:19:18'),(225796,75274,'action started via WP Cron','2023-12-12 23:54:07','2023-12-13 00:54:07'),(225797,75274,'action complete via WP Cron','2023-12-12 23:54:07','2023-12-13 00:54:07'),(225798,75275,'action created','2023-12-12 23:54:07','2023-12-13 00:54:07'),(225799,75276,'action created','2023-12-13 23:15:14','2023-12-14 00:15:14'),(225800,75277,'action created','2023-12-13 23:15:14','2023-12-14 00:15:14'),(225801,75278,'action created','2023-12-13 23:15:14','2023-12-14 00:15:14'),(225802,75276,'action started via WP Cron','2023-12-13 23:16:03','2023-12-14 00:16:03'),(225803,75276,'action complete via WP Cron','2023-12-13 23:16:04','2023-12-14 00:16:04'),(225804,75277,'action started via WP Cron','2023-12-13 23:16:04','2023-12-14 00:16:04'),(225805,75277,'action complete via WP Cron','2023-12-13 23:16:04','2023-12-14 00:16:04'),(225806,75278,'action started via WP Cron','2023-12-13 23:16:04','2023-12-14 00:16:04'),(225807,75278,'action complete via WP Cron','2023-12-13 23:16:04','2023-12-14 00:16:04'),(225808,75275,'action started via WP Cron','2023-12-13 23:54:17','2023-12-14 00:54:17'),(225809,75275,'action complete via WP Cron','2023-12-13 23:54:18','2023-12-14 00:54:18'),(225810,75279,'action created','2023-12-13 23:54:18','2023-12-14 00:54:18'),(225811,75280,'action created','2023-12-13 23:58:26','2023-12-14 00:58:26'),(225812,75280,'action started via WP Cron','2023-12-13 23:59:09','2023-12-14 00:59:09'),(225813,75280,'action complete via WP Cron','2023-12-13 23:59:11','2023-12-14 00:59:11'),(225814,75279,'action started via WP Cron','2023-12-15 02:17:16','2023-12-15 03:17:16'),(225815,75279,'action complete via WP Cron','2023-12-15 02:17:16','2023-12-15 03:17:16'),(225816,75281,'action created','2023-12-15 02:17:16','2023-12-15 03:17:16'),(225817,75281,'action started via WP Cron','2023-12-16 03:15:36','2023-12-16 04:15:36'),(225818,75281,'action complete via WP Cron','2023-12-16 03:15:36','2023-12-16 04:15:36'),(225819,75282,'action created','2023-12-16 03:15:36','2023-12-16 04:15:36'),(225820,75283,'action created','2023-12-16 16:44:59','2023-12-16 17:44:59'),(225821,75283,'action started via WP Cron','2023-12-16 16:46:05','2023-12-16 17:46:05'),(225822,75283,'action complete via WP Cron','2023-12-16 16:46:05','2023-12-16 17:46:05'),(225823,75284,'action created','2023-12-16 16:47:57','2023-12-16 17:47:57'),(225824,75284,'action started via WP Cron','2023-12-16 16:49:32','2023-12-16 17:49:32'),(225825,75284,'action complete via WP Cron','2023-12-16 16:49:32','2023-12-16 17:49:32'),(225826,75285,'action created','2023-12-16 16:49:52','2023-12-16 17:49:52'),(225827,75285,'action started via WP Cron','2023-12-16 16:50:53','2023-12-16 17:50:53'),(225828,75285,'action complete via WP Cron','2023-12-16 16:50:53','2023-12-16 17:50:53'),(225829,75282,'action started via WP Cron','2023-12-17 04:11:26','2023-12-17 05:11:26'),(225830,75282,'action complete via WP Cron','2023-12-17 04:11:26','2023-12-17 05:11:26'),(225831,75286,'action created','2023-12-17 04:11:26','2023-12-17 05:11:26'),(225832,75286,'action started via WP Cron','2023-12-18 04:57:55','2023-12-18 05:57:55'),(225833,75286,'action complete via WP Cron','2023-12-18 04:57:55','2023-12-18 05:57:55'),(225834,75287,'action created','2023-12-18 04:57:55','2023-12-18 05:57:55'),(225835,75273,'action started via WP Cron','2023-12-18 16:12:49','2023-12-18 17:12:49'),(225836,75273,'action complete via WP Cron','2023-12-18 16:12:49','2023-12-18 17:12:49'),(225837,75288,'action created','2023-12-18 16:12:49','2023-12-18 17:12:49'),(225838,75287,'action started via WP Cron','2023-12-19 05:08:13','2023-12-19 06:08:13'),(225839,75287,'action complete via WP Cron','2023-12-19 05:08:13','2023-12-19 06:08:13'),(225840,75289,'action created','2023-12-19 05:08:13','2023-12-19 06:08:13'),(225841,75290,'action created','2023-12-19 23:53:38','2023-12-20 00:53:38'),(225842,75291,'action created','2023-12-19 23:53:38','2023-12-20 00:53:38'),(225843,75291,'action started via WP Cron','2023-12-19 23:54:06','2023-12-20 00:54:06'),(225844,75291,'action complete via WP Cron','2023-12-19 23:54:09','2023-12-20 00:54:09'),(225845,75290,'action started via WP Cron','2023-12-19 23:54:09','2023-12-20 00:54:09'),(225846,75290,'action complete via WP Cron','2023-12-19 23:54:09','2023-12-20 00:54:09'),(225847,75289,'action started via WP Cron','2023-12-20 05:11:43','2023-12-20 06:11:43'),(225848,75289,'action complete via WP Cron','2023-12-20 05:11:43','2023-12-20 06:11:43'),(225849,75292,'action created','2023-12-20 05:11:43','2023-12-20 06:11:43'),(225850,65353,'action started via WP Cron','2023-12-20 15:22:52','2023-12-20 16:22:52'),(225851,75293,'action created','2023-12-20 15:22:53','2023-12-20 16:22:53'),(225852,65353,'action complete via WP Cron','2023-12-20 15:22:53','2023-12-20 16:22:53'),(225853,75292,'action started via WP Cron','2023-12-21 10:06:32','2023-12-21 11:06:32'),(225854,75292,'action complete via WP Cron','2023-12-21 10:06:32','2023-12-21 11:06:32'),(225855,75294,'action created','2023-12-21 10:06:32','2023-12-21 11:06:32'),(225856,75294,'action started via WP Cron','2023-12-22 10:06:41','2023-12-22 11:06:41'),(225857,75294,'action complete via WP Cron','2023-12-22 10:06:41','2023-12-22 11:06:41'),(225858,75295,'action created','2023-12-22 10:06:41','2023-12-22 11:06:41'),(225859,75296,'action created','2023-12-23 03:31:08','2023-12-23 04:31:08'),(225860,75297,'action created','2023-12-23 03:31:08','2023-12-23 04:31:08'),(225861,75297,'action started via WP Cron','2023-12-23 03:31:09','2023-12-23 04:31:09'),(225862,75297,'action complete via WP Cron','2023-12-23 03:31:11','2023-12-23 04:31:11'),(225863,75296,'action started via WP Cron','2023-12-23 03:31:11','2023-12-23 04:31:11'),(225864,75296,'action complete via WP Cron','2023-12-23 03:31:11','2023-12-23 04:31:11'),(225865,75298,'action created','2023-12-23 03:31:22','2023-12-23 04:31:22'),(225866,75298,'action started via WP Cron','2023-12-23 03:33:45','2023-12-23 04:33:45'),(225867,75298,'action complete via WP Cron','2023-12-23 03:33:45','2023-12-23 04:33:45'),(225868,75299,'action created','2023-12-23 04:06:06','2023-12-23 05:06:06'),(225869,75299,'action started via WP Cron','2023-12-23 04:06:07','2023-12-23 05:06:07'),(225870,75299,'action failed via WP Cron: Scheduled action for rocket_preload_job_load_initial_sitemap will not be executed as no callbacks are registered.','2023-12-23 04:06:07','2023-12-23 05:06:07'),(225871,75300,'action created','2023-12-23 04:06:11','2023-12-23 05:06:11'),(225872,75301,'action created','2023-12-23 04:06:35','2023-12-23 05:06:35'),(225873,75300,'action started via WP Cron','2023-12-23 04:07:42','2023-12-23 05:07:42'),(225874,75300,'action complete via WP Cron','2023-12-23 04:07:42','2023-12-23 05:07:42'),(225875,75301,'action started via WP Cron','2023-12-23 04:07:42','2023-12-23 05:07:42'),(225876,75301,'action complete via WP Cron','2023-12-23 04:07:42','2023-12-23 05:07:42'),(225877,75295,'action started via WP Cron','2023-12-23 10:06:41','2023-12-23 11:06:41'),(225878,75295,'action complete via WP Cron','2023-12-23 10:06:41','2023-12-23 11:06:41'),(225879,75302,'action created','2023-12-23 10:06:41','2023-12-23 11:06:41'),(225880,75303,'action created','2023-12-23 16:40:49','2023-12-23 17:40:49'),(225881,75303,'action started via WP Cron','2023-12-23 16:43:19','2023-12-23 17:43:19'),(225882,75303,'action complete via WP Cron','2023-12-23 16:43:19','2023-12-23 17:43:19'),(225883,75304,'action created','2023-12-23 18:47:02','2023-12-23 19:47:02'),(225884,75304,'action started via WP Cron','2023-12-23 18:48:07','2023-12-23 19:48:07'),(225885,75304,'action complete via WP Cron','2023-12-23 18:48:07','2023-12-23 19:48:07'),(225886,75305,'action created','2023-12-23 18:48:14','2023-12-23 19:48:14'),(225887,75305,'action started via WP Cron','2023-12-23 18:49:21','2023-12-23 19:49:21'),(225888,75305,'action complete via WP Cron','2023-12-23 18:49:21','2023-12-23 19:49:21'),(225889,75306,'action created','2023-12-23 18:50:07','2023-12-23 19:50:07'),(225890,75307,'action created','2023-12-23 18:51:04','2023-12-23 19:51:04'),(225891,75306,'action started via WP Cron','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225892,75306,'action complete via WP Cron','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225893,75307,'action started via WP Cron','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225894,75307,'action complete via WP Cron','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225895,75308,'action created','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225896,75309,'action created','2023-12-23 18:53:02','2023-12-23 19:53:02'),(225897,75310,'action created','2023-12-23 18:53:02','2023-12-23 19:53:02'),(225898,75310,'action started via WP Cron','2023-12-23 18:53:17','2023-12-23 19:53:17'),(225899,75310,'action complete via WP Cron','2023-12-23 18:53:19','2023-12-23 19:53:19'),(225900,75308,'action started via WP Cron','2023-12-23 18:53:19','2023-12-23 19:53:19'),(225901,75308,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-12-23 18:53:19','2023-12-23 19:53:19'),(225902,75309,'action started via WP Cron','2023-12-23 18:54:20','2023-12-23 19:54:20'),(225903,75309,'action complete via WP Cron','2023-12-23 18:54:20','2023-12-23 19:54:20'),(225904,75311,'action created','2023-12-23 18:56:56','2023-12-23 19:56:56'),(225905,75311,'action started via WP Cron','2023-12-23 19:21:27','2023-12-23 20:21:27'),(225906,75311,'action complete via WP Cron','2023-12-23 19:21:27','2023-12-23 20:21:27'),(225907,75302,'action started via WP Cron','2023-12-24 10:07:30','2023-12-24 11:07:30'),(225908,75302,'action complete via WP Cron','2023-12-24 10:07:30','2023-12-24 11:07:30'),(225909,75312,'action created','2023-12-24 10:07:30','2023-12-24 11:07:30'),(225910,75312,'action started via WP Cron','2023-12-25 13:26:14','2023-12-25 14:26:14'),(225911,75312,'action complete via WP Cron','2023-12-25 13:26:15','2023-12-25 14:26:15'),(225912,75313,'action created','2023-12-25 13:26:15','2023-12-25 14:26:15'),(225913,75288,'action started via WP Cron','2023-12-25 16:50:30','2023-12-25 17:50:30'),(225914,75288,'action complete via WP Cron','2023-12-25 16:50:30','2023-12-25 17:50:30'),(225915,75314,'action created','2023-12-25 16:50:30','2023-12-25 17:50:30'),(225916,75313,'action started via WP Cron','2023-12-26 15:22:25','2023-12-26 16:22:25'),(225917,75313,'action complete via WP Cron','2023-12-26 15:22:25','2023-12-26 16:22:25'),(225918,75315,'action created','2023-12-26 15:22:25','2023-12-26 16:22:25'),(225919,75315,'action started via WP Cron','2023-12-27 16:53:40','2023-12-27 17:53:40'),(225920,75315,'action complete via WP Cron','2023-12-27 16:53:40','2023-12-27 17:53:40'),(225921,75316,'action created','2023-12-27 16:53:40','2023-12-27 17:53:40'),(225922,75316,'action started via WP Cron','2023-12-28 16:57:05','2023-12-28 17:57:05'),(225923,75316,'action complete via WP Cron','2023-12-28 16:57:05','2023-12-28 17:57:05'),(225924,75317,'action created','2023-12-28 16:57:05','2023-12-28 17:57:05'),(225925,75317,'action started via WP Cron','2023-12-29 16:57:47','2023-12-29 17:57:47'),(225926,75317,'action complete via WP Cron','2023-12-29 16:57:47','2023-12-29 17:57:47'),(225927,75318,'action created','2023-12-29 16:57:47','2023-12-29 17:57:47'),(225928,75318,'action started via WP Cron','2023-12-31 01:17:32','2023-12-31 02:17:32'),(225929,75318,'action complete via WP Cron','2023-12-31 01:17:32','2023-12-31 02:17:32'),(225930,75319,'action created','2023-12-31 01:17:32','2023-12-31 02:17:32'),(225931,75319,'action started via WP Cron','2024-01-01 04:53:26','2024-01-01 05:53:26'),(225932,75319,'action complete via WP Cron','2024-01-01 04:53:26','2024-01-01 05:53:26'),(225933,75320,'action created','2024-01-01 04:53:26','2024-01-01 05:53:26'),(225934,75314,'action started via WP Cron','2024-01-01 16:51:32','2024-01-01 17:51:32'),(225935,75314,'action complete via WP Cron','2024-01-01 16:51:32','2024-01-01 17:51:32'),(225936,75321,'action created','2024-01-01 16:51:32','2024-01-01 17:51:32'),(225937,75320,'action started via WP Cron','2024-01-02 05:24:27','2024-01-02 06:24:27'),(225938,75320,'action complete via WP Cron','2024-01-02 05:24:27','2024-01-02 06:24:27'),(225939,75322,'action created','2024-01-02 05:24:27','2024-01-02 06:24:27'),(225940,75323,'action created','2024-01-02 22:28:19','2024-01-02 23:28:19'),(225941,75324,'action created','2024-01-02 22:28:22','2024-01-02 23:28:22'),(225942,75324,'action started via WP Cron','2024-01-02 22:31:02','2024-01-02 23:31:02'),(225943,75324,'action complete via WP Cron','2024-01-02 22:31:05','2024-01-02 23:31:05'),(225944,75323,'action started via WP Cron','2024-01-02 22:31:05','2024-01-02 23:31:05'),(225945,75323,'action complete via WP Cron','2024-01-02 22:31:05','2024-01-02 23:31:05'),(225946,75325,'action created','2024-01-03 00:16:45','2024-01-03 01:16:45'),(225947,75326,'action created','2024-01-03 00:16:45','2024-01-03 01:16:45'),(225948,75327,'action created','2024-01-03 00:17:03','2024-01-03 01:17:03'),(225949,75325,'action started via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225950,75326,'action canceled','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225951,75325,'action complete via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225952,75326,'action ignored via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225953,75327,'action started via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225954,75327,'action complete via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225955,75322,'action started via WP Cron','2024-01-03 08:41:38','2024-01-03 09:41:38'),(225956,75322,'action complete via WP Cron','2024-01-03 08:41:38','2024-01-03 09:41:38'),(225957,75328,'action created','2024-01-03 08:41:38','2024-01-03 09:41:38'),(225958,75328,'action started via WP Cron','2024-01-04 10:06:57','2024-01-04 11:06:57'),(225959,75328,'action complete via WP Cron','2024-01-04 10:06:57','2024-01-04 11:06:57'),(225960,75329,'action created','2024-01-04 10:06:57','2024-01-04 11:06:57');
/*!40000 ALTER TABLE `wpj7_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_adfoin_integration`
--

DROP TABLE IF EXISTS `wpj7_adfoin_integration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_adfoin_integration` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` text NOT NULL,
  `form_provider` varchar(255) NOT NULL,
  `form_id` varchar(255) NOT NULL,
  `form_name` varchar(255) DEFAULT NULL,
  `action_provider` varchar(255) NOT NULL,
  `task` varchar(255) NOT NULL,
  `data` longtext DEFAULT NULL,
  `extra_data` longtext DEFAULT NULL,
  `status` int(1) NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_adfoin_integration`
--

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

--
-- Table structure for table `wpj7_adfoin_log`
--

DROP TABLE IF EXISTS `wpj7_adfoin_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_adfoin_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `response_code` int(3) DEFAULT NULL,
  `response_message` varchar(255) DEFAULT NULL,
  `integration_id` bigint(20) DEFAULT NULL,
  `request_data` longtext DEFAULT NULL,
  `response_data` longtext DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_adfoin_log`
--

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

--
-- Table structure for table `wpj7_cartflows_ca_cart_abandonment`
--

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

--
-- Dumping data for table `wpj7_cartflows_ca_cart_abandonment`
--

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

--
-- Table structure for table `wpj7_cartflows_ca_email_history`
--

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

--
-- Dumping data for table `wpj7_cartflows_ca_email_history`
--

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

--
-- Table structure for table `wpj7_cartflows_ca_email_templates`
--

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

--
-- Dumping data for table `wpj7_cartflows_ca_email_templates`
--

LOCK TABLES `wpj7_cartflows_ca_email_templates` WRITE;
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_templates` DISABLE KEYS */;
INSERT INTO `wpj7_cartflows_ca_email_templates` VALUES (1,'Email 1','Je bent iets vergeten!','Hallo, ik heb je winkelmandje gereserveerd omdat je je bestelling nog niet hebt afgerond.\r\n\r\nEr is veel vraag naar onze artikelen, dus haast je alsjeblieft, ik kan ze niet langer vasthouden.\r\n\r\n<a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">Vul nu uw bestelling in</a> want onze voorraad is beperkt!\r\n\r\nElin A - {{admin.company}}\r\n<div></div>\r\n<div>{{cart.unsubscribe}}</div>',1,5,'MINUTE'),(2,'Email 2','Weet je het zeker?','Waarom uitstellen tot morgen wat je nu met een paar klikken kunt doen?\r\n\r\n<a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">Klik hier om verder te gaan met uw aankoop</a>!\r\n\r\nSofia M - {{admin.company}}\r\n\r\n{{cart.unsubscribe}}',1,1,'HOUR'),(3,'Email 3','Ik heb een cadeautje voor je! 🎁','Hé, we hebben een cadeautje voor je!\r\n\r\nGeniet van 10% korting op je bestelling met de code PGCNZQ10!\r\n\r\nHaast je met <a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">volledig je bestelling</a> want ik kan je winkelwagentje niet lang meer reserveren.\r\n\r\nSofia M - {{admin.company}}\r\n\r\n{{cart.unsubscribe}}',1,5,'HOUR'),(4,'Email 4','Zul je de kans echt missen?','Wacht niet tot het te laat is om iets te doen! <a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">Plaats nu uw bestelling!</a>!\r\n\r\nSofia M - {{admin.company}}\r\n\r\n{{cart.unsubscribe}}',1,10,'HOUR'),(5,'Email 5','Dit is je laatste kans! Daarna is het te laat!','Dit is je laatste kans en het is te laat!\r\n\r\n<a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">Plaats nu uw bestelling!</a>!\r\n\r\nElin A - {{admin.company}}\r\n\r\n{{cart.unsubscribe}}',1,1,'DAY');
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_cartflows_ca_email_templates_meta`
--

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

--
-- Dumping data for table `wpj7_cartflows_ca_email_templates_meta`
--

LOCK TABLES `wpj7_cartflows_ca_email_templates_meta` WRITE;
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_templates_meta` DISABLE KEYS */;
INSERT INTO `wpj7_cartflows_ca_email_templates_meta` VALUES (1,1,'override_global_coupon',''),(2,1,'discount_type','percent'),(3,1,'coupon_amount','10'),(4,1,'coupon_expiry_date','0'),(5,1,'coupon_expiry_unit','hours'),(6,1,'use_woo_email_style','1'),(7,2,'override_global_coupon',''),(8,2,'discount_type','percent'),(9,2,'coupon_amount','10'),(10,2,'coupon_expiry_date','0'),(11,2,'coupon_expiry_unit','hours'),(12,2,'use_woo_email_style','1'),(13,3,'override_global_coupon',''),(14,3,'discount_type','percent'),(15,3,'coupon_amount','10'),(16,3,'coupon_expiry_date','0'),(17,3,'coupon_expiry_unit','hours'),(18,3,'use_woo_email_style','1'),(19,1,'auto_coupon',''),(20,1,'free_shipping_coupon',''),(21,1,'individual_use_only',''),(22,2,'auto_coupon',''),(23,2,'free_shipping_coupon',''),(24,2,'individual_use_only',''),(25,3,'auto_coupon',''),(26,3,'free_shipping_coupon',''),(27,3,'individual_use_only',''),(28,4,'override_global_coupon',''),(29,4,'discount_type','percent'),(30,4,'coupon_amount','10'),(31,4,'coupon_expiry_date','0'),(32,4,'coupon_expiry_unit','hours'),(33,4,'auto_coupon',''),(34,4,'free_shipping_coupon',''),(35,4,'individual_use_only',''),(36,4,'use_woo_email_style','1'),(37,5,'override_global_coupon',''),(38,5,'discount_type','percent'),(39,5,'coupon_amount','10'),(40,5,'coupon_expiry_date','0'),(41,5,'coupon_expiry_unit','hours'),(42,5,'auto_coupon',''),(43,5,'free_shipping_coupon',''),(44,5,'individual_use_only',''),(45,5,'use_woo_email_style','1');
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_templates_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_commentmeta`
--

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

--
-- Dumping data for table `wpj7_commentmeta`
--

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

--
-- Table structure for table `wpj7_comments`
--

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

--
-- Dumping data for table `wpj7_comments`
--

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

--
-- Table structure for table `wpj7_links`
--

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

--
-- Dumping data for table `wpj7_links`
--

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

--
-- Table structure for table `wpj7_mainwp_action_log`
--

DROP TABLE IF EXISTS `wpj7_mainwp_action_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_action_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `log_content` mediumtext NOT NULL DEFAULT '',
  `log_type` tinyint(1) DEFAULT 0,
  `log_color` tinyint(1) DEFAULT 0,
  `log_user` varchar(128) NOT NULL DEFAULT '',
  `log_timestamp` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_action_log`
--

LOCK TABLES `wpj7_mainwp_action_log` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_action_log` DISABLE KEYS */;
INSERT INTO `wpj7_mainwp_action_log` VALUES (1,'CRON :: stats',2,0,'DOING_CRON',1699888963),(2,'CRON :: ping childs',2,0,'DOING_CRON',1699888963),(3,'CRON :: updates check found0 websites',2,0,'DOING_CRON',1699888963),(4,' :: tryVisit :: [url=https://www.nl.teng-shop.com/] [http_status=200] [error=] [data-start]<!DOCTYPE html>\n<html lang=\"nl-NL\" class=\"loading-site no-js\">\n<head>\n	<meta charset=\"UTF-8\" />\n	<link rel=\"profile\" href=\"http://gmpg.org/xfn/11\" />\n	<link rel=\"pingback\" href=\"https://www.nl.teng-shop.com/xmlrpc.php\" />\n\n					<script>document.documentElement.className = document.documentElement.className + \' yes-js js_active js\'</script>\n				<script>(function(html){html.className = html.className.replace(/\\bno-js\\b/,\'js\')})(document.documentElement);</script>\n<meta name=\'robots\' content=\'index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1\' />\n\n<!-- Google Tag Manager for WordPress by gtm4wp.com -->\n<script data-cfasync=\"false\" data-pagespeed-no-defer>\n	var gtm4wp_datalayer_name = \"dataLayer\";\n	var dataLayer = dataLayer || [];\n	const gtm4wp_use_sku_instead = false;\n	const gtm4wp_id_prefix = \'\';\n	const gtm4wp_remarketing = false;\n	const gtm4wp_eec = true;\n	const gtm4wp_classicec = false;\n	const gtm4wp_currency = \'EUR\';\n	const gtm4wp_product_per_impression = 10;\n	const gtm4wp_needs_shipping_address = false;\n	const gtm4wp_business_vertical = \'retail\';\n	const gtm4wp_business_vertical_id = \'id\';\n</script>\n<!-- End Google Tag Manager for WordPress by gtm4wp.com --><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n	<!-- This site is optimized with the Yoast SEO plugin v21.5 - https://yoast.com/wordpress/plugins/seo/ -->\n	<title>Chinese kleding &amp; decoraties | Teng Shop</title>\n	<meta name=\"description\" content=\"Teng Shop is de perfecte plek om alle Chinese cultuur te vinden. Kom en ontdek onze Chinese kleding, accessoires, sieraden en decoraties...\" />\n	<link rel=\"canonical\" href=\"https://www.nl.teng-shop.com/\" />\n	<meta property=\"og:locale\" content=\"nl_NL\" />\n	<meta property=\"og:type\" content=\"website\" />\n	<meta property=\"og:title\" content=\"Chinese kleding &amp; decoraties | Teng Shop\" />\n	<meta property=\"og:description\" content=\"Teng Shop is de perfecte plek om alle Chinese cultuur te vinden. Kom en ontdek onze Chinese kleding, accessoires, sieraden en decoraties...\" />\n	<meta property=\"og:url\" content=\"https://www.nl.teng-shop.com/\" />\n	<meta property=\"og:site_name\" content=\"Teng Shop\" />\n	<meta property=\"article:modified_time\" content=\"2023-09-23T20:32:32+00:00\" />\n	<meta name=\"twitter:card\" content=\"summary_large_image\" />\n	<script type=\"application/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https://schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https://www.nl.teng-shop.com/\",\"url\":\"https://www.nl.teng-shop.com/\",\"name\":\"Chinese kleding & decoraties | Teng Shop\",\"isPartOf\":{\"@id\":\"https://www.nl.teng-shop.com/#website\"},\"about\":{\"@id\":\"https://www.nl.teng-shop.com/#organization\"},\"datePublished\":\"2022-12-07T22:28:14+00:00\",\"dateModified\":\"2023-09-23T20:32:32+00:00\",\"description\":\"Teng Shop is de perfecte plek om alle Chinese cultuur te vinden. Kom en ontdek onze Chinese kleding, accessoires, sieraden en decoraties...\",\"breadcrumb\":{\"@id\":\"https://www.nl.teng-shop.com/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https://www.nl.teng-shop.com/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https://www.nl.teng-shop.com/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startpagina\"}]},{\"@type\":\"WebSite\",\"@id\":\"https://www.nl.teng-shop.com/#website\",\"url\":\"https://www.nl.teng-shop.com/\",\"name\":\"Teng Shop\",\"description\":\"\",\"publisher\":{\"@id\":\"https://www.nl.teng-shop.com/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https://www.nl.teng-shop.com/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"nl-NL\"},{\"@type\":\"Organization\",\"@id\":\"https://www.nl.teng-shop.com/#organization\",\"name\":\"Teng Shop\",\"url\":\"https://www.nl.teng-shop.com/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https://www.nl.teng-shop.com/#/schema/logo/image/\",\"url\":\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\",\"contentUrl\":\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\",\"width\":833,\"height\":259,\"caption\":\"Teng Shop\"},\"image\":{\"@id\":\"https://www.nl.teng-shop.com/#/schema/logo/image/\"}}]}</script>\n	<!-- / Yoast SEO plugin. -->\n\n\n<link rel=\'dns-prefetch\' href=\'//static.klaviyo.com\' />\n<link rel=\'dns-prefetch\' href=\'//ajax.googleapis.com\' />\n<link rel=\'dns-prefetch\' href=\'//www.googletagmanager.com\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/flatsome.js?ver=039f9485eef603e7c53a\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/chunk.slider.js?ver=3.18.0\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/chunk.popups.js?ver=3.18.0\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/chunk.tooltips.js?ver=3.18.0\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/woocommerce.js?ver=c9fe40206165dd93147b\' />\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Teng Shop &raquo; feed\" href=\"https://www.nl.teng-shop.com/feed/\" />\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Teng Shop &raquo; reactiesfeed\" href=\"https://www.nl.teng-shop.com/comments/feed/\" />\n<script type=\"text/javascript\">\n/* <![CDATA[ */\nwindow._wpemojiSettings = {\"baseUrl\":\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/72x72\\/\",\"ext\":\".png\",\"svgUrl\":\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/\",\"svgExt\":\".svg\",\"source\":{\"concatemoji\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-includes\\/js\\/wp-emoji-release.min.js?ver=6.4.1\"}};\n/*! This file is auto-generated */\n!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case\"flag\":return n(e,\"\\ud83c\\udff3\\ufe0f\\u200d\\u26a7\\ufe0f\",\"\\ud83c\\udff3\\ufe0f\\u200b\\u26a7\\ufe0f\")?!1:!n(e,\"\\ud83c\\uddfa\\ud83c\\uddf3\",\"\\ud83c\\uddfa\\u200b\\ud83c\\uddf3\")&&!n(e,\"\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc65\\udb40\\udc6e\\udb40\\udc67\\udb40\\udc7f\",\"\\ud83c\\udff4\\u200b\\udb40\\udc67\\u200b\\udb40\\udc62\\u200b\\udb40\\udc65\\u200b\\udb40\\udc6e\\u200b\\udb40\\udc67\\u200b\\udb40\\udc7f\");case\"emoji\":return!n(e,\"\\ud83e\\udef1\\ud83c\\udffb\\u200d\\ud83e\\udef2\\ud83c\\udfff\",\"\\ud83e\\udef1\\ud83c\\udffb\\u200b\\ud83e\\udef2\\ud83c\\udfff\")}return!1}function f(e,t,n){var r=\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement(\"canvas\"),a=r.getContext(\"2d\",{willReadFrequently:!0}),o=(a.textBaseline=\"top\",a.font=\"600 32px Arial\",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement(\"script\");t.src=e,t.defer=!0,i.head.appendChild(t)}\"undefined\"!=typeof Promise&&(o=\"wpEmojiSettingsSupports\",s=[\"flag\",\"emoji\"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener(\"DOMContentLoaded\",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if(\"object\"==typeof e&&\"number\"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&\"object\"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if(\"undefined\"!=typeof Worker&&\"undefined\"!=typeof OffscreenCanvas&&\"undefined\"!=typeof URL&&URL.createObjectURL&&\"undefined\"!=typeof Blob)try{var e=\"postMessage(\"+f.toString()+\"(\"+[JSON.stringify(s),u.toString(),p.toString()].join(\",\")+\"));\",r=new Blob([e],{type:\"text/javascript\"}),a=new Worker(URL.createObjectURL(r),{name:\"wpTestEmojiSupports\"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],\"flag\"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);\n/* ]]> */\n</script>\n<style id=\'wp-emoji-styles-inline-css\' type=\'text/css\'>\n\n	img.wp-smiley, img.emoji {\n		display: inline !important;\n		border: none !important;\n		box-shadow: none !important;\n		height: 1em !important;\n		width: 1em !important;\n		margin: 0 0.07em !important;\n		vertical-align: -0.1em !important;\n		background: none !important;\n		padding: 0 !important;\n	}\n</style>\n<style id=\'wp-block-library-inline-css\' type=\'text/css\'>\n:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px;--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}\n</style>\n<link rel=\'stylesheet\' id=\'contact-form-7-css\' href=\'https://www.nl.teng-shop.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.8.2\' type=\'text/css\' media=\'all\' />\n<style id=\'woocommerce-inline-inline-css\' type=\'text/css\'>\n.woocommerce form .form-row .required { visibility: visible; }\n</style>\n<link rel=\'stylesheet\' id=\'flatsome-woocommerce-wishlist-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/wishlist.css?ver=3.10.2\' type=\'text/css\' media=\'all\' />\n<link rel=\'stylesheet\' id=\'flatsome-swatches-frontend-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/extensions/flatsome-swatches-frontend.css?ver=3.18.0\' type=\'text/css\' media=\'all\' />\n<link rel=\'stylesheet\' id=\'flatsome-main-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/flatsome.css?ver=3.18.0\' type=\'text/css\' media=\'all\' />\n<style id=\'flatsome-main-inline-css\' type=\'text/css\'>\n@font-face {\n				font-family: \"fl-icons\";\n				font-display: block;\n				src: url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.eot?v=3.18.0);\n				src:\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.eot#iefix?v=3.18.0) format(\"embedded-opentype\"),\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.woff2?v=3.18.0) format(\"woff2\"),\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.ttf?v=3.18.0) format(\"truetype\"),\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.woff?v=3.18.0) format(\"woff\"),\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.svg?v=3.18.0#fl-icons) format(\"svg\");\n			}\n</style>\n<link rel=\'stylesheet\' id=\'flatsome-shop-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/flatsome-shop.css?ver=3.18.0\' type=\'text/css\' media=\'all\' />\n<link rel=\'stylesheet\' id=\'flatsome-style-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome-child/style.css?ver=3.0\' type=\'text/css\' media=\'all\' />\n<script type=\"text/javascript\">\n            window._nslDOMReady = function (callback) {\n                if ( document.readyState === \"complete\" || document.readyState === \"interactive\" ) {\n                    callback();\n                } else {\n                    document.addEventListener( \"DOMContentLoaded\", callback );\n                }\n            };\n            </script><script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1\" id=\"jquery-core-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1\" id=\"jquery-migrate-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-woocommerce-enhanced.js?ver=1.18.1\" id=\"gtm4wp-woocommerce-enhanced-js\"></script>\n\n<!-- Google Analytics snippet toegevoegd door Site Kit -->\n<script type=\"text/javascript\" src=\"https://www.googletagmanager.com/gtag/js?id=GT-M69FDJ3\" id=\"google_gtagjs-js\" async></script>\n<script type=\"text/javascript\" id=\"google_gtagjs-js-after\">\n/* <![CDATA[ */\nwindow.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}\ngtag(\'set\', \'linker\', {\"domains\":[\"www.nl.teng-shop.com\"]} );\ngtag(\"js\", new Date());\ngtag(\"set\", \"developer_id.dZTNiMT\", true);\ngtag(\"config\", \"GT-M69FDJ3\");\n/* ]]> */\n</script>\n\n<!-- Einde Google Analytics snippet toegevoegd door Site Kit -->\n<link rel=\"https://api.w.org/\" href=\"https://www.nl.teng-shop.com/wp-json/\" /><link rel=\"alternate\" type=\"application/json\" href=\"https://www.nl.teng-shop.com/wp-json/wp/v2/pages/263\" /><link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"https://www.nl.teng-shop.com/xmlrpc.php?rsd\" />\n<meta name=\"generator\" content=\"WordPress 6.4.1\" />\n<meta name=\"generator\" content=\"WooCommerce 8.2.2\" />\n<link rel=\'shortlink\' href=\'https://www.nl.teng-shop.com/\' />\n<link rel=\"alternate\" type=\"application/json+oembed\" href=\"https://www.nl.teng-shop.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.nl.teng-shop.com%2F\" />\n<link rel=\"alternate\" type=\"text/xml+oembed\" href=\"https://www.nl.teng-shop.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.nl.teng-shop.com%2F&#038;format=xml\" />\n<meta name=\"generator\" content=\"Site Kit by Google 1.113.0\" />\n<!-- Google Tag Manager for WordPress by gtm4wp.com -->\n<!-- GTM Container placement set to automatic -->\n<script data-cfasync=\"false\" data-pagespeed-no-defer type=\"text/javascript\">\n	var dataLayer_content = {\"pagePostType\":\"frontpage\",\"pagePostType2\":\"single-page\",\"pagePostAuthor\":\"Teng Shop\"};\n	dataLayer.push( dataLayer_content );\n</script>\n<script data-cfasync=\"false\">\n(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\n\'//www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\n})(window,document,\'script\',\'dataLayer\',\'GTM-NCMLJ2WS\');\n</script>\n<!-- End Google Tag Manager -->\n<!-- End Google Tag Manager for WordPress by gtm4wp.com --><style>.bg{opacity: 0; transition: opacity 1s; -webkit-transition: opacity 1s;} .bg-loaded{opacity: 1;}</style>	<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>\n	<link rel=\"icon\" href=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/cropped-teng-shop-flavicon-32x32.png\" sizes=\"32x32\" />\n<link rel=\"icon\" href=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/cropped-teng-shop-flavicon-192x192.png\" sizes=\"192x192\" />\n<link rel=\"apple-touch-icon\" href=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/cropped-teng-shop-flavicon-180x180.png\" />\n<meta name=\"msapplication-TileImage\" content=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/cropped-teng-shop-flavicon-270x270.png\" />\n<style type=\"text/css\">div.nsl-container[data-align=\"left\"] {\n    text-align: left;\n}\n\ndiv.nsl-container[data-align=\"center\"] {\n    text-align: center;\n}\n\ndiv.nsl-container[data-align=\"right\"] {\n    text-align: right;\n}\n\n\ndiv.nsl-container div.nsl-container-buttons a[data-plugin=\"nsl\"] {\n    text-decoration: none;\n    box-shadow: none;\n    border: 0;\n}\n\ndiv.nsl-container .nsl-container-buttons {\n    display: flex;\n    padding: 5px 0;\n}\n\ndiv.nsl-container.nsl-container-block .nsl-container-buttons {\n    display: inline-grid;\n    grid-template-columns: minmax(145px, auto);\n}\n\ndiv.nsl-container-block-fullwidth .nsl-container-buttons {\n    flex-flow: column;\n    align-items: center;\n}\n\ndiv.nsl-container-block-fullwidth .nsl-container-buttons a,\ndiv.nsl-container-block .nsl-container-buttons a {\n    flex: 1 1 auto;\n    display: block;\n    margin: 5px 0;\n    width: 100%;\n}\n\ndiv.nsl-container-inline {\n    margin: -5px;\n    text-align: left;\n}\n\ndiv.nsl-container-inline .nsl-container-buttons {\n    justify-content: center;\n    flex-wrap: wrap;\n}\n\ndiv.nsl-container-inline .nsl-container-buttons a {\n    margin: 5px;\n    display: inline-block;\n}\n\ndiv.nsl-container-grid .nsl-container-buttons {\n    flex-flow: row;\n    align-items: center;\n    flex-wrap: wrap;\n}\n\ndiv.nsl-container-grid .nsl-container-buttons a {\n    flex: 1 1 auto;\n    display: block;\n    margin: 5px;\n    max-width: 280px;\n    width: 100%;\n}\n\n@media only screen and (min-width: 650px) {\n    div.nsl-container-grid .nsl-container-buttons a {\n        width: auto;\n    }\n}\n\ndiv.nsl-container .nsl-button {\n    cursor: pointer;\n    vertical-align: top;\n    border-radius: 4px;\n}\n\ndiv.nsl-container .nsl-button-default {\n    color: #fff;\n    display: flex;\n}\n\ndiv.nsl-container .nsl-button-icon {\n    display: inline-block;\n}\n\ndiv.nsl-container .nsl-button-svg-container {\n    flex: 0 0 auto;\n    padding: 8px;\n    display: flex;\n    align-items: center;\n}\n\ndiv.nsl-container svg {\n    height: 24px;\n    width: 24px;\n    vertical-align: top;\n}\n\ndiv.nsl-container .nsl-button-default div.nsl-button-label-container {\n    margin: 0 24px 0 12px;\n    padding: 10px 0;\n    font-family: Helvetica, Arial, sans-serif;\n    font-size: 16px;\n    line-height: 20px;\n    letter-spacing: .25px;\n    overflow: hidden;\n    text-align: center;\n    text-overflow: clip;\n    white-space: nowrap;\n    flex: 1 1 auto;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n    text-transform: none;\n    display: inline-block;\n}\n\ndiv.nsl-container .nsl-button-google[data-skin=\"dark\"] .nsl-button-svg-container {\n    margin: 1px;\n    padding: 7px;\n    border-radius: 3px;\n    background: #fff;\n}\n\ndiv.nsl-container .nsl-button-google[data-skin=\"light\"] {\n    border-radius: 1px;\n    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .25);\n    color: RGBA(0, 0, 0, 0.54);\n}\n\ndiv.nsl-container .nsl-button-apple .nsl-button-svg-container {\n    padding: 0 6px;\n}\n\ndiv.nsl-container .nsl-button-apple .nsl-button-svg-container svg {\n    height: 40px;\n    width: auto;\n}\n\ndiv.nsl-container .nsl-button-apple[data-skin=\"light\"] {\n    color: #000;\n    box-shadow: 0 0 0 1px #000;\n}\n\ndiv.nsl-container .nsl-button-facebook[data-skin=\"white\"] {\n    color: #000;\n    box-shadow: inset 0 0 0 1px #000;\n}\n\ndiv.nsl-container .nsl-button-facebook[data-skin=\"light\"] {\n    color: #1877F2;\n    box-shadow: inset 0 0 0 1px #1877F2;\n}\n\ndiv.nsl-container .nsl-button-apple div.nsl-button-label-container {\n    font-size: 17px;\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n}\n\ndiv.nsl-container .nsl-button-slack div.nsl-button-label-container {\n    font-size: 17px;\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n}\n\ndiv.nsl-container .nsl-button-slack[data-skin=\"light\"] {\n    color: #000000;\n    box-shadow: inset 0 0 0 1px #DDDDDD;\n}\n\ndiv.nsl-container .nsl-button-tiktok[data-skin=\"light\"] {\n    color: #161823;\n    box-shadow: 0 0 0 1px rgba(22, 24, 35, 0.12);\n}\n\n\ndiv.nsl-container .nsl-button-kakao {\n    color: rgba(0, 0, 0, 0.85);\n}\n\n.nsl-clear {\n    clear: both;\n}\n\n.nsl-container {\n    clear: both;\n}\n\n/*Button align start*/\n\ndiv.nsl-container-inline[data-align=\"left\"] .nsl-container-buttons {\n    justify-content: flex-start;\n}\n\ndiv.nsl-container-inline[data-align=\"center\"] .nsl-container-buttons {\n    justify-content: center;\n}\n\ndiv.nsl-container-inline[data-align=\"right\"] .nsl-container-buttons {\n    justify-content: flex-end;\n}\n\n\ndiv.nsl-container-grid[data-align=\"left\"] .nsl-container-buttons {\n    justify-content: flex-start;\n}\n\ndiv.nsl-container-grid[data-align=\"center\"] .nsl-container-buttons {\n    justify-content: center;\n}\n\ndiv.nsl-container-grid[data-align=\"right\"] .nsl-container-buttons {\n    justify-content: flex-end;\n}\n\ndiv.nsl-container-grid[data-align=\"space-around\"] .nsl-container-buttons {\n    justify-content: space-around;\n}\n\ndiv.nsl-container-grid[data-align=\"space-between\"] .nsl-container-buttons {\n    justify-content: space-between;\n}\n\n/* Button align end*/\n\n/* Redirect */\n\n#nsl-redirect-overlay {\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    align-items: center;\n    position: fixed;\n    z-index: 1000000;\n    left: 0;\n    top: 0;\n    width: 100%;\n    height: 100%;\n    backdrop-filter: blur(1px);\n    background-color: RGBA(0, 0, 0, .32);;\n}\n\n#nsl-redirect-overlay-container {\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    align-items: center;\n    background-color: white;\n    padding: 30px;\n    border-radius: 10px;\n}\n\n#nsl-redirect-overlay-spinner {\n    content: \'\';\n    display: block;\n    margin: 20px;\n    border: 9px solid RGBA(0, 0, 0, .6);\n    border-top: 9px solid #fff;\n    border-radius: 50%;\n    box-shadow: inset 0 0 0 1px RGBA(0, 0, 0, .6), 0 0 0 1px RGBA(0, 0, 0, .6);\n    width: 40px;\n    height: 40px;\n    animation: nsl-loader-spin 2s linear infinite;\n}\n\n@keyframes nsl-loader-spin {\n    0% {\n        transform: rotate(0deg)\n    }\n    to {\n        transform: rotate(360deg)\n    }\n}\n\n#nsl-redirect-overlay-title {\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n    font-size: 18px;\n    font-weight: bold;\n    color: #3C434A;\n}\n\n#nsl-redirect-overlay-text {\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n    text-align: center;\n    font-size: 14px;\n    color: #3C434A;\n}\n\n/* Redirect END*/</style><style id=\"custom-css\" type=\"text/css\">:root {--primary-color: #df4c18;}.tooltipster-base {--tooltip-color: #fff;--tooltip-bg-color: #000;}.off-canvas-right .mfp-content, .off-canvas-left .mfp-content {--drawer-width: 300px;}.off-canvas .mfp-content.off-canvas-cart {--drawer-width: 360px;}.container-width, .full-width .ubermenu-nav, .container, .row{max-width: 1470px}.row.row-collapse{max-width: 1440px}.row.row-small{max-width: 1462.5px}.row.row-large{max-width: 1500px}.header-main{height: 83px}#logo img{max-height: 83px}#logo{width:201px;}.header-bottom{min-height: 10px}.header-top{min-height: 20px}.transparent .header-main{height: 30px}.transparent #logo img{max-height: 30px}.has-transparent + .page-title:first-of-type,.has-transparent + #main > .page-title,.has-transparent + #main > div > .page-title,.has-transparent + #main .page-header-wrapper:first-of-type .page-title{padding-top: 110px;}.header.show-on-scroll,.stuck .header-main{height:70px!important}.stuck #logo img{max-height: 70px!important}.search-form{ width: 60%;}.header-bg-color {background-color: rgba(255,255,255,0.9)}.header-bottom {background-color: #f1f1f1}.top-bar-nav > li > a{line-height: 16px }.header-main .nav > li > a{line-height: 16px }.stuck .header-main .nav > li > a{line-height: 50px }.header-bottom-nav > li > a{line-height: 34px }@media (max-width: 549px) {.header-main{height: 70px}#logo img{max-height: 70px}}.nav-dropdown{font-size:100%}.nav-dropdown-has-arrow li.has-dropdown:after{border-bottom-color: #ffffff;}.nav .nav-dropdown{background-color: #ffffff}.header-top{background-color:#df4c18!important;}body{color: #000000}h1,h2,h3,h4,h5,h6,.heading-font{color: #000000;}@media screen and (max-width: 549px){body{font-size: 100%;}}body{font-family: Lato, sans-serif;}body {font-weight: 400;font-style: normal;}.nav > li > a {font-family: Lato, sans-serif;}.mobile-sidebar-levels-2 .nav > li > ul > li > a {font-family: Lato, sans-serif;}.nav > li > a,.mobile-sidebar-levels-2 .nav > li > ul > li > a {font-weight: 700;font-style: normal;}h1,h2,h3,h4,h5,h6,.heading-font, .off-canvas-center .nav-sidebar.nav-vertical > li > a{font-family: Lato, sans-serif;}h1,h2,h3,h4,h5,h6,.heading-font,.banner h1,.banner h2 {font-weight: 700;font-style: normal;}.alt-font{font-family: \"Dancing Script\", sans-serif;}.alt-font {font-weight: 400!important;font-style: normal!important;}.breadcrumbs{text-transform: none;}.header:not(.transparent) .header-bottom-nav.nav > li > a{color: #000000;}.header:not(.transparent) .header-bottom-nav.nav > li > a:hover,.header:not(.transparent) .header-bottom-nav.nav > li.active > a,.header:not(.transparent) .header-bottom-nav.nav > li.current > a,.header:not(.transparent) .header-bottom-nav.nav > li > a.active,.header:not(.transparent) .header-bottom-nav.nav > li > a.current{color: #df4c18;}.header-bottom-nav.nav-line-bottom > li > a:before,.header-bottom-nav.nav-line-grow > li > a:before,.header-bottom-nav.nav-line > li > a:before,.header-bottom-nav.nav-box > li > a:hover,.header-bottom-nav.nav-box > li.active > a,.header-bottom-nav.nav-pills > li > a:hover,.header-bottom-nav.nav-pills > li.active > a{color:#FFF!important;background-color: #df4c18;}.current .breadcrumb-step, [data-icon-label]:after, .button#place_order,.button.checkout,.checkout-button,.single_add_to_cart_button.button, .sticky-add-to-cart-select-options-button{background-color: #df4c18!important }.price del, .product_list_widget del, del .woocommerce-Price-amount { color: #777777; }ins .woocommerce-Price-amount { color: #000000; }@media screen and (min-width: 550px){.products .box-vertical .box-image{min-width: 768px!important;width: 768px!important;}}.page-title-small + main .product-container > .row{padding-top:0;}button[name=\'update_cart\'] { display: none; }.nav-vertical-fly-out > li + li {border-top-width: 1px; border-top-style: solid;}/* Custom CSS */.woocommerce .out-of-stock-label {background-color: #df4c18 !important; color: #ffffff !important; }.label-new.menu-item > a:after{content:\"Nieuw\";}.label-hot.menu-item > a:after{content:\"Hot\";}.label-sale.menu-item > a:after{content:\"Aanbieding\";}.label-popular.menu-item > a:after{content:\"Populair\";}</style>		<style type=\"text/css\" id=\"wp-custom-css\">\n			b, strong {\n    font-weight: bold !important;\n}\n/* style.css */\n.custom-title {\n    font-family: \'Lato\', sans-serif;\n    font-weight: 700;\n    font-size: 16px;\n    line-height: 21px;\n    color: #000000;\n}\n.footer-title {\n    font-family: \'Lato\', sans-serif;\n    font-weight: 700; /* Bold */\n    font-size: 18px;\n    line-height: 29px;\n    color: #000000; /* Vous avez écrit #00000, mais je suppose que c\'est une petite erreur de frappe et que vous vouliez #000000 */\n}\n.large-footer-title {\n    font-family: \'Lato\', sans-serif;\n    font-weight: 700; /* Bold */\n    font-size: 26px;\n    line-height: 42px;\n    color: #000000;\n}		</style>\n		<style id=\"flatsome-swatches-css\" type=\"text/css\">.variations th,.variations td {display: block;}.variations .label {display: flex;align-items: center;}.variations .label label {margin: .5em 0;}.ux-swatch-selected-value {font-weight: normal;font-size: .9em;}</style><style id=\"kirki-inline-styles\">/* latin-ext */\n@font-face {\n  font-family: \'Lato\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Lato\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjx4wWCWtFCc.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Lato\';\n  font-style: normal;\n  font-weight: 700;\n  font-display: swap;\n  src: url(/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Lato\';\n  font-style: normal;\n  font-weight: 700;\n  font-display: swap;\n  src: url(/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}/* vietnamese */\n@font-face {\n  font-family: \'Dancing Script\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/nl.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff) format(\'woff\');\n  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Dancing Script\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/nl.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Dancing Script\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/nl.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}</style></head>\n\n<body class=\"home page-template page-template-page-blank page-template-page-blank-php page page-id-263 theme-flatsome woocommerce-no-js nav-dropdown-has-arrow nav-dropdown-has-shadow\">\n\n\n<!-- GTM Container placement set to automatic -->\n<!-- Google Tag Manager (noscript) -->\n				<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-NCMLJ2WS\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\" aria-hidden=\"true\"></iframe></noscript>\n<!-- End Google Tag Manager (noscript) -->\n<a class=\"skip-link screen-reader-text\" href=\"#main\">Ga naar inhoud</a>\n\n<div id=\"wrapper\">\n\n	\n	<header id=\"header\" class=\"header has-sticky sticky-jump\">\n		<div class=\"header-wrapper\">\n			<div id=\"top-bar\" class=\"header-top nav-dark flex-has-center\">\n    <div class=\"flex-row container\">\n      <div class=\"flex-col hide-for-medium flex-left\">\n          <ul class=\"nav nav-left medium-nav-center nav-small  nav-divided\">\n                        </ul>\n      </div>\n\n      <div class=\"flex-col hide-for-medium flex-center\">\n          <ul class=\"nav nav-center nav-small  nav-divided\">\n              <li class=\"html custom html_topbar_left\"><strong class=\"uppercase\">Gratis verzending vanaf 70€ 🎁</strong></li>          </ul>\n      </div>\n\n      <div class=\"flex-col hide-for-medium flex-right\">\n         <ul class=\"nav top-bar-nav nav-right nav-small  nav-divided\">\n              <li class=\"account-item has-icon\n    \"\n>\n\n<a href=\"https://www.nl.teng-shop.com/mijn-paard/\"\n    class=\"nav-top-link nav-top-not-logged-in \"\n    data-open=\"#login-form-popup\"  >\n    <span>\n    Inloggen      </span>\n  \n</a>\n\n\n\n</li>\n          </ul>\n      </div>\n\n            <div class=\"flex-col show-for-medium flex-grow\">\n          <ul class=\"nav nav-center nav-small mobile-nav  nav-divided\">\n              <li class=\"html custom html_topbar_left\"><strong class=\"uppercase\">Gratis verzending vanaf 70€ 🎁</strong></li>          </ul>\n      </div>\n      \n    </div>\n</div>\n<div id=\"masthead\" class=\"header-main show-logo-center\">\n      <div class=\"header-inner flex-row container logo-center medium-logo-center\" role=\"navigation\">\n\n          <!-- Logo -->\n          <div id=\"logo\" class=\"flex-col logo\">\n            \n<!-- Header logo -->\n<a href=\"https://www.nl.teng-shop.com/\" title=\"Teng Shop\" rel=\"home\">\n		<img width=\"833\" height=\"259\" src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\" class=\"header_logo header-logo\" alt=\"Teng Shop\"/><img  width=\"833\" height=\"259\" src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\" class=\"header-logo-dark\" alt=\"Teng Shop\"/></a>\n          </div>\n\n          <!-- Mobile Left Elements -->\n          <div class=\"flex-col show-for-medium flex-left\">\n            <ul class=\"mobile-nav nav nav-left \">\n              <li class=\"nav-icon has-icon\">\n  		<a href=\"#\" data-open=\"#main-menu\" data-pos=\"left\" data-bg=\"main-menu-overlay\" data-color=\"\" class=\"is-small\" aria-label=\"Menu\" aria-controls=\"main-menu\" aria-expanded=\"false\">\n\n		  <i class=\"icon-menu\" ></i>\n		  		</a>\n	</li>\n            </ul>\n          </div>\n\n          <!-- Left Elements -->\n          <div class=\"flex-col hide-for-medium flex-left\n            \">\n            <ul class=\"header-nav header-nav-main nav nav-left  nav-uppercase\" >\n              <li class=\"header-search-form search-form html relative has-icon\">\n	<div class=\"header-search-form-wrapper\">\n		<div class=\"searchform-wrapper ux-search-box relative form-flat is-normal\"><form role=\"search\" method=\"get\" class=\"searchform\" action=\"https://www.nl.teng-shop.com/\">\n	<div class=\"flex-row relative\">\n						<div class=\"flex-col flex-grow\">\n			<label class=\"screen-reader-text\" for=\"woocommerce-product-search-field-0\">Zoeken naar:</label>\n			<input type=\"search\" id=\"woocommerce-product-search-field-0\" class=\"search-field mb-0\" placeholder=\"Zoeken naar...\" value=\"\" name=\"s\" />\n			<input type=\"hidden\" name=\"post_type\" value=\"product\" />\n					</div>\n		<div class=\"flex-col\">\n			<button type=\"submit\" value=\"Zoeken\" class=\"ux-search-submit submit-button secondary button  icon mb-0\" aria-label=\"Verzenden\">\n				<i class=\"icon-search\" ></i>			</button>\n		</div>\n	</div>\n	<div class=\"live-search-results text-left z-top\"></div>\n</form>\n</div>	</div>\n</li>\n            </ul>\n          </div>\n\n          <!-- Right Elements -->\n          <div class=\"flex-col hide-for-medium flex-right\">\n            <ul class=\"header-nav header-nav-main nav nav-right  nav-uppercase\">\n              <li class=\"cart-item has-icon has-dropdown\">\n<div class=\"header-button\">\n<a href=\"https://www.nl.teng-shop.com/mand/\" class=\"header-cart-link icon primary button round is-small\" title=\"Winkelwagen\" >\n\n<span class=\"header-cart-title\">\n   Winkelwagen   /      <span class=\"cart-price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>0.00</bdi></span></span>\n  </span>\n\n    <i class=\"icon-shopping-basket\"\n    data-icon-label=\"0\">\n  </i>\n  </a>\n</div>\n <ul class=\"nav-dropdown nav-dropdown-simple\">\n    <li class=\"html widget_shopping_cart\">\n      <div class=\"widget_shopping_cart_content\">\n        \n\n	<div class=\"ux-mini-cart-empty flex flex-row-col text-center pt pb\">\n				<div class=\"ux-mini-cart-empty-icon\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 17 19\" style=\"opacity: .1;height:80px;\">\n				<path d=\"M8.5 0C6.7 0 5.3 1.2 5.3 2.7v2H2.1c-.3 0-.6.3-.7.7L0 18.2c0 .4.2.8.6.8h15.7c.4 0 .7-.3.7-.7v-.1L15.6 5.4c0-.3-.3-.6-.7-.6h-3.2v-2c0-1.6-1.4-2.8-3.2-2.8zM6.7 2.7c0-.8.8-1.4 1.8-1.4s1.8.6 1.8 1.4v2H6.7v-2zm7.5 3.4 1.3 11.5h-14L2.8 6.1h2.5v1.4c0 .4.3.7.7.7.4 0 .7-.3.7-.7V6.1h3.5v1.4c0 .4.3.7.7.7s.7-.3.7-.7V6.1h2.6z\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#303031\"></path>\n			</svg>\n		</div>\n				<p class=\"woocommerce-mini-cart__empty-message empty\">Geen producten in de winkelwagen.</p>\n					<p class=\"return-to-shop\">\n				<a class=\"button primary wc-backward\" href=\"https://www.nl.teng-shop.com/alle-producten/\">\n					Terug naar winkel				</a>\n			</p>\n				</div>\n\n\n      </div>\n    </li>\n     </ul>\n\n</li>\n            </ul>\n          </div>\n\n          <!-- Mobile Right Elements -->\n          <div class=\"flex-col show-for-medium flex-right\">\n            <ul class=\"mobile-nav nav nav-right \">\n              <li class=\"header-search header-search-dropdown has-icon has-dropdown menu-item-has-children\">\n	<div class=\"header-button\">	<a href=\"#\" aria-label=\"Zoeken\" class=\"icon button circle is-outline is-small\"><i class=\"icon-search\" ></i></a>\n	</div>	<ul class=\"nav-dropdown nav-dropdown-simple\">\n	 	<li class=\"header-search-form search-form html relative has-icon\">\n	<div class=\"header-search-form-wrapper\">\n		<div class=\"searchform-wrapper ux-search-box relative form-flat is-normal\"><form role=\"search\" method=\"get\" class=\"searchform\" action=\"https://www.nl.teng-shop.com/\">\n	<div class=\"flex-row relative\">\n						<div class=\"flex-col flex-grow\">\n			<label class=\"screen-reader-text\" for=\"woocommerce-product-search-field-1\">Zoeken naar:</label>\n			<input type=\"search\" id=\"woocommerce-product-search-field-1\" class=\"search-field mb-0\" placeholder=\"Zoeken naar...\" value=\"\" name=\"s\" />\n			<input type=\"hidden\" name=\"post_type\" value=\"product\" />\n					</div>\n		<div class=\"flex-col\">\n			<button type=\"submit\" value=\"Zoeken\" class=\"ux-search-submit submit-button secondary button  icon mb-0\" aria-label=\"Verzenden\">\n				<i class=\"icon-search\" ></i>			</button>\n		</div>\n	</div>\n	<div class=\"live-search-results text-left z-top\"></div>\n</form>\n</div>	</div>\n</li>\n	</ul>\n</li>\n<li class=\"cart-item has-icon\">\n\n<div class=\"header-button\">\n		<a href=\"https://www.nl.teng-shop.com/mand/\" class=\"header-cart-link icon primary button round is-small off-canvas-toggle nav-top-link\" title=\"Winkelwagen\" data-open=\"#cart-popup\" data-class=\"off-canvas-cart\" data-pos=\"right\" >\n\n    <i class=\"icon-shopping-basket\"\n    data-icon-label=\"0\">\n  </i>\n  </a>\n</div>\n\n  <!-- Cart Sidebar Popup -->\n  <div id=\"cart-popup\" class=\"mfp-hide\">\n  <div class=\"cart-popup-inner inner-padding cart-popup-inner--sticky\"\">\n      <div class=\"cart-popup-title text-center\">\n          <span class=\"heading-font uppercase\">Winkelwagen</span>\n          <div class=\"is-divider\"></div>\n      </div>\n      <div class=\"widget woocommerce widget_shopping_cart\"><div class=\"widget_shopping_cart_content\"></div></div>             <div class=\"payment-icons inline-block\"><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M10.781 7.688c-0.251-1.283-1.219-1.688-2.344-1.688h-8.376l-0.061 0.405c5.749 1.469 10.469 4.595 12.595 10.501l-1.813-9.219zM13.125 19.688l-0.531-2.781c-1.096-2.907-3.752-5.594-6.752-6.813l4.219 15.939h5.469l8.157-20.032h-5.501l-5.062 13.688zM27.72 26.061l3.248-20.061h-5.187l-3.251 20.061h5.189zM41.875 5.656c-5.125 0-8.717 2.72-8.749 6.624-0.032 2.877 2.563 4.469 4.531 5.439 2.032 0.968 2.688 1.624 2.688 2.499 0 1.344-1.624 1.939-3.093 1.939-2.093 0-3.219-0.251-4.875-1.032l-0.688-0.344-0.719 4.499c1.219 0.563 3.437 1.064 5.781 1.064 5.437 0.032 8.97-2.688 9.032-6.843 0-2.282-1.405-4-4.376-5.439-1.811-0.904-2.904-1.563-2.904-2.499 0-0.843 0.936-1.72 2.968-1.72 1.688-0.029 2.936 0.314 3.875 0.752l0.469 0.248 0.717-4.344c-1.032-0.406-2.656-0.844-4.656-0.844zM55.813 6c-1.251 0-2.189 0.376-2.72 1.688l-7.688 18.374h5.437c0.877-2.467 1.096-3 1.096-3 0.592 0 5.875 0 6.624 0 0 0 0.157 0.688 0.624 3h4.813l-4.187-20.061h-4zM53.405 18.938c0 0 0.437-1.157 2.064-5.594-0.032 0.032 0.437-1.157 0.688-1.907l0.374 1.72c0.968 4.781 1.189 5.781 1.189 5.781-0.813 0-3.283 0-4.315 0z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M7.114 14.656c-1.375-0.5-2.125-0.906-2.125-1.531 0-0.531 0.437-0.812 1.188-0.812 1.437 0 2.875 0.531 3.875 1.031l0.563-3.5c-0.781-0.375-2.406-1-4.656-1-1.594 0-2.906 0.406-3.844 1.188-1 0.812-1.5 2-1.5 3.406 0 2.563 1.563 3.688 4.125 4.594 1.625 0.594 2.188 1 2.188 1.656 0 0.625-0.531 0.969-1.5 0.969-1.188 0-3.156-0.594-4.437-1.343l-0.563 3.531c1.094 0.625 3.125 1.281 5.25 1.281 1.688 0 3.063-0.406 4.031-1.157 1.063-0.843 1.594-2.062 1.594-3.656-0.001-2.625-1.595-3.719-4.188-4.657zM21.114 9.125h-3v-4.219l-4.031 0.656-0.563 3.563-1.437 0.25-0.531 3.219h1.937v6.844c0 1.781 0.469 3 1.375 3.75 0.781 0.625 1.907 0.938 3.469 0.938 1.219 0 1.937-0.219 2.468-0.344v-3.688c-0.282 0.063-0.938 0.22-1.375 0.22-0.906 0-1.313-0.5-1.313-1.563v-6.156h2.406l0.595-3.469zM30.396 9.031c-0.313-0.062-0.594-0.093-0.876-0.093-1.312 0-2.374 0.687-2.781 1.937l-0.313-1.75h-4.093v14.719h4.687v-9.563c0.594-0.719 1.437-0.968 2.563-0.968 0.25 0 0.5 0 0.812 0.062v-4.344zM33.895 2.719c-1.375 0-2.468 1.094-2.468 2.469s1.094 2.5 2.468 2.5 2.469-1.124 2.469-2.5-1.094-2.469-2.469-2.469zM36.239 23.844v-14.719h-4.687v14.719h4.687zM49.583 10.468c-0.843-1.094-2-1.625-3.469-1.625-1.343 0-2.531 0.563-3.656 1.75l-0.25-1.469h-4.125v20.155l4.688-0.781v-4.719c0.719 0.219 1.469 0.344 2.125 0.344 1.157 0 2.876-0.313 4.188-1.75 1.281-1.375 1.907-3.5 1.907-6.313 0-2.499-0.469-4.405-1.407-5.593zM45.677 19.532c-0.375 0.687-0.969 1.094-1.625 1.094-0.468 0-0.906-0.093-1.281-0.281v-7c0.812-0.844 1.531-0.938 1.781-0.938 1.188 0 1.781 1.313 1.781 3.812 0.001 1.437-0.219 2.531-0.656 3.313zM62.927 10.843c-1.032-1.312-2.563-2-4.501-2-4 0-6.468 2.938-6.468 7.688 0 2.625 0.656 4.625 1.968 5.875 1.157 1.157 2.844 1.719 5.032 1.719 2 0 3.844-0.469 5-1.251l-0.501-3.219c-1.157 0.625-2.5 0.969-4 0.969-0.906 0-1.532-0.188-1.969-0.594-0.5-0.406-0.781-1.094-0.875-2.062h7.75c0.031-0.219 0.062-1.281 0.062-1.625 0.001-2.344-0.5-4.188-1.499-5.5zM56.583 15.094c0.125-2.093 0.687-3.062 1.75-3.062s1.625 1 1.687 3.062h-3.437z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M42.667-0c-4.099 0-7.836 1.543-10.667 4.077-2.831-2.534-6.568-4.077-10.667-4.077-8.836 0-16 7.163-16 16s7.164 16 16 16c4.099 0 7.835-1.543 10.667-4.077 2.831 2.534 6.568 4.077 10.667 4.077 8.837 0 16-7.163 16-16s-7.163-16-16-16zM11.934 19.828l0.924-5.809-2.112 5.809h-1.188v-5.809l-1.056 5.809h-1.584l1.32-7.657h2.376v4.753l1.716-4.753h2.508l-1.32 7.657h-1.585zM19.327 18.244c-0.088 0.528-0.178 0.924-0.264 1.188v0.396h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.364-0.66 2.244-0.66h0.66v-0.396c0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0.086-0.351 0.175-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.244 0.616 2.244 1.848 0 0.353-0.046 0.749-0.132 1.188-0.089 0.616-0.179 1.188-0.264 1.716zM24.079 15.076c-0.264-0.086-0.66-0.132-1.188-0.132s-0.792 0.177-0.792 0.528c0 0.177 0.044 0.31 0.132 0.396l0.528 0.264c0.792 0.442 1.188 1.012 1.188 1.716 0 1.409-0.838 2.112-2.508 2.112-0.792 0-1.366-0.044-1.716-0.132 0.086-0.351 0.175-0.836 0.264-1.452 0.703 0.177 1.188 0.264 1.452 0.264 0.614 0 0.924-0.175 0.924-0.528 0-0.175-0.046-0.308-0.132-0.396-0.178-0.175-0.396-0.308-0.66-0.396-0.792-0.351-1.188-0.924-1.188-1.716 0-1.407 0.792-2.112 2.376-2.112 0.792 0 1.32 0.045 1.584 0.132l-0.265 1.451zM27.512 15.208h-0.924c0 0.442-0.046 0.838-0.132 1.188 0 0.088-0.022 0.264-0.066 0.528-0.046 0.264-0.112 0.442-0.198 0.528v0.528c0 0.353 0.175 0.528 0.528 0.528 0.175 0 0.35-0.044 0.528-0.132l-0.264 1.452c-0.264 0.088-0.66 0.132-1.188 0.132-0.881 0-1.32-0.44-1.32-1.32 0-0.528 0.086-1.099 0.264-1.716l0.66-4.225h1.584l-0.132 0.924h0.792l-0.132 1.585zM32.66 17.32h-3.3c0 0.442 0.086 0.749 0.264 0.924 0.264 0.264 0.66 0.396 1.188 0.396s1.1-0.175 1.716-0.528l-0.264 1.584c-0.442 0.177-1.012 0.264-1.716 0.264-1.848 0-2.772-0.924-2.772-2.773 0-1.142 0.264-2.024 0.792-2.64 0.528-0.703 1.188-1.056 1.98-1.056 0.703 0 1.274 0.22 1.716 0.66 0.35 0.353 0.528 0.881 0.528 1.584 0.001 0.617-0.046 1.145-0.132 1.585zM35.3 16.132c-0.264 0.97-0.484 2.201-0.66 3.697h-1.716l0.132-0.396c0.35-2.463 0.614-4.4 0.792-5.809h1.584l-0.132 0.924c0.264-0.44 0.528-0.703 0.792-0.792 0.264-0.264 0.528-0.308 0.792-0.132-0.088 0.088-0.31 0.706-0.66 1.848-0.353-0.086-0.661 0.132-0.925 0.66zM41.241 19.697c-0.353 0.177-0.838 0.264-1.452 0.264-0.881 0-1.584-0.308-2.112-0.924-0.528-0.528-0.792-1.32-0.792-2.376 0-1.32 0.35-2.42 1.056-3.3 0.614-0.879 1.496-1.32 2.64-1.32 0.44 0 1.056 0.132 1.848 0.396l-0.264 1.584c-0.528-0.264-1.012-0.396-1.452-0.396-0.707 0-1.235 0.264-1.584 0.792-0.353 0.442-0.528 1.144-0.528 2.112 0 0.616 0.132 1.056 0.396 1.32 0.264 0.353 0.614 0.528 1.056 0.528 0.44 0 0.924-0.132 1.452-0.396l-0.264 1.717zM47.115 15.868c-0.046 0.264-0.066 0.484-0.066 0.66-0.088 0.442-0.178 1.035-0.264 1.782-0.088 0.749-0.178 1.254-0.264 1.518h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.32-0.66 2.112-0.66h0.66c0.086-0.086 0.132-0.218 0.132-0.396 0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0-0.351 0.086-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.245 0.616 2.245 1.848 0.001 0.089-0.021 0.264-0.065 0.529zM49.69 16.132c-0.178 0.528-0.396 1.762-0.66 3.697h-1.716l0.132-0.396c0.35-1.935 0.614-3.872 0.792-5.809h1.584c0 0.353-0.046 0.66-0.132 0.924 0.264-0.44 0.528-0.703 0.792-0.792 0.35-0.175 0.614-0.218 0.792-0.132-0.353 0.442-0.574 1.056-0.66 1.848-0.353-0.086-0.66 0.132-0.925 0.66zM54.178 19.828l0.132-0.528c-0.353 0.442-0.838 0.66-1.452 0.66-0.707 0-1.188-0.218-1.452-0.66-0.442-0.614-0.66-1.232-0.66-1.848 0-1.142 0.308-2.067 0.924-2.773 0.44-0.703 1.056-1.056 1.848-1.056 0.528 0 1.056 0.264 1.584 0.792l0.264-2.244h1.716l-1.32 7.657h-1.585zM16.159 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.397c-0.881 0-1.32 0.31-1.32 0.924zM31.076 15.076c-0.088 0-0.178-0.043-0.264-0.132h-0.264c-0.528 0-0.881 0.353-1.056 1.056h1.848v-0.396l-0.132-0.264c-0.001-0.086-0.047-0.175-0.133-0.264zM43.617 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.396c-0.881 0-1.32 0.31-1.32 0.924zM53.782 15.076c-0.353 0-0.66 0.22-0.924 0.66-0.178 0.264-0.264 0.749-0.264 1.452 0 0.792 0.264 1.188 0.792 1.188 0.35 0 0.66-0.175 0.924-0.528 0.264-0.351 0.396-0.879 0.396-1.584-0.001-0.792-0.311-1.188-0.925-1.188z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M16.398 13.428c0.034 3.535 3.201 4.71 3.236 4.726-0.027 0.083-0.506 1.676-1.668 3.322-1.005 1.423-2.048 2.84-3.692 2.87-1.615 0.029-2.134-0.927-3.98-0.927s-2.422 0.898-3.951 0.956c-1.586 0.058-2.794-1.539-3.807-2.956-2.070-2.9-3.653-8.194-1.528-11.768 1.055-1.775 2.942-2.899 4.989-2.927 1.558-0.029 3.027 1.015 3.98 1.015s2.738-1.255 4.616-1.071c0.786 0.032 2.993 0.308 4.41 2.317-0.114 0.068-2.633 1.489-2.605 4.444zM13.363 4.749c0.842-0.987 1.409-2.362 1.254-3.729-1.213 0.047-2.682 0.783-3.552 1.77-0.78 0.874-1.464 2.273-1.279 3.613 1.353 0.101 2.735-0.666 3.577-1.654zM25.55 3.058c0.624-0.105 1.313-0.2 2.065-0.284s1.581-0.126 2.485-0.126c1.291 0 2.404 0.152 3.339 0.457s1.704 0.741 2.307 1.308c0.517 0.504 0.92 1.103 1.21 1.796s0.435 1.492 0.435 2.395c0 1.092-0.199 2.049-0.596 2.868s-0.941 1.507-1.629 2.064c-0.688 0.557-1.506 0.972-2.452 1.245s-1.979 0.41-3.098 0.41c-1.011 0-1.86-0.073-2.548-0.22v9.076h-1.517v-20.989zM27.068 13.648c0.366 0.104 0.774 0.178 1.226 0.22s0.935 0.063 1.451 0.063c1.936 0 3.436-0.441 4.501-1.323s1.597-2.174 1.597-3.876c0-0.819-0.14-1.534-0.42-2.143s-0.677-1.108-1.193-1.497c-0.516-0.388-1.129-0.683-1.839-0.882s-1.495-0.3-2.356-0.3c-0.688 0-1.28 0.027-1.774 0.079s-0.893 0.11-1.193 0.173l0.001 9.487zM49.452 20.454c0 0.61 0.010 1.219 0.032 1.828s0.086 1.197 0.194 1.765h-1.42l-0.225-2.143h-0.065c-0.194 0.294-0.441 0.588-0.742 0.882s-0.65 0.562-1.048 0.803c-0.398 0.242-0.85 0.436-1.355 0.583s-1.059 0.22-1.662 0.22c-0.753 0-1.414-0.121-1.985-0.362s-1.038-0.557-1.403-0.946c-0.366-0.389-0.64-0.836-0.822-1.339s-0.274-1.008-0.274-1.513c0-1.786 0.769-3.162 2.307-4.129s3.855-1.429 6.953-1.387v-0.41c0-0.399-0.038-0.856-0.113-1.371s-0.242-1.003-0.5-1.465c-0.258-0.462-0.645-0.851-1.161-1.166s-1.215-0.473-2.097-0.473c-0.666 0-1.328 0.1-1.983 0.299s-1.253 0.478-1.791 0.835l-0.484-1.103c0.688-0.462 1.399-0.793 2.13-0.992s1.495-0.3 2.29-0.3c1.076 0 1.952 0.178 2.63 0.536s1.21 0.819 1.597 1.387c0.387 0.567 0.651 1.202 0.791 1.906s0.21 1.402 0.21 2.096l-0.001 5.957zM47.936 15.948c-0.818-0.021-1.673 0.010-2.566 0.094s-1.715 0.268-2.468 0.552c-0.753 0.284-1.377 0.699-1.871 1.245s-0.742 1.271-0.742 2.175c0 1.072 0.312 1.859 0.935 2.364s1.323 0.757 2.097 0.757c0.624 0 1.182-0.084 1.677-0.252s0.925-0.394 1.291-0.677c0.366-0.283 0.672-0.603 0.919-0.961s0.436-0.725 0.565-1.103c0.108-0.421 0.161-0.726 0.161-0.915l0.001-3.277zM52.418 8.919l3.935 9.833c0.215 0.547 0.42 1.108 0.613 1.686s0.366 1.108 0.516 1.591h0.065c0.15-0.462 0.322-0.982 0.516-1.56s0.409-1.171 0.645-1.781l3.679-9.77h1.613l-4.484 11.094c-0.452 1.177-0.877 2.243-1.275 3.199s-0.801 1.817-1.21 2.585c-0.409 0.767-0.822 1.445-1.242 2.033s-0.887 1.103-1.404 1.544c-0.602 0.525-1.156 0.908-1.661 1.151s-0.844 0.394-1.016 0.457l-0.517-1.229c0.387-0.168 0.818-0.388 1.291-0.662s0.936-0.63 1.387-1.072c0.387-0.378 0.812-0.877 1.274-1.497s0.876-1.371 1.242-2.254c0.13-0.336 0.194-0.557 0.194-0.662 0-0.147-0.065-0.367-0.194-0.662l-5.582-14.025h1.614z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 32\">\n	<path d=\"M30.479 16.275v7.365h-2.337V5.452h6.197a5.603 5.603 0 014.012 1.574 5.062 5.062 0 011.676 3.839 5.037 5.037 0 01-1.676 3.86c-1.083 1.033-2.42 1.55-4.012 1.548h-3.86v.002zm0-8.584v6.35h3.918a3.089 3.089 0 002.312-.941 3.098 3.098 0 000-4.445 3.047 3.047 0 00-2.312-.965h-3.918v.001zM45.41 10.79c1.727 0 3.09.462 4.09 1.385s1.498 2.188 1.498 3.796v7.67h-2.235v-1.727h-.102c-.968 1.422-2.254 2.133-3.86 2.133-1.371 0-2.518-.406-3.441-1.219a3.895 3.895 0 01-1.384-3.047c0-1.288.486-2.312 1.46-3.073.973-.76 2.272-1.141 3.897-1.143 1.388 0 2.53.254 3.428.762v-.534a2.662 2.662 0 00-.965-2.068 3.31 3.31 0 00-2.255-.852c-1.305 0-2.338.55-3.098 1.651l-2.058-1.296c1.132-1.625 2.807-2.438 5.025-2.438zm-3.023 9.041a1.864 1.864 0 00.775 1.524 2.85 2.85 0 001.816.61 3.725 3.725 0 002.628-1.092c.774-.728 1.161-1.583 1.161-2.564-.729-.58-1.744-.87-3.048-.87-.949 0-1.74.228-2.374.686-.64.464-.957 1.029-.957 1.706zm21.439-8.634l-7.802 17.93h-2.411l2.895-6.274-5.13-11.656h2.54l3.707 8.94h.05l3.607-8.94h2.544zM11.003 8.137a5.673 5.673 0 014.009 1.567l2.982-2.982A10.04 10.04 0 0011.004 4a10.449 10.449 0 000 20.897c2.82 0 5.193-.926 6.925-2.522l-.002-.002h.002c1.972-1.818 3.108-4.507 3.108-7.687 0-.712-.06-1.422-.18-2.124h-9.854v4.024h5.644a4.834 4.834 0 01-2.087 3.175v.002c-.937.635-2.145.998-3.557.998-2.725 0-5.038-1.837-5.865-4.313a6.26 6.26 0 010-4c.827-2.475 3.14-4.312 5.865-4.312z\"/>\n</svg>\n</div></div>  </div>\n  </div>\n\n</li>\n            </ul>\n          </div>\n\n      </div>\n\n            <div class=\"container\"><div class=\"top-divider full-width\"></div></div>\n      </div>\n<div id=\"wide-nav\" class=\"header-bottom wide-nav flex-has-center hide-for-medium\">\n    <div class=\"flex-row container\">\n\n            \n                        <div class=\"flex-col hide-for-medium flex-center\">\n                <ul class=\"nav header-nav header-bottom-nav nav-center  nav-uppercase\">\n                    <li id=\"menu-item-9260\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9260 menu-item-design-default has-dropdown\"><a href=\"/collections/chinese-kleding-mannen/\" class=\"nav-top-link\" aria-expanded=\"false\" aria-haspopup=\"menu\">Man<i class=\"icon-angle-down\" ></i></a>\n<ul class=\"sub-menu nav-dropdown nav-dropdown-simple\">\n	<li id=\"menu-item-9261\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9261\"><a href=\"/collections/chinese-broek/\">Broek</a></li>\n	<li id=\"menu-item-9262\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9262\"><a href=\"/collections/chinese-jas-mannen-tangzhuang/\">Jassen</a></li>\n	<li id=\"menu-item-9263\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9263\"><a href=\"/collections/chinese-t-shirts/\">T-shirts</a></li>\n</ul>\n</li>\n<li id=\"menu-item-9264\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9264 menu-item-design-default has-dropdown\"><a href=\"/collections/chinese-kleding-vrouwen/\" class=\"nav-top-link\" aria-expanded=\"false\" aria-haspopup=\"menu\">Vrouw<i class=\"icon-angle-down\" ></i></a>\n<ul class=\"sub-menu nav-dropdown nav-dropdown-simple\">\n	<li id=\"menu-item-9265\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9265\"><a href=\"/collections/chinese-jurken-qipao/\">Jurken</a></li>\n	<li id=\"menu-item-9266\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9266\"><a href=\"/collections/hanfu/\">Hanfu</a></li>\n	<li id=\"menu-item-9267\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9267\"><a href=\"/collections/chinese-jas-vrouwen/\">Jassen</a></li>\n</ul>\n</li>\n<li id=\"menu-item-9269\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9269 menu-item-design-default has-dropdown\"><a href=\"/collections/chinese-versiering/\" class=\"nav-top-link\" aria-expanded=\"false\" aria-haspopup=\"menu\">Decoratie<i class=\"icon-angle-down\" ></i></a>\n<ul class=\"sub-menu nav-dropdown nav-dropdown-simple\">\n	<li id=\"menu-item-9270\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9270\"><a href=\"/collections/chinese-lampionnen/\">Lampionnen</a></li>\n	<li id=\"menu-item-9271\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9271\"><a href=\"/collections/chinese-gordijnen/\">Gordijnen</a></li>\n	<li id=\"menu-item-9272\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9272\"><a href=\"/collections/chinese-schilderijen/\">Schilderijen</a></li>\n	<li id=\"menu-item-9273\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9273\"><a href=\"/collections/chinese-beelden/\">Beelden</a></li>\n</ul>\n</li>\n<li id=\"menu-item-9274\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9274 menu-item-design-default has-dropdown\"><a href=\"/collections/chinese-accessoires/\" class=\"nav-top-link\" aria-expanded=\"false\" aria-haspopup=\"menu\">Accessoires<i class=\"icon-angle-down\" ></i></a>\n<ul class=\"sub-menu nav-dropdown nav-dropdown-simple\">\n	<li id=\"menu-item-9275\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9275\"><a href=\"/collections/chinese-waaier/\">Waaier</a></li>\n	<li id=\"menu-item-9276\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9276\"><a href=\"/collections/chinese-parapluutjes/\">Paraplu&#8217;s</a></li>\n</ul>\n</li>\n<li id=\"menu-item-9277\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9277 menu-item-design-default\"><a href=\"/collections/chinese-eetstokjes/\" class=\"nav-top-link\">Eetstokjes</a></li>\n                </ul>\n            </div>\n            \n            \n            \n    </div>\n</div>\n\n<div class=\"header-bg-container fill\"><div class=\"header-bg-image fill\"></div><div class=\"header-bg-color fill\"></div></div>		</div>\n	</header>\n\n	\n	<main id=\"main\" class=\"\">\n\n\n<div id=\"content\" role=\"main\" class=\"content-area\">\n\n		\n			\n\n  <div class=\"banner has-hover hide-for-medium\" id=\"banner-1897357279\">\n          <div class=\"banner-inner fill\">\n        <div class=\"banner-bg fill\" >\n            <div class=\"bg fill bg-fill \"></div>\n                                    \n                    </div>\n		\n        <div class=\"banner-layers container\">\n            <div class=\"fill banner-link\"></div>            \n\n   <div id=\"text-box-1656434339\" class=\"text-box banner-layer x5 md-x5 lg-x5 y95 md-y95 lg-y95 res-text\">\n                                <div class=\"text-box-content text dark\">\n              \n              <div class=\"text-inner text-center\">\n                  \n\n<p class=\"uppercase thin-font\" style=\"text-align: left;\"><span style=\"font-size: 150%; background-color: #df4c18;\"><strong>De specialist van uw</strong></span></p>\n<h2 style=\"text-align: left;\"><span style=\"font-size: 100%; background-color: #282828;\"><strong>CHINESE INTERIEURDECORATIE EN GARDEROBE!</strong></span></h2>\n\n              </div>\n           </div>\n                            \n<style>\n#text-box-1656434339 {\n  width: 55%;\n}\n#text-box-1656434339 .text-box-content {\n  font-size: 100%;\n}\n</style>\n    </div>\n \n\n        </div>\n      </div>\n\n            \n<style>\n#banner-1897357279 {\n  padding-top: 500px;\n}\n#banner-1897357279 .bg.bg-loaded {\n  background-image: url(https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chine-shop-banner.jpg);\n}\n</style>\n  </div>\n\n\n\n  <div class=\"banner has-hover show-for-medium hide-for-small\" id=\"banner-1026475995\">\n          <div class=\"banner-inner fill\">\n        <div class=\"banner-bg fill\" >\n            <div class=\"bg fill bg-fill \"></div>\n                                    \n                    </div>\n		\n        <div class=\"banner-layers container\">\n            <div class=\"fill banner-link\"></div>            \n\n   <div id=\"text-box-1080787128\" class=\"text-box banner-layer x50 md-x50 lg-x50 y50 md-y50 lg-y50 res-text\">\n                                <div class=\"text-box-content text dark\">\n              \n              <div class=\"text-inner text-center\">\n                  \n\n\n              </div>\n           </div>\n                            \n<style>\n#text-box-1080787128 {\n  width: 60%;\n}\n#text-box-1080787128 .text-box-content {\n  font-size: 100%;\n}\n@media (min-width:550px) {\n  #text-box-1080787128 {\n    width: 60%;\n  }\n}\n</style>\n    </div>\n \n\n        </div>\n      </div>\n\n            \n<style>\n#banner-1026475995 {\n  padding-top: 500px;\n}\n#banner-1026475995 .bg.bg-loaded {\n  background-image: url(https://www.nl.teng-shop.com/wp-content/uploads/2023/09/NL-min.png);\n}\n</style>\n  </div>\n\n\n\n  <div class=\"banner has-hover show-for-small\" id=\"banner-1114154081\">\n          <div class=\"banner-inner fill\">\n        <div class=\"banner-bg fill\" >\n            <div class=\"bg fill bg-fill \"></div>\n                                    \n                    </div>\n		\n        <div class=\"banner-layers container\">\n            <a class=\"fill\" href=\"https://www.nl.teng-shop.com/alle-producten/\" ><div class=\"fill banner-link\"></div></a>            \n\n   <div id=\"text-box-1749384372\" class=\"text-box banner-layer x50 md-x50 lg-x50 y50 md-y50 lg-y50 res-text\">\n                                <div class=\"text-box-content text dark\">\n              \n              <div class=\"text-inner text-center\">\n                  \n\n\n              </div>\n           </div>\n                            \n<style>\n#text-box-1749384372 {\n  width: 60%;\n}\n#text-box-1749384372 .text-box-content {\n  font-size: 100%;\n}\n@media (min-width:550px) {\n  #text-box-1749384372 {\n    width: 60%;\n  }\n}\n</style>\n    </div>\n \n\n        </div>\n      </div>\n\n            \n<style>\n#banner-1114154081 {\n  padding-top: 500px;\n}\n#banner-1114154081 .bg.bg-loaded {\n  background-image: url(https://www.nl.teng-shop.com/wp-content/uploads/2023/09/teng-shop-nl.png);\n}\n</style>\n  </div>\n\n\n	<div id=\"gap-934749070\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-934749070 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h1 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Teng Shop</span><b></b></h1></div>\n\n	<div id=\"text-2117060866\" class=\"text\">\n		\n\n<p style=\"text-align: center;\">Jij bent een fan van <strong>Azië</strong> en je wilt je decoratie veranderen, een typische Chinese traditionele kleding dragen of jezelf uitrusten met eetstokjes? Dan ben je hier aan het juiste adres! </p>\n<p style=\"text-align: center;\">Bij <strong>Teng Shop</strong> vind je de beste Chinese decoratie, kleding en accessoires! </p>\n<p style=\"text-align: center;\">Met onze grote verscheidenheid aan traditionele producten die rechtstreeks uit China worden geïmporteerd, kun je je levensstijl en je overtuigingen voor de <strong>Chinese cultuur</strong> benadrukken.</p>\n		\n<style>\n#text-2117060866 {\n  color: rgb(0,0,0);\n}\n#text-2117060866 > * {\n  color: rgb(0,0,0);\n}\n</style>\n	</div>\n	\n	<div id=\"gap-428854125\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-428854125 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  <div class=\"product-category col\" >\n            <div class=\"col-inner\">\n              <a aria-label=\"Productcategorie bekijken Chinese Jurken / Qipao\" href=\"https://www.nl.teng-shop.com/collections/chinese-jurken-qipao/\">                <div class=\"box box-category has-hover box-default \">\n                <div class=\"box-image\" >\n                  <div class=\"\" >\n                  <img fetchpriority=\"high\" decoding=\"async\" src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/11/chinese-dresses.jpg\" alt=\"Chinese Jurken / Qipao\" width=\"300\" height=\"300\" />                                                      </div>\n                </div>\n                <div class=\"box-text text-center dark\" style=\"background-color:rgb(223, 76, 24);\">\n                  <div class=\"box-text-inner\">\n                      <h5 class=\"uppercase header-title\">\n                              Chinese Jurken / Qipao                      </h5>\n                                            <p class=\"is-xsmall uppercase count \">\n	                      61 Producten                      </p>\n                                            \n                  </div>\n                </div>\n                </div>\n            </a>            </div>\n            </div><div class=\"product-category col\" >\n            <div class=\"col-inner\">\n              <a aria-label=\"Productcategorie bekijken Chinese Eetstokjes\" href=\"https://www.nl.teng-shop.com/collections/chinese-eetstokjes/\">                <div class=\"box box-category has-hover box-default \">\n                <div class=\"box-image\" >\n                  <div class=\"\" >\n                  <img class=\"lazy-load\" decoding=\"async\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/11/chinese-chopsticks.png\" alt=\"Chinese Eetstokjes\" width=\"300\" height=\"300\" />                                                      </div>\n                </div>\n                <div class=\"box-text text-center dark\" style=\"background-color:rgb(223, 76, 24);\">\n                  <div class=\"box-text-inner\">\n                      <h5 class=\"uppercase header-title\">\n                              Chinese Eetstokjes                      </h5>\n                                            <p class=\"is-xsmall uppercase count \">\n	                      31 Producten                      </p>\n                                            \n                  </div>\n                </div>\n                </div>\n            </a>            </div>\n            </div><div class=\"product-category col\" >\n            <div class=\"col-inner\">\n              <a aria-label=\"Productcategorie bekijken Chinese Lampionnen\" href=\"https://www.nl.teng-shop.com/collections/chinese-lampionnen/\">                <div class=\"box box-category has-hover box-default \">\n                <div class=\"box-image\" >\n                  <div class=\"\" >\n                  <img class=\"lazy-load\" decoding=\"async\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/11/chinese-lanterns.png\" alt=\"Chinese Lampionnen\" width=\"300\" height=\"300\" />                                                      </div>\n                </div>\n                <div class=\"box-text text-center dark\" style=\"background-color:rgb(223, 76, 24);\">\n                  <div class=\"box-text-inner\">\n                      <h5 class=\"uppercase header-title\">\n                              Chinese Lampionnen                      </h5>\n                                            <p class=\"is-xsmall uppercase count \">\n	                      75 Producten                      </p>\n                                            \n                  </div>\n                </div>\n                </div>\n            </a>            </div>\n            </div><div class=\"product-category col\" >\n            <div class=\"col-inner\">\n              <a aria-label=\"Productcategorie bekijken Hanfu\" href=\"https://www.nl.teng-shop.com/collections/hanfu/\">                <div class=\"box box-category has-hover box-default \">\n                <div class=\"box-image\" >\n                  <div class=\"\" >\n                  <img class=\"lazy-load\" decoding=\"async\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/03/hanfu-768x768.jpg\" alt=\"Hanfu\" width=\"300\" height=\"300\" />                                                      </div>\n                </div>\n                <div class=\"box-text text-center dark\" style=\"background-color:rgb(223, 76, 24);\">\n                  <div class=\"box-text-inner\">\n                      <h5 class=\"uppercase header-title\">\n                              Hanfu                      </h5>\n                                            <p class=\"is-xsmall uppercase count \">\n	                      50 Producten                      </p>\n                                            \n                  </div>\n                </div>\n                </div>\n            </a>            </div>\n            </div></div>\n\n	<div id=\"gap-875080908\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-875080908 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese beelden</span><b></b></h2></div>\n\n	<div id=\"gap-1075360025\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1075360025 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-5981 status-publish first instock product_cat-chinese-beelden product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinees-standbeeld-yoga-kikker/\" aria-label=\"Chinees Standbeeld Yoga Kikker\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"750\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20750%20750%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinees Standbeeld Yoga Kikker\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3.jpg 750w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3-100x100.jpg 100w\" sizes=\"(max-width: 750px) 100vw, 750px\" /><img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"750\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20750%20750%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinees Standbeeld Yoga Kikker\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2.jpg 750w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2-100x100.jpg 100w\" sizes=\"(max-width: 750px) 100vw, 750px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5981  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"5981\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5981,&quot;parent_product_id&quot;:5981,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=5981&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"5981\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"5981\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinees-standbeeld-yoga-kikker/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinees Standbeeld Yoga Kikker</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>28.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"5981\" data-gtm4wp_product_internal_id=\"5981\" data-gtm4wp_product_name=\"Chinees Standbeeld Yoga Kikker\" data-gtm4wp_product_price=\"28.99\" data-gtm4wp_product_cat=\"Chinese Beelden\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinees-standbeeld-yoga-kikker/\" data-gtm4wp_product_listposition=\"1\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-5958 status-publish instock product_cat-chinese-beelden product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-paarden-beeld/\" aria-label=\"Chinese Paarden Beeld Xinli\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"442\" height=\"442\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20442%20442%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Paarden Beeld Xinli\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli.jpg 442w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-100x100.jpg 100w\" sizes=\"(max-width: 442px) 100vw, 442px\" /><img loading=\"lazy\" decoding=\"async\" width=\"434\" height=\"450\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20434%20450%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Paarden Beeld Xinli\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-2.jpg 434w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-2-289x300.jpg 289w\" sizes=\"(max-width: 434px) 100vw, 434px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5958  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"5958\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5958,&quot;parent_product_id&quot;:5958,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=5958&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"5958\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"5958\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-paarden-beeld/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Paarden Beeld Xinli</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>84.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"5958\" data-gtm4wp_product_internal_id=\"5958\" data-gtm4wp_product_name=\"Chinese Paarden Beeld Xinli\" data-gtm4wp_product_price=\"84.99\" data-gtm4wp_product_cat=\"Chinese Beelden\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-paarden-beeld/\" data-gtm4wp_product_listposition=\"2\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-5983 status-publish last instock product_cat-chinese-beelden product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-keizer-beeld/\" aria-label=\"Chinese Keizer Beeld\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Keizer Beeld\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"630\" height=\"799\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20630%20799%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Keizer Beeld\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-2.jpg 630w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-2-237x300.jpg 237w\" sizes=\"(max-width: 630px) 100vw, 630px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5983  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"5983\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5983,&quot;parent_product_id&quot;:5983,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=5983&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"5983\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"5983\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-keizer-beeld/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Keizer Beeld</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>229.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"5983\" data-gtm4wp_product_internal_id=\"5983\" data-gtm4wp_product_name=\"Chinese Keizer Beeld\" data-gtm4wp_product_price=\"229.99\" data-gtm4wp_product_cat=\"Chinese Beelden\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-keizer-beeld/\" data-gtm4wp_product_listposition=\"3\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-5960 status-publish first instock product_cat-chinese-beelden product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinees-beeld-drakenbel/\" aria-label=\"Chinees Beeld Drakenbel\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinees Beeld Drakenbel\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2.jpg 1001w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinees Beeld Drakenbel\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel.jpg 1001w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5960  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"5960\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5960,&quot;parent_product_id&quot;:5960,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=5960&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"5960\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"5960\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinees-beeld-drakenbel/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinees Beeld Drakenbel</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>32.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"5960\" data-gtm4wp_product_internal_id=\"5960\" data-gtm4wp_product_name=\"Chinees Beeld Drakenbel\" data-gtm4wp_product_price=\"32.99\" data-gtm4wp_product_cat=\"Chinese Beelden\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinees-beeld-drakenbel/\" data-gtm4wp_product_listposition=\"4\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-1705754252\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1705754252 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese schilderijen</span><b></b></h2></div>\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-6300 status-publish instock product_cat-chinese-schilderijen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable has-default-attributes\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-schilderij-blauwe-draak/\" aria-label=\"Chinese Schilderij Blauwe Draak\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"775\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20775%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-768x775.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Schilderij Blauwe Draak - Green Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-768x775.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-297x300.jpg 297w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm.jpg 790w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"773\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20773%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-768x773.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Schilderij Blauwe Draak - Yellow Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-768x773.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-298x300.jpg 298w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm.jpg 792w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6300  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"6300\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6300,&quot;parent_product_id&quot;:6300,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=6300&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"6300\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"6300\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-schilderij-blauwe-draak/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Schilderij Blauwe Draak</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>54.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"6300\" data-gtm4wp_product_internal_id=\"6300\" data-gtm4wp_product_name=\"Chinese Schilderij Blauwe Draak\" data-gtm4wp_product_price=\"54.99\" data-gtm4wp_product_cat=\"Chinese Schilderijen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-schilderij-blauwe-draak/\" data-gtm4wp_product_listposition=\"5\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-6701 status-publish last instock product_cat-chinese-schilderijen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable has-default-attributes\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/typisch-chinees-schilderij/\" aria-label=\"Typisch Chinees Schilderij Jiangxin\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Typisch Chinees Schilderij Jiangxin - 60x80cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6701  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"6701\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6701,&quot;parent_product_id&quot;:6701,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=6701&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"6701\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"6701\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/typisch-chinees-schilderij/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Typisch Chinees Schilderij Jiangxin</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>13.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"6701\" data-gtm4wp_product_internal_id=\"6701\" data-gtm4wp_product_name=\"Typisch Chinees Schilderij Jiangxin\" data-gtm4wp_product_price=\"13.99\" data-gtm4wp_product_cat=\"Chinese Schilderijen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/typisch-chinees-schilderij/\" data-gtm4wp_product_listposition=\"6\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-6453 status-publish first instock product_cat-chinese-schilderijen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable has-default-attributes\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-krijgers-schilderij/\" aria-label=\"Chinese Krijgers Schilderij\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Krijgers Schilderij - Green Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Krijgers Schilderij - Yellow Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6453  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"6453\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6453,&quot;parent_product_id&quot;:6453,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=6453&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"6453\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"6453\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-krijgers-schilderij/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Krijgers Schilderij</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>54.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"6453\" data-gtm4wp_product_internal_id=\"6453\" data-gtm4wp_product_name=\"Chinese Krijgers Schilderij\" data-gtm4wp_product_price=\"54.99\" data-gtm4wp_product_cat=\"Chinese Schilderijen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-krijgers-schilderij/\" data-gtm4wp_product_listposition=\"7\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-6220 status-publish instock product_cat-chinese-schilderijen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable has-default-attributes\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-lotusbloem-schilderijen/\" aria-label=\"Chinese Lotusbloem Schilderijen\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"737\" height=\"762\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20737%20762%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-green-background-140cmx45cm.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Lotusbloem Schilderijen - Green Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-green-background-140cmx45cm.jpg 737w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-green-background-140cmx45cm-290x300.jpg 290w\" sizes=\"(max-width: 737px) 100vw, 737px\" /><img loading=\"lazy\" decoding=\"async\" width=\"737\" height=\"762\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20737%20762%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-yellow-background-140cmx45cm.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Lotusbloem Schilderijen - Yellow Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-yellow-background-140cmx45cm.jpg 737w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-yellow-background-140cmx45cm-290x300.jpg 290w\" sizes=\"(max-width: 737px) 100vw, 737px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6220  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"6220\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6220,&quot;parent_product_id&quot;:6220,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=6220&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"6220\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"6220\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-lotusbloem-schilderijen/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Lotusbloem Schilderijen</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>54.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"6220\" data-gtm4wp_product_internal_id=\"6220\" data-gtm4wp_product_name=\"Chinese Lotusbloem Schilderijen\" data-gtm4wp_product_price=\"54.99\" data-gtm4wp_product_cat=\"Chinese Schilderijen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-lotusbloem-schilderijen/\" data-gtm4wp_product_listposition=\"8\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-1680624709\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1680624709 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n	<section class=\"section\" id=\"section_116399696\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			<div class=\"section-bg-overlay absolute fill\"></div>\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row row-large align-middle\"  id=\"row-297766032\">\n\n\n	<div id=\"col-1344927801\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"img has-hover x md-x lg-x y md-y lg-y\" id=\"image_690673708\">\n								<div class=\"img-inner dark\" >\n			<img decoding=\"async\" width=\"1000\" height=\"681\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20681%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-handicraft.jpg\" class=\"lazy-load attachment-original size-original\" alt=\"Chinees handwerk\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-handicraft.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-handicraft-300x204.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-handicraft-768x523.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />						\n					</div>\n								\n<style>\n#image_690673708 {\n  width: 100%;\n}\n</style>\n	</div>\n	\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1287087087\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner text-left\"  >\n			\n			\n\n<h2>Een authentieke kennis</h2>\n<p>Bij Teng Shop maken we er een punt van om het beste te selecteren dat China te bieden heeft. Daarom werken we alleen met <strong>Chinese leveranciers</strong> en ambachtslieden wiens traditionele Chinese kennis wordt gerespecteerd.</p>\n<p>Bij ons vind je alle voorwerpen uit de Chinese cultuur zoals beelden, <strong>Qipao</strong> jurken, <strong>Tangzhuang</strong> jassen of eetstokjes. U zult zeker uw geluk vinden!</p>\n<a href=\"https://www.nl.teng-shop.com/over-ons/\" target=\"_blank\" class=\"button primary\" rel=\"noopener\"  >\n    <span>Bekijk onze producten</span>\n  </a>\n\n\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_116399696 {\n  padding-top: 60px;\n  padding-bottom: 60px;\n  background-color: rgb(246, 246, 246);\n}\n#section_116399696 .section-bg-overlay {\n  background-color: rgba(255, 255, 255, 0.85);\n}\n</style>\n	</section>\n	\n	<section class=\"section\" id=\"section_2034604216\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			<div class=\"section-bg-overlay absolute fill\"></div>\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row row-large align-middle\"  id=\"row-1726398566\">\n\n\n	<div id=\"col-148744541\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner text-left\"  >\n			\n			\n\n<h2>Chinese jassen / Tangzhuang</h2>\n<div>Op zoek naar een Tangzhuang? Dit zeer populaire Chinese kledingstuk biedt een zeer mooi alternatief voor onze westerse klederdracht.</div>\n<div>&nbsp;</div>\n<div>Of het nu voor een evenement is, een fotoshoot gerelateerd aan China, of gewoon omdat je van de Chinese cultuur houdt, met een Tangzhuang draag je met trots een historisch en typisch kledingstuk.</div>\n<div>&nbsp;</div>\n<div>In het kort, een stijlvol en verfijnd kledingstuk.</div>\n<div>&nbsp;</div>\n<a href=\"https://www.nl.teng-shop.com/collections/chinese-jas-mannen-tangzhuang/\" class=\"button primary\"  >\n    <span>Bekijk onze Tangzhuang</span>\n  </a>\n\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1284566418\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"img has-hover x md-x lg-x y md-y lg-y\" id=\"image_791595613\">\n								<div class=\"img-inner dark\" >\n			<img decoding=\"async\" width=\"1000\" height=\"681\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20681%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-jackets-tangzhuang-1.jpg\" class=\"lazy-load attachment-original size-original\" alt=\"Tangzhuang\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-jackets-tangzhuang-1.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-jackets-tangzhuang-1-300x204.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-jackets-tangzhuang-1-768x523.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />						\n					</div>\n								\n<style>\n#image_791595613 {\n  width: 100%;\n}\n</style>\n	</div>\n	\n\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_2034604216 {\n  padding-top: 60px;\n  padding-bottom: 60px;\n}\n#section_2034604216 .section-bg-overlay {\n  background-color: rgba(255, 255, 255, 0.85);\n}\n</style>\n	</section>\n	\n	<section class=\"section\" id=\"section_32004448\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			<div class=\"section-bg-overlay absolute fill\"></div>\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row row-large align-middle\"  id=\"row-1998673355\">\n\n\n	<div id=\"col-289539574\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"img has-hover x md-x lg-x y md-y lg-y\" id=\"image_52842527\">\n								<div class=\"img-inner dark\" >\n			<img decoding=\"async\" width=\"1000\" height=\"681\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20681%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-dresses.jpg\" class=\"lazy-load attachment-original size-original\" alt=\"Chinese jurken\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-dresses.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-dresses-300x204.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-dresses-768x523.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />						\n					</div>\n								\n<style>\n#image_52842527 {\n  width: 100%;\n}\n</style>\n	</div>\n	\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-2059375208\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner text-left\"  >\n			\n			\n\n<h2>Chinese jurken / Qipao</h2>\n<div>Dress erg populair bij westerse vrouwen die het elegant vinden en tegelijkertijd sexy en glamoureus, omdat het strak is en het figuur naar voren brengt.</div>\n<div>&nbsp;</div>\n<div>Het is zonder twijfel een van de meest traditionele kledingstukken van China en een van de mooiste stukken die je in je garderobe kunt hebben.</div>\n<div>&nbsp;</div>\n<div>Het combineert de tijdloze elegantie van de Chinese esthetiek met zeer opvallende en soms moderne elementen.</div>\n<div>&nbsp;</div>\n<a href=\"https://www.nl.teng-shop.com/collections/chinese-jurken-qipao/\" class=\"button primary\"  >\n    <span>Bekijk onze jurken</span>\n  </a>\n\n\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_32004448 {\n  padding-top: 60px;\n  padding-bottom: 60px;\n}\n#section_32004448 .section-bg-overlay {\n  background-color: rgba(255, 255, 255, 0.85);\n}\n</style>\n	</section>\n	\n\n	<div id=\"gap-759173563\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-759173563 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"font-size:undefined%;color:rgb(0, 0, 0);\">Chinees Blog</span><b></b></h2></div>\n\n\n  \n    <div class=\"row large-columns-3 medium-columns- small-columns-1 slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  <div class=\"col post-item\" data-animate=\"fadeInLeft\">\n			<div class=\"col-inner\">\n				<div class=\"box box-default box-text-bottom box-blog-post has-hover\">\n            					<div class=\"box-image\" >\n  						<div class=\"image-cover\" style=\"padding-top:56.25%;\">\n							<a href=\"https://www.nl.teng-shop.com/traditionele-chinese-kleding/\" class=\"plain\" aria-label=\"Traditionele Chinese Kleding\">\n								<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"666\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20666%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/traditionele-chinese-kleding.jpg\" class=\"lazy-load attachment-original size-original wp-post-image\" alt=\"Traditionele Chinese Kleding\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/traditionele-chinese-kleding.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/traditionele-chinese-kleding-300x200.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/traditionele-chinese-kleding-768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />							</a>\n  							  							  						</div>\n  						  					</div>\n          					<div class=\"box-text text-center\" >\n					<div class=\"box-text-inner blog-post-inner\">\n\n					\n											<p class=\"cat-label tag-label is-xxsmall op-7 uppercase\">\n					Traditionele Chinese Kleding 					</p>\n										<h5 class=\"post-title is-large \">\n						<a href=\"https://www.nl.teng-shop.com/traditionele-chinese-kleding/\" class=\"plain\">Traditionele Chinese Kleding</a>\n					</h5>\n										<div class=\"is-divider\"></div>\n										<p class=\"from_the_blog_excerpt \">\n											</p>\n					                    \n					\n					\n					</div>\n					</div>\n									</div>\n			</div>\n		</div><div class=\"col post-item\" data-animate=\"fadeInLeft\">\n			<div class=\"col-inner\">\n				<div class=\"box box-default box-text-bottom box-blog-post has-hover\">\n            					<div class=\"box-image\" >\n  						<div class=\"image-cover\" style=\"padding-top:56.25%;\">\n							<a href=\"https://www.nl.teng-shop.com/alles-over-de-chinese-qipao-jurk/\" class=\"plain\" aria-label=\"Alles over de Chinese Qipao-jurk\">\n								<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"666\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20666%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/alles-over-de-chinese-qipao-jurk.jpg\" class=\"lazy-load attachment-original size-original wp-post-image\" alt=\"Alles over de Chinese Qipao-jurk\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/alles-over-de-chinese-qipao-jurk.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/alles-over-de-chinese-qipao-jurk-300x200.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/alles-over-de-chinese-qipao-jurk-768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />							</a>\n  							  							  						</div>\n  						  					</div>\n          					<div class=\"box-text text-center\" >\n					<div class=\"box-text-inner blog-post-inner\">\n\n					\n											<p class=\"cat-label tag-label is-xxsmall op-7 uppercase\">\n					Traditionele Chinese Kleding 					</p>\n										<h5 class=\"post-title is-large \">\n						<a href=\"https://www.nl.teng-shop.com/alles-over-de-chinese-qipao-jurk/\" class=\"plain\">Alles over de Chinese Qipao-jurk</a>\n					</h5>\n										<div class=\"is-divider\"></div>\n										<p class=\"from_the_blog_excerpt \">\n											</p>\n					                    \n					\n					\n					</div>\n					</div>\n									</div>\n			</div>\n		</div><div class=\"col post-item\" data-animate=\"fadeInLeft\">\n			<div class=\"col-inner\">\n				<div class=\"box box-default box-text-bottom box-blog-post has-hover\">\n            					<div class=\"box-image\" >\n  						<div class=\"image-cover\" style=\"padding-top:56.25%;\">\n							<a href=\"https://www.nl.teng-shop.com/de-traditionele-chinese-kleding/\" class=\"plain\" aria-label=\"De Traditionele Chinese Jurk, een Modern Kledingstuk\">\n								<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"666\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20666%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/de-traditionele-chinese-jurk-een-modern-kledingstuk.jpg\" class=\"lazy-load attachment-original size-original wp-post-image\" alt=\"De Traditionele Chinese Jurk, een Modern Kledingstuk\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/de-traditionele-chinese-jurk-een-modern-kledingstuk.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/de-traditionele-chinese-jurk-een-modern-kledingstuk-300x200.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/de-traditionele-chinese-jurk-een-modern-kledingstuk-768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />							</a>\n  							  							  						</div>\n  						  					</div>\n          					<div class=\"box-text text-center\" >\n					<div class=\"box-text-inner blog-post-inner\">\n\n					\n											<p class=\"cat-label tag-label is-xxsmall op-7 uppercase\">\n					Chinese Cultuur 					</p>\n										<h5 class=\"post-title is-large \">\n						<a href=\"https://www.nl.teng-shop.com/de-traditionele-chinese-kleding/\" class=\"plain\">De Traditionele Chinese Jurk, een Modern Kledingstuk</a>\n					</h5>\n										<div class=\"is-divider\"></div>\n										<p class=\"from_the_blog_excerpt \">\n											</p>\n					                    \n					\n					\n					</div>\n					</div>\n									</div>\n			</div>\n		</div></div>\n\n	<div id=\"gap-634211486\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-634211486 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese parapluutjes</span><b></b></h2></div>\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-4013 status-publish last instock product_cat-chinese-accessoires product_cat-chinese-parapluutjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/traditionele-chinese-paraplu/\" aria-label=\"Traditionele Chinese Paraplu - Baifeng\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"640\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20640%20640%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Traditionele Chinese Paraplu - Baifeng\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng.jpg 640w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng-100x100.jpg 100w\" sizes=\"(max-width: 640px) 100vw, 640px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-4013  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"4013\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:4013,&quot;parent_product_id&quot;:4013,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=4013&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"4013\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"4013\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/traditionele-chinese-paraplu/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Traditionele Chinese Paraplu &#8211; Baifeng</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>32.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"4013\" data-gtm4wp_product_internal_id=\"4013\" data-gtm4wp_product_name=\"Traditionele Chinese Paraplu - Baifeng\" data-gtm4wp_product_price=\"32.99\" data-gtm4wp_product_cat=\"Chinese Parapluutjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/traditionele-chinese-paraplu/\" data-gtm4wp_product_listposition=\"9\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-4015 status-publish first instock product_cat-chinese-accessoires product_cat-chinese-parapluutjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/vegetatie-chinese-paraplu/\" aria-label=\"Vegetatie Chinese Paraplu - Xiangruo\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"640\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20640%20640%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Vegetatie Chinese Paraplu - Xiangruo\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo.jpg 640w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-100x100.jpg 100w\" sizes=\"(max-width: 640px) 100vw, 640px\" /><img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"500\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20500%20500%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo.png\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Vegetatie Chinese Paraplu - Xiangruo\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo.png 500w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-300x300.png 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-150x150.png 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-4015  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"4015\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:4015,&quot;parent_product_id&quot;:4015,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=4015&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"4015\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"4015\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/vegetatie-chinese-paraplu/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Vegetatie Chinese Paraplu &#8211; Xiangruo</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>36.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"4015\" data-gtm4wp_product_internal_id=\"4015\" data-gtm4wp_product_name=\"Vegetatie Chinese Paraplu - Xiangruo\" data-gtm4wp_product_price=\"36.99\" data-gtm4wp_product_cat=\"Chinese Parapluutjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/vegetatie-chinese-paraplu/\" data-gtm4wp_product_listposition=\"10\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-4000 status-publish instock product_cat-chinese-accessoires product_cat-chinese-parapluutjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/zijden-chinese-paraplu/\" aria-label=\"Zijden Chinese Paraplu - Siyun\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"765\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20765%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-768x765.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Zijden Chinese Paraplu - Siyun\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-768x765.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun.jpg 892w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"392\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20392%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Zijden Chinese Paraplu - Siyun\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-2.jpg 400w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-2-300x294.jpg 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-4000  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"4000\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:4000,&quot;parent_product_id&quot;:4000,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=4000&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"4000\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"4000\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/zijden-chinese-paraplu/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Zijden Chinese Paraplu &#8211; Siyun</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>33.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"4000\" data-gtm4wp_product_internal_id=\"4000\" data-gtm4wp_product_name=\"Zijden Chinese Paraplu - Siyun\" data-gtm4wp_product_price=\"33.99\" data-gtm4wp_product_cat=\"Chinese Parapluutjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/zijden-chinese-paraplu/\" data-gtm4wp_product_listposition=\"11\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-4001 status-publish last instock product_cat-chinese-accessoires product_cat-chinese-parapluutjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/stoffen-chinese-paraplu/\" aria-label=\"Stoffen Chinese Paraplu - Shengxin\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20400%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Stoffen Chinese Paraplu - Shengxin\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin.jpg 400w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin-100x100.jpg 100w\" sizes=\"(max-width: 400px) 100vw, 400px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-4001  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"4001\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:4001,&quot;parent_product_id&quot;:4001,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=4001&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"4001\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"4001\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/stoffen-chinese-paraplu/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Stoffen Chinese Paraplu &#8211; Shengxin</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>54.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"4001\" data-gtm4wp_product_internal_id=\"4001\" data-gtm4wp_product_name=\"Stoffen Chinese Paraplu - Shengxin\" data-gtm4wp_product_price=\"54.99\" data-gtm4wp_product_cat=\"Chinese Parapluutjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/stoffen-chinese-paraplu/\" data-gtm4wp_product_listposition=\"12\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-222619641\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-222619641 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese lampions</span><b></b></h2></div>\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-3931 status-publish first instock product_cat-chinese-lampionnen product_cat-chinese-versiering product_tag-papier has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen/\" aria-label=\"Set Witte Chinese Papieren Lampionnen\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Set Witte Chinese Papieren Lampionnen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"785\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20785%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm-768x785.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Set Witte Chinese Papieren Lampionnen - 40cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm-768x785.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm-293x300.jpg 293w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm-1001x1024.jpg 1001w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm.jpg 1467w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-3931  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"3931\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:3931,&quot;parent_product_id&quot;:3931,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=3931&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"3931\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"3931\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Set Witte Chinese Papieren Lampionnen</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>16.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"3931\" data-gtm4wp_product_internal_id=\"3931\" data-gtm4wp_product_name=\"Set Witte Chinese Papieren Lampionnen\" data-gtm4wp_product_price=\"16.99\" data-gtm4wp_product_cat=\"Chinese Lampionnen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen/\" data-gtm4wp_product_listposition=\"13\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-3914 status-publish instock product_cat-chinese-lampionnen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/rode-chinese-lampionnen/\" aria-label=\"Rode Chinese Lampionnen\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Rode Chinese Lampionnen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"760\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20760%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3-768x760.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Rode Chinese Lampionnen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3-768x760.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3-300x297.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3.jpg 770w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-3914  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"3914\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:3914,&quot;parent_product_id&quot;:3914,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=3914&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"3914\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"3914\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/rode-chinese-lampionnen/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Rode Chinese Lampionnen</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>52.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"3914\" data-gtm4wp_product_internal_id=\"3914\" data-gtm4wp_product_name=\"Rode Chinese Lampionnen\" data-gtm4wp_product_price=\"52.99\" data-gtm4wp_product_cat=\"Chinese Lampionnen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/rode-chinese-lampionnen/\" data-gtm4wp_product_listposition=\"14\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-3916 status-publish last instock product_cat-chinese-lampionnen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-lantaarns/\" aria-label=\"Chinese Trouwlantaarns - Xianqin\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Trouwlantaarns - Xianqin\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Trouwlantaarns - Xianqin\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-3916  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"3916\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:3916,&quot;parent_product_id&quot;:3916,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=3916&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"3916\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"3916\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-lantaarns/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Trouwlantaarns &#8211; Xianqin</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>49.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"3916\" data-gtm4wp_product_internal_id=\"3916\" data-gtm4wp_product_name=\"Chinese Trouwlantaarns - Xianqin\" data-gtm4wp_product_price=\"49.99\" data-gtm4wp_product_cat=\"Chinese Lampionnen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-lantaarns/\" data-gtm4wp_product_listposition=\"15\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-3906 status-publish first instock product_cat-chinese-lampionnen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen-10-cm/\" aria-label=\"Paarse Chinese Papieren Lampionnen 10 Cm\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"640\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20640%20640%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Paarse Chinese Papieren Lampionnen 10 Cm - 40cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm.jpg 640w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm-100x100.jpg 100w\" sizes=\"(max-width: 640px) 100vw, 640px\" /><img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"750\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20750%20750%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Paarse Chinese Papieren Lampionnen 10 Cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm.jpg 750w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-100x100.jpg 100w\" sizes=\"(max-width: 750px) 100vw, 750px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-3906  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"3906\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:3906,&quot;parent_product_id&quot;:3906,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=3906&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"3906\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"3906\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen-10-cm/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Paarse Chinese Papieren Lampionnen 10 Cm</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>12.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"3906\" data-gtm4wp_product_internal_id=\"3906\" data-gtm4wp_product_name=\"Paarse Chinese Papieren Lampionnen 10 Cm\" data-gtm4wp_product_price=\"12.99\" data-gtm4wp_product_cat=\"Chinese Lampionnen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen-10-cm/\" data-gtm4wp_product_listposition=\"16\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-1227931707\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1227931707 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Teng Shop, de Chinese winkel in dienst van je passie!</span><b></b></h2></div>\n\n	<div id=\"text-1824305956\" class=\"text\">\n		\n\n<div style=\"text-align: center;\">Als je zover bent gekomen, ben je waarschijnlijk een grote fan van <strong>China</strong> en/of Azië in het algemeen en van alles wat met deze <strong>cultuur</strong> te maken heeft. Daarom hebben we honderden producten voor je geselecteerd.</div>\n<div style=\"text-align: center;\">&nbsp;</div>\n<div style=\"text-align: center;\">Hier kun je de beste producten kopen tegen de beste prijs en met de beste kwaliteit:</div>\n<div style=\"text-align: center;\">&nbsp;</div>\n<div style=\"text-align: center;\">Lantaarns, Hanfu, Eetstokjes, Jassen en meer gebaseerd op en geïnspireerd door echte alledaagse Chinese voorwerpen.</div>\n<div style=\"text-align: center;\">&nbsp;</div>\n<div style=\"text-align: center;\">U vindt een zeer grote categorie traditionele <strong>Chinese producten</strong> direct vanuit uw huis.</div>\n<div style=\"text-align: center;\">&nbsp;</div>\n<div style=\"text-align: center;\">Met slechts een paar klikken is het de makkelijkste en handigste manier om veilig te kopen.</div>\n		\n<style>\n#text-1824305956 {\n  color: rgb(0,0,0);\n}\n#text-1824305956 > * {\n  color: rgb(0,0,0);\n}\n</style>\n	</div>\n	\n	<div id=\"gap-623023996\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-623023996 {\n  padding-top: 60px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese eetstokjes</span><b></b></h2></div>\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-2799 status-publish instock product_cat-chinese-eetstokjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/eetstokjes-herbruikbaar/\" aria-label=\"Rode Chinese Eetstokjes Herbruikbaar\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"640\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20640%20640%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Rode Chinese Eetstokjes Herbruikbaar\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar.jpg 640w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-100x100.jpg 100w\" sizes=\"(max-width: 640px) 100vw, 640px\" /><img loading=\"lazy\" decoding=\"async\" width=\"670\" height=\"895\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20670%20895%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Rode Chinese Eetstokjes Herbruikbaar\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-2.jpg 670w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-2-225x300.jpg 225w\" sizes=\"(max-width: 670px) 100vw, 670px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-2799  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"2799\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:2799,&quot;parent_product_id&quot;:2799,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=2799&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"2799\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"2799\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/eetstokjes-herbruikbaar/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Rode Chinese Eetstokjes Herbruikbaar</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>19.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"2799\" data-gtm4wp_product_internal_id=\"2799\" data-gtm4wp_product_name=\"Rode Chinese Eetstokjes Herbruikbaar\" data-gtm4wp_product_price=\"19.99\" data-gtm4wp_product_cat=\"Chinese Eetstokjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/eetstokjes-herbruikbaar/\" data-gtm4wp_product_listposition=\"17\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-2791 status-publish last instock product_cat-chinese-eetstokjes has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-lente-eetstokjes/\" aria-label=\"Chinese Lente Eetstokjes - Heibai\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Lente Eetstokjes - Heibai\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Lente Eetstokjes - Heibai\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-2791  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"2791\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:2791,&quot;parent_product_id&quot;:2791,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=2791&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"2791\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"2791\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-lente-eetstokjes/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Lente Eetstokjes &#8211; Heibai</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>17.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"2791\" data-gtm4wp_product_internal_id=\"2791\" data-gtm4wp_product_name=\"Chinese Lente Eetstokjes - Heibai\" data-gtm4wp_product_price=\"17.99\" data-gtm4wp_product_cat=\"Chinese Eetstokjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-lente-eetstokjes/\" data-gtm4wp_product_listposition=\"18\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-2797 status-publish first instock product_cat-chinese-eetstokjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/herbruikbare-chinese-eetstokjes/\" aria-label=\"Herbruikbare Chinese Eetstokjes - Jiangshou\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Herbruikbare Chinese Eetstokjes - Jiangshou\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Herbruikbare Chinese Eetstokjes - Jiangshou\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-1024x1024.jpg 1024w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-1536x1536.jpg 1536w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2.jpg 1600w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-2797  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"2797\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:2797,&quot;parent_product_id&quot;:2797,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=2797&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"2797\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"2797\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/herbruikbare-chinese-eetstokjes/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Herbruikbare Chinese Eetstokjes &#8211; Jiangshou</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>22.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"2797\" data-gtm4wp_product_internal_id=\"2797\" data-gtm4wp_product_name=\"Herbruikbare Chinese Eetstokjes - Jiangshou\" data-gtm4wp_product_price=\"22.99\" data-gtm4wp_product_cat=\"Chinese Eetstokjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/herbruikbare-chinese-eetstokjes/\" data-gtm4wp_product_listposition=\"19\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-2786 status-publish instock product_cat-chinese-eetstokjes has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-eetstokjes-voor-kinderen/\" aria-label=\"Chinese Eetstokjes voor Kinderen\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Eetstokjes voor Kinderen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Eetstokjes voor Kinderen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-2786  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"2786\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:2786,&quot;parent_product_id&quot;:2786,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=2786&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"2786\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"2786\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-eetstokjes-voor-kinderen/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Eetstokjes voor Kinderen</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>11.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"2786\" data-gtm4wp_product_internal_id=\"2786\" data-gtm4wp_product_name=\"Chinese Eetstokjes voor Kinderen\" data-gtm4wp_product_price=\"11.99\" data-gtm4wp_product_cat=\"Chinese Eetstokjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-eetstokjes-voor-kinderen/\" data-gtm4wp_product_listposition=\"20\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-1804701370\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1804701370 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n\n\n			\n		\n</div>\n\n\n\n</main>\n\n<footer id=\"footer\" class=\"footer-wrapper\">\n\n		<section class=\"section\" id=\"section_364845478\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row\"  id=\"row-1607982974\">\n\n\n	<div id=\"col-967335295\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"box has-hover   has-hover box-text-bottom\" >\n\n		<div class=\"box-image\" style=\"width:25%;\">\n						<div class=\"\" >\n				<img src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/free-shipping.svg\" class=\"attachment- size-\" alt=\"Free Shipping\" decoding=\"async\" loading=\"lazy\" />											</div>\n					</div>\n\n		<div class=\"box-text text-center\" >\n			<div class=\"box-text-inner\">\n				\n\n<div class=\"custom-title\">GRATIS LEVERING VANAF 70€</div>\n<p>In Europa en de rest van de wereld</p>\n\n\n			</div>\n		</div>\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1563541183\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"box has-hover   has-hover box-text-bottom\" >\n\n		<div class=\"box-image\" style=\"width:25%;\">\n						<div class=\"\" >\n				<img src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/secure-payment.svg\" class=\"attachment- size-\" alt=\"Secure Payment\" decoding=\"async\" loading=\"lazy\" />											</div>\n					</div>\n\n		<div class=\"box-text text-center\" >\n			<div class=\"box-text-inner\">\n				\n\n<div class=\"custom-title\">VEILIGE BETALING</div>\n<p>VISA, Mastercard, American Express</p>\n\n\n			</div>\n		</div>\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1451092365\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"box has-hover   has-hover box-text-bottom\" >\n\n		<div class=\"box-image\" style=\"width:25%;\">\n						<div class=\"\" >\n				<img width=\"264\" height=\"234\" src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/customer-service.png\" class=\"attachment- size-\" alt=\"customer service\" decoding=\"async\" loading=\"lazy\" />											</div>\n					</div>\n\n		<div class=\"box-text text-center\" style=\"padding:15px 0px 0px 0px;\">\n			<div class=\"box-text-inner\">\n				\n\n<div class=\"custom-title\">KLANTENSERVICE</div>\n<p>Altijd beschikbaar om je te helpen.</p>\n\n\n			</div>\n		</div>\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1194882475\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"box has-hover   has-hover box-text-bottom\" >\n\n		<div class=\"box-image\" style=\"width:25%;\">\n						<div class=\"\" >\n				<img src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/satisfied-or-refunded.svg\" class=\"attachment- size-\" alt=\"Satisfied or refunded\" decoding=\"async\" loading=\"lazy\" />											</div>\n					</div>\n\n		<div class=\"box-text text-center\" style=\"padding:9px 0px 0px 0px;\">\n			<div class=\"box-text-inner\">\n				\n\n<div class=\"custom-title\">TEVREDEN OF TERUGBETAALD</div>\n<p>15 dagen lang</p>\n\n\n			</div>\n		</div>\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_364845478 {\n  padding-top: 30px;\n  padding-bottom: 30px;\n}\n</style>\n	</section>\n	\n	<section class=\"section\" id=\"section_98755271\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row\"  id=\"row-613076177\">\n\n\n	<div id=\"col-1954678707\" class=\"col medium-1 small-12 large-1\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-594441669\" class=\"col medium-2 small-12 large-2\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n<div class=\"ux-logo has-hover align-middle ux_logo inline-block\" style=\"max-width: 100%!important; width: 190.81081081081px!important\"><div class=\"ux-logo-link block image-\" title=\"\" href=\"\" style=\"padding: 15px;\"><img src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\" title=\"\" alt=\"\" class=\"ux-logo-image block\" style=\"height:50px;\" /></div></div>\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-2037037197\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div id=\"text-116026321\" class=\"text\">\n		\n\n<div class=\"footer-title\">Informatie</div>\n\n		\n<style>\n#text-116026321 {\n  text-align: left;\n}\n</style>\n	</div>\n	\n	<div class=\"ux-menu stack stack-col justify-start\">\n		\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/over-ons/\" >\n						<span class=\"ux-menu-link__text\">\n				Wie zijn wij?			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/algemene-verkoopvoorwaarden/\" >\n						<span class=\"ux-menu-link__text\">\n				Algemene voorwaarden			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/terugbetalingen-retouren/\" >\n						<span class=\"ux-menu-link__text\">\n				Retourneren en terugbetalen			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/privacybeleid/\" >\n						<span class=\"ux-menu-link__text\">\n				Privacybeleid			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/verzendbeleid/\" >\n						<span class=\"ux-menu-link__text\">\n				Verzendbeleid			</span>\n		</a>\n	</div>\n	\n\n\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-12682576\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div id=\"text-4163158564\" class=\"text\">\n		\n\n<div class=\"footer-title\">Hulp nodig?</div>\n\n		\n<style>\n#text-4163158564 {\n  text-align: left;\n}\n</style>\n	</div>\n	\n	<div class=\"ux-menu stack stack-col justify-start\">\n		\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/contacteer-ons/\" >\n						<span class=\"ux-menu-link__text\">\n				Contact &amp; Ondersteuning			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/vaak-gestelde-vragen-antwoorden/\" >\n						<span class=\"ux-menu-link__text\">\n				Veelgestelde vragen (FAQ)			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/je-bestelling-volgen/\" >\n						<span class=\"ux-menu-link__text\">\n				Bestelling volgen			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/chinees-blog/\" >\n						<span class=\"ux-menu-link__text\">\n				Blog			</span>\n		</a>\n	</div>\n	\n\n\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-341679500\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div id=\"text-347276282\" class=\"text\">\n		\n\n<div class=\"large-footer-title\">Ontvang tot 25% korting</div>\n\n		\n<style>\n#text-347276282 {\n  font-size: 1.45rem;\n}\n</style>\n	</div>\n	\n<p>door je aan te melden voor onze nieuwsbrief!</p>\n\n\n\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f9292-o1\" lang=\"fr-FR\" dir=\"ltr\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul></div>\n<form action=\"/#wpcf7-f9292-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Formulaire de contact\" novalidate=\"novalidate\" data-status=\"init\">\n<div style=\"display: none;\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"9292\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"fr_FR\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f9292-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n</div>\n<div class=\"form-flat\">\n	<p><span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Uw e-mail\" value=\"\" type=\"email\" name=\"your-email\" /></span><br />\n<input class=\"wpcf7-form-control wpcf7-submit has-spinner button\" type=\"submit\" value=\"Aanmelden\" />\n	</p>\n</div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"></div>\n</form>\n</div>\n\n\n	<div id=\"gap-376727114\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-376727114 {\n  padding-top: 20px;\n}\n</style>\n	</div>\n	\n\n<div class=\"social-icons follow-icons\" ><a href=\"https://www.facebook.com/sharer.php?u=https://www.nl.teng-shop.com/\" target=\"_blank\" data-label=\"Facebook\" class=\"icon button circle is-outline facebook tooltip\" title=\"Volg ons op Facebook\" aria-label=\"Volg ons op Facebook\" rel=\"noopener nofollow\" ><i class=\"icon-facebook\" ></i></a><a href=\"https://twitter.com/share?url=https://www.nl.teng-shop.com/\" data-label=\"Twitter\" target=\"_blank\" class=\"icon button circle is-outline twitter tooltip\" title=\"Volg ons op Twitter\" aria-label=\"Volg ons op Twitter\" rel=\"noopener nofollow\" ><i class=\"icon-twitter\" ></i></a><a href=\"mailto:enteryour@addresshere.com\" data-label=\"E-mail\" target=\"_blank\" class=\"icon button circle is-outline email tooltip\" title=\"Stuur ons een e-mail\" aria-label=\"Stuur ons een e-mail\" rel=\"nofollow noopener\" ><i class=\"icon-envelop\" ></i></a><a href=\"https://pinterest.com/pin/create/button/?url=https://www.nl.teng-shop.com/&amp;media=&amp;description=Teng Shop\" data-label=\"Pinterest\" target=\"_blank\" class=\"icon button circle is-outline pinterest tooltip\" title=\"Volg ons op Pinterest\" aria-label=\"Volg ons op Pinterest\" rel=\"noopener nofollow\" ><i class=\"icon-pinterest\" ></i></a><a href=\"https://www.linkedin.com/shareArticle?mini=true&amp;url=https://www.nl.teng-shop.com/&amp;title=Teng Shop\" data-label=\"LinkedIn\" target=\"_blank\" class=\"icon button circle is-outline linkedin tooltip\" title=\"Volg ons op LinkedIn\" aria-label=\"Volg ons op LinkedIn\" rel=\"noopener nofollow\" ><i class=\"icon-linkedin\" ></i></a></div>\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1841031270\" class=\"col medium-1 small-12 large-1\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_98755271 {\n  padding-top: 30px;\n  padding-bottom: 30px;\n}\n</style>\n	</section>\n	\n<div class=\"absolute-footer dark medium-text-center small-text-center\">\n  <div class=\"container clearfix\">\n\n          <div class=\"footer-secondary pull-right\">\n                <div class=\"payment-icons inline-block\"><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M10.781 7.688c-0.251-1.283-1.219-1.688-2.344-1.688h-8.376l-0.061 0.405c5.749 1.469 10.469 4.595 12.595 10.501l-1.813-9.219zM13.125 19.688l-0.531-2.781c-1.096-2.907-3.752-5.594-6.752-6.813l4.219 15.939h5.469l8.157-20.032h-5.501l-5.062 13.688zM27.72 26.061l3.248-20.061h-5.187l-3.251 20.061h5.189zM41.875 5.656c-5.125 0-8.717 2.72-8.749 6.624-0.032 2.877 2.563 4.469 4.531 5.439 2.032 0.968 2.688 1.624 2.688 2.499 0 1.344-1.624 1.939-3.093 1.939-2.093 0-3.219-0.251-4.875-1.032l-0.688-0.344-0.719 4.499c1.219 0.563 3.437 1.064 5.781 1.064 5.437 0.032 8.97-2.688 9.032-6.843 0-2.282-1.405-4-4.376-5.439-1.811-0.904-2.904-1.563-2.904-2.499 0-0.843 0.936-1.72 2.968-1.72 1.688-0.029 2.936 0.314 3.875 0.752l0.469 0.248 0.717-4.344c-1.032-0.406-2.656-0.844-4.656-0.844zM55.813 6c-1.251 0-2.189 0.376-2.72 1.688l-7.688 18.374h5.437c0.877-2.467 1.096-3 1.096-3 0.592 0 5.875 0 6.624 0 0 0 0.157 0.688 0.624 3h4.813l-4.187-20.061h-4zM53.405 18.938c0 0 0.437-1.157 2.064-5.594-0.032 0.032 0.437-1.157 0.688-1.907l0.374 1.72c0.968 4.781 1.189 5.781 1.189 5.781-0.813 0-3.283 0-4.315 0z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M7.114 14.656c-1.375-0.5-2.125-0.906-2.125-1.531 0-0.531 0.437-0.812 1.188-0.812 1.437 0 2.875 0.531 3.875 1.031l0.563-3.5c-0.781-0.375-2.406-1-4.656-1-1.594 0-2.906 0.406-3.844 1.188-1 0.812-1.5 2-1.5 3.406 0 2.563 1.563 3.688 4.125 4.594 1.625 0.594 2.188 1 2.188 1.656 0 0.625-0.531 0.969-1.5 0.969-1.188 0-3.156-0.594-4.437-1.343l-0.563 3.531c1.094 0.625 3.125 1.281 5.25 1.281 1.688 0 3.063-0.406 4.031-1.157 1.063-0.843 1.594-2.062 1.594-3.656-0.001-2.625-1.595-3.719-4.188-4.657zM21.114 9.125h-3v-4.219l-4.031 0.656-0.563 3.563-1.437 0.25-0.531 3.219h1.937v6.844c0 1.781 0.469 3 1.375 3.75 0.781 0.625 1.907 0.938 3.469 0.938 1.219 0 1.937-0.219 2.468-0.344v-3.688c-0.282 0.063-0.938 0.22-1.375 0.22-0.906 0-1.313-0.5-1.313-1.563v-6.156h2.406l0.595-3.469zM30.396 9.031c-0.313-0.062-0.594-0.093-0.876-0.093-1.312 0-2.374 0.687-2.781 1.937l-0.313-1.75h-4.093v14.719h4.687v-9.563c0.594-0.719 1.437-0.968 2.563-0.968 0.25 0 0.5 0 0.812 0.062v-4.344zM33.895 2.719c-1.375 0-2.468 1.094-2.468 2.469s1.094 2.5 2.468 2.5 2.469-1.124 2.469-2.5-1.094-2.469-2.469-2.469zM36.239 23.844v-14.719h-4.687v14.719h4.687zM49.583 10.468c-0.843-1.094-2-1.625-3.469-1.625-1.343 0-2.531 0.563-3.656 1.75l-0.25-1.469h-4.125v20.155l4.688-0.781v-4.719c0.719 0.219 1.469 0.344 2.125 0.344 1.157 0 2.876-0.313 4.188-1.75 1.281-1.375 1.907-3.5 1.907-6.313 0-2.499-0.469-4.405-1.407-5.593zM45.677 19.532c-0.375 0.687-0.969 1.094-1.625 1.094-0.468 0-0.906-0.093-1.281-0.281v-7c0.812-0.844 1.531-0.938 1.781-0.938 1.188 0 1.781 1.313 1.781 3.812 0.001 1.437-0.219 2.531-0.656 3.313zM62.927 10.843c-1.032-1.312-2.563-2-4.501-2-4 0-6.468 2.938-6.468 7.688 0 2.625 0.656 4.625 1.968 5.875 1.157 1.157 2.844 1.719 5.032 1.719 2 0 3.844-0.469 5-1.251l-0.501-3.219c-1.157 0.625-2.5 0.969-4 0.969-0.906 0-1.532-0.188-1.969-0.594-0.5-0.406-0.781-1.094-0.875-2.062h7.75c0.031-0.219 0.062-1.281 0.062-1.625 0.001-2.344-0.5-4.188-1.499-5.5zM56.583 15.094c0.125-2.093 0.687-3.062 1.75-3.062s1.625 1 1.687 3.062h-3.437z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M42.667-0c-4.099 0-7.836 1.543-10.667 4.077-2.831-2.534-6.568-4.077-10.667-4.077-8.836 0-16 7.163-16 16s7.164 16 16 16c4.099 0 7.835-1.543 10.667-4.077 2.831 2.534 6.568 4.077 10.667 4.077 8.837 0 16-7.163 16-16s-7.163-16-16-16zM11.934 19.828l0.924-5.809-2.112 5.809h-1.188v-5.809l-1.056 5.809h-1.584l1.32-7.657h2.376v4.753l1.716-4.753h2.508l-1.32 7.657h-1.585zM19.327 18.244c-0.088 0.528-0.178 0.924-0.264 1.188v0.396h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.364-0.66 2.244-0.66h0.66v-0.396c0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0.086-0.351 0.175-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.244 0.616 2.244 1.848 0 0.353-0.046 0.749-0.132 1.188-0.089 0.616-0.179 1.188-0.264 1.716zM24.079 15.076c-0.264-0.086-0.66-0.132-1.188-0.132s-0.792 0.177-0.792 0.528c0 0.177 0.044 0.31 0.132 0.396l0.528 0.264c0.792 0.442 1.188 1.012 1.188 1.716 0 1.409-0.838 2.112-2.508 2.112-0.792 0-1.366-0.044-1.716-0.132 0.086-0.351 0.175-0.836 0.264-1.452 0.703 0.177 1.188 0.264 1.452 0.264 0.614 0 0.924-0.175 0.924-0.528 0-0.175-0.046-0.308-0.132-0.396-0.178-0.175-0.396-0.308-0.66-0.396-0.792-0.351-1.188-0.924-1.188-1.716 0-1.407 0.792-2.112 2.376-2.112 0.792 0 1.32 0.045 1.584 0.132l-0.265 1.451zM27.512 15.208h-0.924c0 0.442-0.046 0.838-0.132 1.188 0 0.088-0.022 0.264-0.066 0.528-0.046 0.264-0.112 0.442-0.198 0.528v0.528c0 0.353 0.175 0.528 0.528 0.528 0.175 0 0.35-0.044 0.528-0.132l-0.264 1.452c-0.264 0.088-0.66 0.132-1.188 0.132-0.881 0-1.32-0.44-1.32-1.32 0-0.528 0.086-1.099 0.264-1.716l0.66-4.225h1.584l-0.132 0.924h0.792l-0.132 1.585zM32.66 17.32h-3.3c0 0.442 0.086 0.749 0.264 0.924 0.264 0.264 0.66 0.396 1.188 0.396s1.1-0.175 1.716-0.528l-0.264 1.584c-0.442 0.177-1.012 0.264-1.716 0.264-1.848 0-2.772-0.924-2.772-2.773 0-1.142 0.264-2.024 0.792-2.64 0.528-0.703 1.188-1.056 1.98-1.056 0.703 0 1.274 0.22 1.716 0.66 0.35 0.353 0.528 0.881 0.528 1.584 0.001 0.617-0.046 1.145-0.132 1.585zM35.3 16.132c-0.264 0.97-0.484 2.201-0.66 3.697h-1.716l0.132-0.396c0.35-2.463 0.614-4.4 0.792-5.809h1.584l-0.132 0.924c0.264-0.44 0.528-0.703 0.792-0.792 0.264-0.264 0.528-0.308 0.792-0.132-0.088 0.088-0.31 0.706-0.66 1.848-0.353-0.086-0.661 0.132-0.925 0.66zM41.241 19.697c-0.353 0.177-0.838 0.264-1.452 0.264-0.881 0-1.584-0.308-2.112-0.924-0.528-0.528-0.792-1.32-0.792-2.376 0-1.32 0.35-2.42 1.056-3.3 0.614-0.879 1.496-1.32 2.64-1.32 0.44 0 1.056 0.132 1.848 0.396l-0.264 1.584c-0.528-0.264-1.012-0.396-1.452-0.396-0.707 0-1.235 0.264-1.584 0.792-0.353 0.442-0.528 1.144-0.528 2.112 0 0.616 0.132 1.056 0.396 1.32 0.264 0.353 0.614 0.528 1.056 0.528 0.44 0 0.924-0.132 1.452-0.396l-0.264 1.717zM47.115 15.868c-0.046 0.264-0.066 0.484-0.066 0.66-0.088 0.442-0.178 1.035-0.264 1.782-0.088 0.749-0.178 1.254-0.264 1.518h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.32-0.66 2.112-0.66h0.66c0.086-0.086 0.132-0.218 0.132-0.396 0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0-0.351 0.086-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.245 0.616 2.245 1.848 0.001 0.089-0.021 0.264-0.065 0.529zM49.69 16.132c-0.178 0.528-0.396 1.762-0.66 3.697h-1.716l0.132-0.396c0.35-1.935 0.614-3.872 0.792-5.809h1.584c0 0.353-0.046 0.66-0.132 0.924 0.264-0.44 0.528-0.703 0.792-0.792 0.35-0.175 0.614-0.218 0.792-0.132-0.353 0.442-0.574 1.056-0.66 1.848-0.353-0.086-0.66 0.132-0.925 0.66zM54.178 19.828l0.132-0.528c-0.353 0.442-0.838 0.66-1.452 0.66-0.707 0-1.188-0.218-1.452-0.66-0.442-0.614-0.66-1.232-0.66-1.848 0-1.142 0.308-2.067 0.924-2.773 0.44-0.703 1.056-1.056 1.848-1.056 0.528 0 1.056 0.264 1.584 0.792l0.264-2.244h1.716l-1.32 7.657h-1.585zM16.159 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.397c-0.881 0-1.32 0.31-1.32 0.924zM31.076 15.076c-0.088 0-0.178-0.043-0.264-0.132h-0.264c-0.528 0-0.881 0.353-1.056 1.056h1.848v-0.396l-0.132-0.264c-0.001-0.086-0.047-0.175-0.133-0.264zM43.617 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.396c-0.881 0-1.32 0.31-1.32 0.924zM53.782 15.076c-0.353 0-0.66 0.22-0.924 0.66-0.178 0.264-0.264 0.749-0.264 1.452 0 0.792 0.264 1.188 0.792 1.188 0.35 0 0.66-0.175 0.924-0.528 0.264-0.351 0.396-0.879 0.396-1.584-0.001-0.792-0.311-1.188-0.925-1.188z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M16.398 13.428c0.034 3.535 3.201 4.71 3.236 4.726-0.027 0.083-0.506 1.676-1.668 3.322-1.005 1.423-2.048 2.84-3.692 2.87-1.615 0.029-2.134-0.927-3.98-0.927s-2.422 0.898-3.951 0.956c-1.586 0.058-2.794-1.539-3.807-2.956-2.070-2.9-3.653-8.194-1.528-11.768 1.055-1.775 2.942-2.899 4.989-2.927 1.558-0.029 3.027 1.015 3.98 1.015s2.738-1.255 4.616-1.071c0.786 0.032 2.993 0.308 4.41 2.317-0.114 0.068-2.633 1.489-2.605 4.444zM13.363 4.749c0.842-0.987 1.409-2.362 1.254-3.729-1.213 0.047-2.682 0.783-3.552 1.77-0.78 0.874-1.464 2.273-1.279 3.613 1.353 0.101 2.735-0.666 3.577-1.654zM25.55 3.058c0.624-0.105 1.313-0.2 2.065-0.284s1.581-0.126 2.485-0.126c1.291 0 2.404 0.152 3.339 0.457s1.704 0.741 2.307 1.308c0.517 0.504 0.92 1.103 1.21 1.796s0.435 1.492 0.435 2.395c0 1.092-0.199 2.049-0.596 2.868s-0.941 1.507-1.629 2.064c-0.688 0.557-1.506 0.972-2.452 1.245s-1.979 0.41-3.098 0.41c-1.011 0-1.86-0.073-2.548-0.22v9.076h-1.517v-20.989zM27.068 13.648c0.366 0.104 0.774 0.178 1.226 0.22s0.935 0.063 1.451 0.063c1.936 0 3.436-0.441 4.501-1.323s1.597-2.174 1.597-3.876c0-0.819-0.14-1.534-0.42-2.143s-0.677-1.108-1.193-1.497c-0.516-0.388-1.129-0.683-1.839-0.882s-1.495-0.3-2.356-0.3c-0.688 0-1.28 0.027-1.774 0.079s-0.893 0.11-1.193 0.173l0.001 9.487zM49.452 20.454c0 0.61 0.010 1.219 0.032 1.828s0.086 1.197 0.194 1.765h-1.42l-0.225-2.143h-0.065c-0.194 0.294-0.441 0.588-0.742 0.882s-0.65 0.562-1.048 0.803c-0.398 0.242-0.85 0.436-1.355 0.583s-1.059 0.22-1.662 0.22c-0.753 0-1.414-0.121-1.985-0.362s-1.038-0.557-1.403-0.946c-0.366-0.389-0.64-0.836-0.822-1.339s-0.274-1.008-0.274-1.513c0-1.786 0.769-3.162 2.307-4.129s3.855-1.429 6.953-1.387v-0.41c0-0.399-0.038-0.856-0.113-1.371s-0.242-1.003-0.5-1.465c-0.258-0.462-0.645-0.851-1.161-1.166s-1.215-0.473-2.097-0.473c-0.666 0-1.328 0.1-1.983 0.299s-1.253 0.478-1.791 0.835l-0.484-1.103c0.688-0.462 1.399-0.793 2.13-0.992s1.495-0.3 2.29-0.3c1.076 0 1.952 0.178 2.63 0.536s1.21 0.819 1.597 1.387c0.387 0.567 0.651 1.202 0.791 1.906s0.21 1.402 0.21 2.096l-0.001 5.957zM47.936 15.948c-0.818-0.021-1.673 0.010-2.566 0.094s-1.715 0.268-2.468 0.552c-0.753 0.284-1.377 0.699-1.871 1.245s-0.742 1.271-0.742 2.175c0 1.072 0.312 1.859 0.935 2.364s1.323 0.757 2.097 0.757c0.624 0 1.182-0.084 1.677-0.252s0.925-0.394 1.291-0.677c0.366-0.283 0.672-0.603 0.919-0.961s0.436-0.725 0.565-1.103c0.108-0.421 0.161-0.726 0.161-0.915l0.001-3.277zM52.418 8.919l3.935 9.833c0.215 0.547 0.42 1.108 0.613 1.686s0.366 1.108 0.516 1.591h0.065c0.15-0.462 0.322-0.982 0.516-1.56s0.409-1.171 0.645-1.781l3.679-9.77h1.613l-4.484 11.094c-0.452 1.177-0.877 2.243-1.275 3.199s-0.801 1.817-1.21 2.585c-0.409 0.767-0.822 1.445-1.242 2.033s-0.887 1.103-1.404 1.544c-0.602 0.525-1.156 0.908-1.661 1.151s-0.844 0.394-1.016 0.457l-0.517-1.229c0.387-0.168 0.818-0.388 1.291-0.662s0.936-0.63 1.387-1.072c0.387-0.378 0.812-0.877 1.274-1.497s0.876-1.371 1.242-2.254c0.13-0.336 0.194-0.557 0.194-0.662 0-0.147-0.065-0.367-0.194-0.662l-5.582-14.025h1.614z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 32\">\n	<path d=\"M30.479 16.275v7.365h-2.337V5.452h6.197a5.603 5.603 0 014.012 1.574 5.062 5.062 0 011.676 3.839 5.037 5.037 0 01-1.676 3.86c-1.083 1.033-2.42 1.55-4.012 1.548h-3.86v.002zm0-8.584v6.35h3.918a3.089 3.089 0 002.312-.941 3.098 3.098 0 000-4.445 3.047 3.047 0 00-2.312-.965h-3.918v.001zM45.41 10.79c1.727 0 3.09.462 4.09 1.385s1.498 2.188 1.498 3.796v7.67h-2.235v-1.727h-.102c-.968 1.422-2.254 2.133-3.86 2.133-1.371 0-2.518-.406-3.441-1.219a3.895 3.895 0 01-1.384-3.047c0-1.288.486-2.312 1.46-3.073.973-.76 2.272-1.141 3.897-1.143 1.388 0 2.53.254 3.428.762v-.534a2.662 2.662 0 00-.965-2.068 3.31 3.31 0 00-2.255-.852c-1.305 0-2.338.55-3.098 1.651l-2.058-1.296c1.132-1.625 2.807-2.438 5.025-2.438zm-3.023 9.041a1.864 1.864 0 00.775 1.524 2.85 2.85 0 001.816.61 3.725 3.725 0 002.628-1.092c.774-.728 1.161-1.583 1.161-2.564-.729-.58-1.744-.87-3.048-.87-.949 0-1.74.228-2.374.686-.64.464-.957 1.029-.957 1.706zm21.439-8.634l-7.802 17.93h-2.411l2.895-6.274-5.13-11.656h2.54l3.707 8.94h.05l3.607-8.94h2.544zM11.003 8.137a5.673 5.673 0 014.009 1.567l2.982-2.982A10.04 10.04 0 0011.004 4a10.449 10.449 0 000 20.897c2.82 0 5.193-.926 6.925-2.522l-.002-.002h.002c1.972-1.818 3.108-4.507 3.108-7.687 0-.712-.06-1.422-.18-2.124h-9.854v4.024h5.644a4.834 4.834 0 01-2.087 3.175v.002c-.937.635-2.145.998-3.557.998-2.725 0-5.038-1.837-5.865-4.313a6.26 6.26 0 010-4c.827-2.475 3.14-4.312 5.865-4.312z\"/>\n</svg>\n</div></div>      </div>\n    \n    <div class=\"footer-primary pull-left\">\n                          <div class=\"copyright-footer\">\n        Copyright 2023 © <strong>Teng Shop</strong>      </div>\n          </div>\n  </div>\n</div>\n\n<a href=\"#top\" class=\"back-to-top button icon invert plain fixed bottom z-1 is-outline circle\" id=\"top-link\" aria-label=\"Terug naar boven\"><i class=\"icon-angle-up\" ></i></a>\n\n</footer>\n\n</div>\n\n<div id=\"main-menu\" class=\"mobile-sidebar no-scrollbar mfp-hide\">\n\n	\n	<div class=\"sidebar-menu no-scrollbar \">\n\n		\n					<ul class=\"nav nav-sidebar nav-vertical nav-uppercase\" data-tab=\"1\">\n				<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9260\"><a href=\"/collections/chinese-kleding-mannen/\">Man</a>\n<ul class=\"sub-menu nav-sidebar-ul children\">\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9261\"><a href=\"/collections/chinese-broek/\">Broek</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9262\"><a href=\"/collections/chinese-jas-mannen-tangzhuang/\">Jassen</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9263\"><a href=\"/collections/chinese-t-shirts/\">T-shirts</a></li>\n</ul>\n</li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9264\"><a href=\"/collections/chinese-kleding-vrouwen/\">Vrouw</a>\n<ul class=\"sub-menu nav-sidebar-ul children\">\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9265\"><a href=\"/collections/chinese-jurken-qipao/\">Jurken</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9266\"><a href=\"/collections/hanfu/\">Hanfu</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9267\"><a href=\"/collections/chinese-jas-vrouwen/\">Jassen</a></li>\n</ul>\n</li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9269\"><a href=\"/collections/chinese-versiering/\">Decoratie</a>\n<ul class=\"sub-menu nav-sidebar-ul children\">\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9270\"><a href=\"/collections/chinese-lampionnen/\">Lampionnen</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9271\"><a href=\"/collections/chinese-gordijnen/\">Gordijnen</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9272\"><a href=\"/collections/chinese-schilderijen/\">Schilderijen</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9273\"><a href=\"/collections/chinese-beelden/\">Beelden</a></li>\n</ul>\n</li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9274\"><a href=\"/collections/chinese-accessoires/\">Accessoires</a>\n<ul class=\"sub-menu nav-sidebar-ul children\">\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9275\"><a href=\"/collections/chinese-waaier/\">Waaier</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9276\"><a href=\"/collections/chinese-parapluutjes/\">Paraplu&#8217;s</a></li>\n</ul>\n</li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9277\"><a href=\"/collections/chinese-eetstokjes/\">Eetstokjes</a></li>\n<li class=\"header-divider\"></li><li class=\"account-item has-icon menu-item\">\n<a href=\"https://www.nl.teng-shop.com/mijn-paard/\"\n    class=\"nav-top-link nav-top-not-logged-in\">\n    <span class=\"header-account-title\">\n    Inloggen  </span>\n</a>\n\n</li>\n			</ul>\n		\n		\n	</div>\n\n	\n</div>\n    <div id=\"login-form-popup\" class=\"lightbox-content mfp-hide\">\n      \n<div class=\"my-account-header page-title normal-title\n		\">\n\n	\n	<div class=\"page-title-inner flex-row container\n	 text-left\">\n		<div class=\"flex-col flex-grow text-center\">\n			\n				<div class=\"text-center social-login\">\n					\n					\n						<a href=\"https://www.nl.teng-shop.com/wp-login.php?loginSocial=facebook\" class=\"button social-button large facebook circle\" data-plugin=\"nsl\" data-action=\"connect\" data-redirect=\"current\" data-provider=\"facebook\" data-popupwidth=\"475\" data-popupheight=\"175\">\n							<i class=\"icon-facebook\"></i>\n							<span>Login met <strong>Facebook</strong></span>\n						</a>\n					\n					\n						<a href=\"https://www.nl.teng-shop.com/wp-login.php?loginSocial=google\" class=\"button social-button large google-plus circle\" data-plugin=\"nsl\" data-action=\"connect\" data-redirect=\"current\" data-provider=\"google\" data-popupwidth=\"600\" data-popupheight=\"600\">\n							<i class=\"icon-google-plus\"></i>\n							<span>Login met <strong>Google</strong></span>\n						</a>\n					\n\n									</div>\n\n					</div>\n	</div>\n</div>\n      	<div class=\"woocommerce\">\n      		<div class=\"woocommerce-notices-wrapper\"></div>\n<div class=\"account-container lightbox-inner\">\n\n	\n	<div class=\"col2-set row row-divided row-large\" id=\"customer_login\">\n\n		<div class=\"col-1 large-6 col pb-0\">\n\n			\n			<div class=\"account-login-inner\">\n\n				<h3 class=\"uppercase\">Inloggen</h3>\n\n				<form class=\"woocommerce-form woocommerce-form-login login\" method=\"post\">\n\n					\n					<p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\">\n						<label for=\"username\">Gebruikersnaam of e-mailadres&nbsp;<span class=\"required\">*</span></label>\n						<input type=\"text\" class=\"woocommerce-Input woocommerce-Input--text input-text\" name=\"username\" id=\"username\" autocomplete=\"username\" value=\"\" />					</p>\n					<p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\">\n						<label for=\"password\">Wachtwoord&nbsp;<span class=\"required\">*</span></label>\n						<input class=\"woocommerce-Input woocommerce-Input--text input-text\" type=\"password\" name=\"password\" id=\"password\" autocomplete=\"current-password\" />\n					</p>\n\n					\n					<p class=\"form-row\">\n						<label class=\"woocommerce-form__label woocommerce-form__label-for-checkbox woocommerce-form-login__rememberme\">\n							<input class=\"woocommerce-form__input woocommerce-form__input-checkbox\" name=\"rememberme\" type=\"checkbox\" id=\"rememberme\" value=\"forever\" /> <span>Onthouden</span>\n						</label>\n						<input type=\"hidden\" id=\"woocommerce-login-nonce\" name=\"woocommerce-login-nonce\" value=\"14e1c0df5d\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/\" />						<button type=\"submit\" class=\"woocommerce-button button woocommerce-form-login__submit\" name=\"login\" value=\"Inloggen\">Inloggen</button>\n					</p>\n					<p class=\"woocommerce-LostPassword lost_password\">\n						<a href=\"https://www.nl.teng-shop.com/mijn-paard/lost-password/\">Wachtwoord vergeten?</a>\n					</p>\n\n					\n				</form>\n			</div>\n\n			\n		</div>\n\n		<div class=\"col-2 large-6 col pb-0\">\n\n			<div class=\"account-register-inner\">\n\n				<h3 class=\"uppercase\">Registreren</h3>\n\n				<form method=\"post\" class=\"woocommerce-form woocommerce-form-register register\"  >\n\n					\n					\n					<p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\">\n						<label for=\"reg_email\">E-mailadres&nbsp;<span class=\"required\">*</span></label>\n						<input type=\"email\" class=\"woocommerce-Input woocommerce-Input--text input-text\" name=\"email\" id=\"reg_email\" autocomplete=\"email\" value=\"\" />					</p>\n\n					\n						<p>Een link om een nieuw wachtwoord in te stellen zal naar je e-mailadres worden verzonden.</p>\n\n					\n					<div class=\"woocommerce-privacy-policy-text\"><p>Uw persoonlijke gegevens worden gebruikt om uw bezoek aan de website te ondersteunen, de toegang tot uw account te beheren en voor andere doeleinden zoals beschreven in ons <a href=\"https://www.nl.teng-shop.com/privacybeleid/\" class=\"woocommerce-privacy-policy-link\" target=\"_blank\">privacybeleid</a>.</p>\n</div>\n					<p class=\"woocommerce-form-row form-row\">\n						<input type=\"hidden\" id=\"woocommerce-register-nonce\" name=\"woocommerce-register-nonce\" value=\"f5ef8a61f1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/\" />						<button type=\"submit\" class=\"woocommerce-Button woocommerce-button button woocommerce-form-register__submit\" name=\"register\" value=\"Registreren\">Registreren</button>\n					</p>\n\n					\n				</form>\n\n			</div>\n\n		</div>\n\n	</div>\n\n</div>\n\n		</div>\n      	    </div>\n  	<script type=\"text/javascript\">\n		(function () {\n			var c = document.body.className;\n			c = c.replace(/woocommerce-no-js/, \'woocommerce-js\');\n			document.body.className = c;\n		})();\n	</script>\n	<style id=\'global-styles-inline-css\' type=\'text/css\'>\nbody{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--primary: #df4c18;--wp--preset--color--secondary: #000000;--wp--preset--color--success: #7a9c59;--wp--preset--color--alert: #b20000;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);--wp--custom--experimental--link--color: #df4c18;--wp--custom--experimental--link--color-hover: #111;}body { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: none;}.wp-element-button, .wp-block-button__link{background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.has-success-color{color: var(--wp--preset--color--success) !important;}.has-alert-color{color: var(--wp--preset--color--alert) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.has-success-background-color{background-color: var(--wp--preset--color--success) !important;}.has-alert-background-color{background-color: var(--wp--preset--color--alert) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.has-success-border-color{border-color: var(--wp--preset--color--success) !important;}.has-alert-border-color{border-color: var(--wp--preset--color--alert) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\n</style>\n<script async src=\'//static.klaviyo.com/onsite/js/klaviyo.js?company_id=WUCBtq&ver=3.3.1\'></script><script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.8.2\" id=\"swv-js\"></script>\n<script type=\"text/javascript\" id=\"contact-form-7-js-extra\">\n/* <![CDATA[ */\nvar wpcf7 = {\"api\":{\"root\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-json\\/\",\"namespace\":\"contact-form-7\\/v1\"},\"cached\":\"1\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.8.2\" id=\"contact-form-7-js\"></script>\n<script type=\"text/javascript\" src=\"https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js?ver=1.2.65.0\" id=\"mo-google-webfont-js\"></script>\n<script type=\"text/javascript\" id=\"mailoptin-js-extra\">\n/* <![CDATA[ */\nvar mailoptin_globals = {\"public_js\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-content\\/plugins\\/mailoptin\\/src\\/core\\/src\\/assets\\/js\\/src\",\"public_sound\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-content\\/plugins\\/mailoptin\\/src\\/core\\/src\\/assets\\/sound\\/\",\"mailoptin_ajaxurl\":\"\\/?mailoptin-ajax=%%endpoint%%\",\"is_customize_preview\":\"false\",\"disable_impression_tracking\":\"false\",\"sidebar\":\"0\",\"js_required_title\":\"Title is required.\",\"is_new_returning_visitors_cookies\":\"false\",\"woo_product_id\":\"263\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/mailoptin/src/core/src/assets/js/mailoptin.min.js?ver=1.2.65.0\" id=\"mailoptin-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.8.2.2\" id=\"jquery-blockui-js\"></script>\n<script type=\"text/javascript\" id=\"wc-add-to-cart-js-extra\">\n/* <![CDATA[ */\nvar wc_add_to_cart_params = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\",\"i18n_view_cart\":\"Bekijk winkelwagen\",\"cart_url\":\"https:\\/\\/www.nl.teng-shop.com\\/mand\\/\",\"is_cart\":\"\",\"cart_redirect_after_add\":\"no\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=8.2.2\" id=\"wc-add-to-cart-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.8.2.2\" id=\"js-cookie-js\"></script>\n<script type=\"text/javascript\" id=\"woocommerce-js-extra\">\n/* <![CDATA[ */\nvar woocommerce_params = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=8.2.2\" id=\"woocommerce-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-includes/js/hoverIntent.min.js?ver=1.10.2\" id=\"hoverIntent-js\"></script>\n<script type=\"text/javascript\" id=\"flatsome-js-js-extra\">\n/* <![CDATA[ */\nvar flatsomeVars = {\"theme\":{\"version\":\"3.18.0\"},\"ajaxurl\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-admin\\/admin-ajax.php\",\"rtl\":\"\",\"sticky_height\":\"70\",\"stickyHeaderHeight\":\"0\",\"scrollPaddingTop\":\"0\",\"assets_url\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-content\\/themes\\/flatsome\\/assets\\/\",\"lightbox\":{\"close_markup\":\"<button title=\\\"%title%\\\" type=\\\"button\\\" class=\\\"mfp-close\\\"><svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" class=\\\"feather feather-x\\\"><line x1=\\\"18\\\" y1=\\\"6\\\" x2=\\\"6\\\" y2=\\\"18\\\"><\\/line><line x1=\\\"6\\\" y1=\\\"6\\\" x2=\\\"18\\\" y2=\\\"18\\\"><\\/line><\\/svg><\\/button>\",\"close_btn_inside\":false},\"user\":{\"can_edit_pages\":false},\"i18n\":{\"mainMenu\":\"Hoofdmenu\",\"toggleButton\":\"Toggle\"},\"options\":{\"cookie_notice_version\":\"1\",\"swatches_layout\":\"stacked\",\"swatches_disable_deselect\":false,\"swatches_box_select_event\":false,\"swatches_box_behavior_selected\":false,\"swatches_box_update_urls\":\"1\",\"swatches_box_reset\":false,\"swatches_box_reset_limited\":false,\"swatches_box_reset_extent\":false,\"swatches_box_reset_time\":300,\"search_result_latency\":\"0\"},\"is_mini_cart_reveal\":\"1\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/flatsome.js?ver=039f9485eef603e7c53a\" id=\"flatsome-js-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/wishlist.js?ver=3.10.2\" id=\"flatsome-woocommerce-wishlist-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/inc/extensions/flatsome-live-search/flatsome-live-search.js?ver=3.18.0\" id=\"flatsome-live-search-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-frontend.js?ver=3.18.0\" id=\"flatsome-swatches-frontend-js\"></script>\n<script type=\"text/javascript\" id=\"kl-identify-browser-js-extra\">\n/* <![CDATA[ */\nvar klUser = {\"current_user_email\":\"\",\"commenter_email\":\"\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/klaviyo/inc/js/kl-identify-browser.js?ver=3.3.1\" id=\"kl-identify-browser-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.js?ver=3.18.0\" id=\"flatsome-lazy-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/woocommerce.js?ver=c9fe40206165dd93147b\" id=\"flatsome-theme-woocommerce-js-js\"></script>\n<script type=\"text/javascript\" id=\"wc-cart-fragments-js-extra\">\n/* <![CDATA[ */\nvar wc_cart_fragments_params = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\",\"cart_hash_key\":\"wc_cart_hash_c1425807695ed21e7e3402dcdf331840\",\"fragment_name\":\"wc_fragments_c1425807695ed21e7e3402dcdf331840\",\"request_timeout\":\"5000\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=8.2.2\" id=\"wc-cart-fragments-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.selectBox.min.js?ver=1.2.0\" id=\"jquery-selectBox-js\"></script>\n<script type=\"text/javascript\" src=\"//www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.min.js?ver=3.1.6\" id=\"prettyPhoto-js\"></script>\n<script type=\"text/javascript\" id=\"jquery-yith-wcwl-js-extra\">\n/* <![CDATA[ */\nvar yith_wcwl_l10n = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"redirect_to_cart\":\"no\",\"yith_wcwl_button_position\":\"add-to-cart\",\"multi_wishlist\":\"\",\"hide_add_button\":\"1\",\"enable_ajax_loading\":\"\",\"ajax_loader_url\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-content\\/plugins\\/yith-woocommerce-wishlist\\/assets\\/images\\/ajax-loader-alt.svg\",\"remove_from_wishlist_after_add_to_cart\":\"1\",\"is_wishlist_responsive\":\"1\",\"time_to_close_prettyphoto\":\"3000\",\"fragments_index_glue\":\".\",\"reload_on_found_variation\":\"1\",\"mobile_media_query\":\"768\",\"labels\":{\"cookie_disabled\":\"Deze optie is alleen beschikbaar als cookies in je browser zijn ingeschakeld.\",\"added_to_cart_message\":\"<div class=\\\"woocommerce-notices-wrapper\\\"><div class=\\\"woocommerce-message\\\" role=\\\"alert\\\">Product succesvol toegevoegd aan winkelwagen<\\/div><\\/div>\"},\"actions\":{\"add_to_wishlist_action\":\"add_to_wishlist\",\"remove_from_wishlist_action\":\"remove_from_wishlist\",\"reload_wishlist_and_adding_elem_action\":\"reload_wishlist_and_adding_elem\",\"load_mobile_action\":\"load_mobile\",\"delete_item_action\":\"delete_item\",\"save_title_action\":\"save_title\",\"save_privacy_action\":\"save_privacy\",\"load_fragments\":\"load_fragments\"},\"nonce\":{\"add_to_wishlist_nonce\":\"cdb7a006a5\",\"remove_from_wishlist_nonce\":\"be4d9d985f\",\"reload_wishlist_and_adding_elem_nonce\":\"aa87982449\",\"load_mobile_nonce\":\"c5578b1d65\",\"delete_item_nonce\":\"308143356a\",\"save_title_nonce\":\"37200ef3ac\",\"save_privacy_nonce\":\"3a4288a976\",\"load_fragments_nonce\":\"aedca6e27d\"},\"redirect_after_ask_estimate\":\"\",\"ask_estimate_redirect_url\":\"https:\\/\\/www.nl.teng-shop.com\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.yith-wcwl.min.js?ver=3.26.0\" id=\"jquery-yith-wcwl-js\"></script>\n<script type=\"text/javascript\">(function (undefined) {var _localizedStrings={\"redirect_overlay_title\":\"Hou vol\",\"redirect_overlay_text\":\"Je wordt doorgestuurd naar een andere pagina,<br>het kan een paar seconden duren.\"};var _targetWindow=\"prefer-popup\";var _redirectOverlay=\"overlay-with-spinner-and-message\";\n/**\n * Used when Cross-Origin-Opener-Policy blocked the access to the opener. We can\'t have a reference of the opened windows, so we should attempt to refresh only the windows that has opened popups.\n */\nwindow._nslHasOpenedPopup = false;\n\nwindow.NSLPopup = function (url, title, w, h) {\n    var userAgent = navigator.userAgent,\n        mobile = function () {\n            return /\\b(iPhone|iP[ao]d)/.test(userAgent) ||\n                /\\b(iP[ao]d)/.test(userAgent) ||\n                /Android/i.test(userAgent) ||\n                /Mobile/i.test(userAgent);\n        },\n        screenX = window.screenX !== undefined ? window.screenX : window.screenLeft,\n        screenY = window.screenY !== undefined ? window.screenY : window.screenTop,\n        outerWidth = window.outerWidth !== undefined ? window.outerWidth : document.documentElement.clientWidth,\n        outerHeight = window.outerHeight !== undefined ? window.outerHeight : document.documentElement.clientHeight - 22,\n        targetWidth = mobile() ? null : w,\n        targetHeight = mobile() ? null : h,\n        left = parseInt(screenX + (outerWidth - targetWidth) / 2, 10),\n        right = parseInt(screenY + (outerHeight - targetHeight) / 2.5, 10),\n        features = [];\n    if (targetWidth !== null) {\n        features.push(\'width=\' + targetWidth);\n    }\n    if (targetHeight !== null) {\n        features.push(\'height=\' + targetHeight);\n    }\n    features.push(\'left=\' + left);\n    features.push(\'top=\' + right);\n    features.push(\'scrollbars=1\');\n\n    var newWindow = window.open(url, title, features.join(\',\'));\n\n    if (window.focus) {\n        newWindow.focus();\n    }\n\n    window._nslHasOpenedPopup = true;\n\n    return newWindow;\n};\n\nvar isWebView = null;\n\nfunction checkWebView() {\n    if (isWebView === null) {\n        function _detectOS(ua) {\n            if (/Android/.test(ua)) {\n                return \"Android\";\n            } else if (/iPhone|iPad|iPod/.test(ua)) {\n                return \"iOS\";\n            } else if (/Windows/.test(ua)) {\n                return \"Windows\";\n            } else if (/Mac OS X/.test(ua)) {\n                return \"Mac\";\n            } else if (/CrOS/.test(ua)) {\n                return \"Chrome OS\";\n            } else if (/Firefox/.test(ua)) {\n                return \"Firefox OS\";\n            }\n            return \"\";\n        }\n\n        function _detectBrowser(ua) {\n            var android = /Android/.test(ua);\n\n            if (/Opera Mini/.test(ua) || / OPR/.test(ua) || / OPT/.test(ua)) {\n                return \"Opera\";\n            } else if (/CriOS/.test(ua)) {\n                return \"Chrome for iOS\";\n            } else if (/Edge/.test(ua)) {\n                return \"Edge\";\n            } else if (android && /Silk\\//.test(ua)) {\n                return \"Silk\";\n            } else if (/Chrome/.test(ua)) {\n                return \"Chrome\";\n            } else if (/Firefox/.test(ua)) {\n                return \"Firefox\";\n            } else if (android) {\n                return \"AOSP\";\n            } else if (/MSIE|Trident/.test(ua)) {\n                return \"IE\";\n            } else if (/Safari\\//.test(ua)) {\n                return \"Safari\";\n            } else if (/AppleWebKit/.test(ua)) {\n                return \"WebKit\";\n            }\n            return \"\";\n        }\n\n        function _detectBrowserVersion(ua, browser) {\n            if (browser === \"Opera\") {\n                return /Opera Mini/.test(ua) ? _getVersion(ua, \"Opera Mini/\") :\n                    / OPR/.test(ua) ? _getVersion(ua, \" OPR/\") :\n                        _getVersion(ua, \" OPT/\");\n            } else if (browser === \"Chrome for iOS\") {\n                return _getVersion(ua, \"CriOS/\");\n            } else if (browser === \"Edge\") {\n                return _getVersion(ua, \"Edge/\");\n            } else if (browser === \"Chrome\") {\n                return _getVersion(ua, \"Chrome/\");\n            } else if (browser === \"Firefox\") {\n                return _getVersion(ua, \"Firefox/\");\n            } else if (browser === \"Silk\") {\n                return _getVersion(ua, \"Silk/\");\n            } else if (browser === \"AOSP\") {\n                return _getVersion(ua, \"Version/\");\n            } else if (browser === \"IE\") {\n                return /IEMobile/.test(ua) ? _getVersion(ua, \"IEMobile/\") :\n                    /MSIE/.test(ua) ? _getVersion(ua, \"MSIE \")\n                        :\n                        _getVersion(ua, \"rv:\");\n            } else if (browser === \"Safari\") {\n                return _getVersion(ua, \"Version/\");\n            } else if (browser === \"WebKit\") {\n                return _getVersion(ua, \"WebKit/\");\n            }\n            return \"0.0.0\";\n        }\n\n        function _getVersion(ua, token) {\n            try {\n                return _normalizeSemverString(ua.split(token)[1].trim().split(/[^\\w\\.]/)[0]);\n            } catch (o_O) {\n            }\n            return \"0.0.0\";\n        }\n\n        function _normalizeSemverString(version) {\n            var ary = version.split(/[\\._]/);\n            return (parseInt(ary[0], 10) || 0) + \".\" +\n                (parseInt(ary[1], 10) || 0) + \".\" +\n                (parseInt(ary[2], 10) || 0);\n        }\n\n        function _isWebView(ua, os, browser, version, options) {\n            switch (os + browser) {\n                case \"iOSSafari\":\n                    return false;\n                case \"iOSWebKit\":\n                    return _isWebView_iOS(options);\n                case \"AndroidAOSP\":\n                    return false;\n                case \"AndroidChrome\":\n                    return parseFloat(version) >= 42 ? /; wv/.test(ua) : /\\d{2}\\.0\\.0/.test(version) ? true : _isWebView_Android(options);\n            }\n            return false;\n        }\n\n        function _isWebView_iOS(options) {\n            var document = (window[\"document\"] || {});\n\n            if (\"WEB_VIEW\" in options) {\n                return options[\"WEB_VIEW\"];\n            }\n            return !(\"fullscreenEnabled\" in document || \"webkitFullscreenEnabled\" in document || false);\n        }\n\n        function _isWebView_Android(options) {\n            if (\"WEB_VIEW\" in options) {\n                return options[\"WEB_VIEW\"];\n            }\n            return !(\"requestFileSystem\" in window || \"webkitRequestFileSystem\" in window || false);\n        }\n\n        var options = {};\n        var nav = window.navigator || {};\n        var ua = nav.userAgent || \"\";\n        var os = _detectOS(ua);\n        var browser = _detectBrowser(ua);\n        var browserVersion = _detectBrowserVersion(ua, browser);\n\n        isWebView = _isWebView(ua, os, browser, browserVersion, options);\n    }\n\n    return isWebView;\n}\n\nfunction isAllowedWebViewForUserAgent(provider) {\n    var facebookAllowedWebViews = [\n        \'Instagram\',\n        \'FBAV\',\n        \'FBAN\'\n    ], whitelist = [];\n\n    if (provider && provider === \'facebook\') {\n        whitelist = facebookAllowedWebViews;\n    }\n\n    var nav = window.navigator || {};\n    var ua = nav.userAgent || \"\";\n\n    if (whitelist.length && ua.match(new RegExp(whitelist.join(\'|\')))) {\n        return true;\n    }\n\n    return false;\n}\n\nwindow._nslDOMReady(function () {\n\n    window.nslRedirect = function (url) {\n        if (_redirectOverlay) {\n            var overlay = document.createElement(\'div\');\n            overlay.id = \"nsl-redirect-overlay\";\n            var overlayHTML = \'\',\n                overlayContainer = \"<div id=\'nsl-redirect-overlay-container\'>\",\n                overlayContainerClose = \"</div>\",\n                overlaySpinner = \"<div id=\'nsl-redirect-overlay-spinner\'></div>\",\n                overlayTitle = \"<p id=\'nsl-redirect-overlay-title\'>\" + _localizedStrings.redirect_overlay_title + \"</p>\",\n                overlayText = \"<p id=\'nsl-redirect-overlay-text\'>\" + _localizedStrings.redirect_overlay_text + \"</p>\";\n\n            switch (_redirectOverlay) {\n                case \"overlay-only\":\n                    break;\n                case \"overlay-with-spinner\":\n                    overlayHTML = overlayContainer + overlaySpinner + overlayContainerClose;\n                    break;\n                default:\n                    overlayHTML = overlayContainer + overlaySpinner + overlayTitle + overlayText + overlayContainerClose;\n                    break;\n            }\n\n            overlay.insertAdjacentHTML(\"afterbegin\", overlayHTML);\n            document.body.appendChild(overlay);\n        }\n\n        window.location = url;\n    };\n\n    var targetWindow = _targetWindow || \'prefer-popup\',\n        lastPopup = false;\n\n\n    var buttonLinks = document.querySelectorAll(\' a[data-plugin=\"nsl\"][data-action=\"connect\"], a[data-plugin=\"nsl\"][data-action=\"link\"]\');\n    buttonLinks.forEach(function (buttonLink) {\n        buttonLink.addEventListener(\'click\', function (e) {\n            if (lastPopup && !lastPopup.closed) {\n                e.preventDefault();\n                lastPopup.focus();\n            } else {\n\n                var href = this.href,\n                    success = false;\n                if (href.indexOf(\'?\') !== -1) {\n                    href += \'&\';\n                } else {\n                    href += \'?\';\n                }\n\n                var redirectTo = this.dataset.redirect;\n                if (redirectTo === \'current\') {\n                    href += \'redirect=\' + encodeURIComponent(window.location.href) + \'&\';\n                } else if (redirectTo && redirectTo !== \'\') {\n                    href += \'redirect=\' + encodeURIComponent(redirectTo) + \'&\';\n                }\n\n                if (targetWindow !== \'prefer-same-window\' && checkWebView()) {\n                    targetWindow = \'prefer-same-window\';\n                }\n\n                if (targetWindow === \'prefer-popup\') {\n                    lastPopup = NSLPopup(href + \'display=popup\', \'nsl-social-connect\', this.dataset.popupwidth, this.dataset.popupheight);\n                    if (lastPopup) {\n                        success = true;\n                        e.preventDefault();\n                    }\n                } else if (targetWindow === \'prefer-new-tab\') {\n                    var newTab = window.open(href + \'display=popup\', \'_blank\');\n                    if (newTab) {\n                        if (window.focus) {\n                            newTab.focus();\n                        }\n                        success = true;\n                        window._nslHasOpenedPopup = true;\n                        e.preventDefault();\n                    }\n                }\n\n                if (!success) {\n                    window.location = href;\n                    e.preventDefault();\n                }\n            }\n        });\n    });\n\n    let hasWebViewLimitation = false;\n\n    var googleLoginButtons = document.querySelectorAll(\' a[data-plugin=\"nsl\"][data-provider=\"google\"]\');\n    if (googleLoginButtons.length && checkWebView()) {\n        googleLoginButtons.forEach(function (googleLoginButton) {\n            googleLoginButton.remove();\n            hasWebViewLimitation = true;\n        });\n    }\n\n    var facebookLoginButtons = document.querySelectorAll(\' a[data-plugin=\"nsl\"][data-provider=\"facebook\"]\');\n    if (facebookLoginButtons.length && checkWebView() && /Android/.test(window.navigator.userAgent) && !isAllowedWebViewForUserAgent(\'facebook\')) {\n        facebookLoginButtons.forEach(function (facebookLoginButton) {\n            facebookLoginButton.remove();\n            hasWebViewLimitation = true;\n        });\n    }\n\n\n    const separators = document.querySelectorAll(\'div.nsl-separator\');\n    if (hasWebViewLimitation && separators.length) {\n        separators.forEach(function (separator) {\n            let separatorParentNode = separator.parentNode;\n            if (separatorParentNode) {\n                const separatorButtonContainer = separatorParentNode.querySelector(\'div.nsl-container-buttons\');\n                if (separatorButtonContainer && !separatorButtonContainer.hasChildNodes()) {\n                    separator.remove();\n                }\n            }\n        })\n    }\n});\n\n/**\n * Cross-Origin-Opener-Policy blocked the access to the opener\n */\nif (typeof BroadcastChannel === \"function\") {\n    const _nslLoginBroadCastChannel = new BroadcastChannel(\'nsl_login_broadcast_channel\');\n    _nslLoginBroadCastChannel.onmessage = (event) => {\n        if (window?._nslHasOpenedPopup && event.data?.action === \'redirect\') {\n            window._nslHasOpenedPopup = false;\n\n            const url = event.data?.href;\n            _nslLoginBroadCastChannel.close();\n            if (typeof window.nslRedirect === \'function\') {\n                window.nslRedirect(url);\n            } else {\n                window.opener.location = url;\n            }\n        }\n    };\n}})();</script>\n</body>\n</html>\n[data-end]',3,0,'testencore0561',1699889303),(5,' :: tryVisit :: [dnsRecord=Array\n(\n    [0] => Array\n        (\n            [host] => www.nl.teng-shop.com\n            [class] => IN\n            [ttl] => 191\n            [type] => A\n            [ip] => 109.234.165.186\n        )\n\n)\n]',3,0,'testencore0561',1699889303);
/*!40000 ALTER TABLE `wpj7_mainwp_action_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_group`
--

DROP TABLE IF EXISTS `wpj7_mainwp_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_group` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `name` text NOT NULL,
  `color` varchar(32) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_group`
--

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

--
-- Table structure for table `wpj7_mainwp_request_log`
--

DROP TABLE IF EXISTS `wpj7_mainwp_request_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_request_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `ip` text NOT NULL DEFAULT '',
  `subnet` text NOT NULL DEFAULT '',
  `micro_timestamp_stop` decimal(12,2) NOT NULL DEFAULT 0.00,
  `micro_timestamp_start` decimal(12,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_request_log`
--

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

--
-- Table structure for table `wpj7_mainwp_users`
--

DROP TABLE IF EXISTS `wpj7_mainwp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_users` (
  `userid` int(11) NOT NULL,
  `user_email` text NOT NULL DEFAULT '',
  `ignored_plugins` longtext NOT NULL DEFAULT '',
  `trusted_plugins` longtext NOT NULL DEFAULT '',
  `trusted_plugins_notes` longtext NOT NULL DEFAULT '',
  `ignored_themes` longtext NOT NULL DEFAULT '',
  `trusted_themes` longtext NOT NULL DEFAULT '',
  `trusted_themes_notes` longtext NOT NULL DEFAULT '',
  `site_view` tinyint(1) NOT NULL DEFAULT 0,
  `pluginDir` text NOT NULL DEFAULT '',
  `dismissed_plugins` longtext NOT NULL DEFAULT '',
  `dismissed_themes` longtext NOT NULL DEFAULT '',
  PRIMARY KEY (`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_users`
--

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

--
-- Table structure for table `wpj7_mainwp_wp`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `adminname` text NOT NULL,
  `name` text NOT NULL,
  `url` text NOT NULL,
  `pubkey` text NOT NULL,
  `privkey` text NOT NULL,
  `siteurl` text NOT NULL,
  `ga_id` text NOT NULL,
  `gas_id` int(11) NOT NULL,
  `offline_checks_last` int(11) NOT NULL,
  `offline_check_result` int(11) NOT NULL,
  `http_response_code` int(11) NOT NULL DEFAULT 0,
  `http_code_noticed` tinyint(1) NOT NULL DEFAULT 1,
  `disable_status_check` tinyint(1) NOT NULL DEFAULT 0,
  `disable_health_check` tinyint(1) NOT NULL DEFAULT 0,
  `status_check_interval` tinyint(1) NOT NULL DEFAULT 0,
  `health_threshold` int(11) NOT NULL DEFAULT 0,
  `note` text NOT NULL,
  `statsUpdate` int(11) NOT NULL,
  `directories` longtext NOT NULL,
  `plugin_upgrades` longtext NOT NULL,
  `theme_upgrades` longtext NOT NULL,
  `translation_upgrades` longtext NOT NULL,
  `premium_upgrades` longtext NOT NULL,
  `securityIssues` longtext NOT NULL,
  `themes` longtext NOT NULL,
  `ignored_themes` longtext NOT NULL,
  `plugins` longtext NOT NULL,
  `ignored_plugins` longtext NOT NULL,
  `users` longtext NOT NULL,
  `categories` longtext NOT NULL,
  `pluginDir` text NOT NULL,
  `automatic_update` tinyint(1) NOT NULL,
  `backup_before_upgrade` tinyint(1) NOT NULL DEFAULT 2,
  `mainwpdir` tinyint(1) NOT NULL,
  `loadFilesBeforeZip` tinyint(1) NOT NULL DEFAULT 1,
  `is_ignoreCoreUpdates` tinyint(1) NOT NULL DEFAULT 0,
  `is_ignorePluginUpdates` tinyint(1) NOT NULL DEFAULT 0,
  `is_ignoreThemeUpdates` tinyint(1) NOT NULL DEFAULT 0,
  `verify_certificate` tinyint(1) NOT NULL DEFAULT 1,
  `force_use_ipv4` tinyint(1) NOT NULL DEFAULT 0,
  `ssl_version` tinyint(1) NOT NULL DEFAULT 0,
  `ip` text NOT NULL DEFAULT '',
  `uniqueId` text NOT NULL,
  `maximumFileDescriptorsOverride` tinyint(1) NOT NULL DEFAULT 0,
  `maximumFileDescriptorsAuto` tinyint(1) NOT NULL DEFAULT 1,
  `maximumFileDescriptors` int(11) NOT NULL DEFAULT 150,
  `http_user` text NOT NULL DEFAULT '',
  `http_pass` text NOT NULL DEFAULT '',
  `wpe` tinyint(1) NOT NULL,
  `is_staging` tinyint(1) NOT NULL DEFAULT 0,
  `client_id` int(11) NOT NULL DEFAULT 0,
  `suspended` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `idx_userid` (`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_actions`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_actions` (
  `action_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `object_id` varchar(20) NOT NULL,
  `context` varchar(20) NOT NULL,
  `action` varchar(100) NOT NULL,
  `action_user` text NOT NULL DEFAULT '',
  `created` int(11) NOT NULL DEFAULT 0,
  `meta_data` text NOT NULL DEFAULT '',
  `dismiss` tinyint(1) NOT NULL DEFAULT 0,
  `summary` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`action_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_actions`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_backup`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_backup` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `name` text NOT NULL,
  `schedule` text NOT NULL,
  `type` text NOT NULL,
  `exclude` text NOT NULL,
  `sites` text NOT NULL,
  `groups` text NOT NULL,
  `last` int(11) NOT NULL,
  `last_run` int(11) NOT NULL,
  `lastStartNotificationSent` int(11) NOT NULL DEFAULT 0,
  `last_run_manually` int(11) NOT NULL,
  `completed_sites` text NOT NULL,
  `completed` int(11) NOT NULL,
  `backup_errors` text NOT NULL,
  `subfolder` text NOT NULL,
  `filename` text NOT NULL,
  `paused` tinyint(1) NOT NULL,
  `template` tinyint(1) DEFAULT 0,
  `excludebackup` tinyint(1) DEFAULT 0,
  `excludecache` tinyint(1) DEFAULT 0,
  `excludenonwp` tinyint(1) DEFAULT 0,
  `excludezip` tinyint(1) DEFAULT 0,
  `archiveFormat` text NOT NULL,
  `loadFilesBeforeZip` tinyint(1) NOT NULL DEFAULT 1,
  `maximumFileDescriptorsOverride` tinyint(1) NOT NULL DEFAULT 0,
  `maximumFileDescriptorsAuto` tinyint(1) NOT NULL DEFAULT 1,
  `maximumFileDescriptors` int(11) NOT NULL DEFAULT 150,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_backup`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_backup_progress`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_backup_progress`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_backup_progress` (
  `task_id` int(11) NOT NULL,
  `wp_id` int(11) NOT NULL,
  `dtsFetched` int(11) NOT NULL DEFAULT 0,
  `fetchResult` text NOT NULL DEFAULT '',
  `downloadedDB` text NOT NULL DEFAULT '',
  `downloadedFULL` text NOT NULL DEFAULT '',
  `downloadedDBComplete` tinyint(1) NOT NULL DEFAULT 0,
  `downloadedFULLComplete` tinyint(1) NOT NULL DEFAULT 0,
  `removedFiles` tinyint(1) NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_error` text NOT NULL DEFAULT '',
  `pid` int(11) NOT NULL DEFAULT 0,
  UNIQUE KEY `task_id` (`task_id`),
  KEY `idx_task_id` (`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_backup_progress`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_clients`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_clients` (
  `client_id` int(11) NOT NULL AUTO_INCREMENT,
  `image` varchar(255) NOT NULL DEFAULT '',
  `name` varchar(255) NOT NULL,
  `address_1` varchar(255) NOT NULL DEFAULT '',
  `address_2` varchar(255) NOT NULL DEFAULT '',
  `city` varchar(100) NOT NULL DEFAULT '',
  `zip` varchar(32) NOT NULL DEFAULT '',
  `state` varchar(200) NOT NULL DEFAULT '',
  `country` varchar(200) NOT NULL DEFAULT '',
  `note` longtext NOT NULL DEFAULT '',
  `client_email` varchar(191) NOT NULL,
  `client_phone` varchar(100) NOT NULL DEFAULT '',
  `client_facebook` varchar(255) NOT NULL DEFAULT '',
  `client_twitter` varchar(255) NOT NULL DEFAULT '',
  `client_instagram` varchar(255) NOT NULL DEFAULT '',
  `client_linkedin` varchar(255) NOT NULL DEFAULT '',
  `created` int(11) NOT NULL DEFAULT 0,
  `suspended` tinyint(1) NOT NULL DEFAULT 0,
  `primary_contact_id` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`client_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_clients`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_clients_contacts`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_clients_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_clients_contacts` (
  `contact_id` int(11) NOT NULL AUTO_INCREMENT,
  `contact_client_id` int(11) NOT NULL,
  `contact_email` varchar(191) NOT NULL,
  `contact_image` varchar(255) NOT NULL DEFAULT '',
  `contact_name` varchar(255) NOT NULL,
  `contact_phone` varchar(100) NOT NULL DEFAULT '',
  `contact_role` varchar(255) NOT NULL DEFAULT '',
  `facebook` varchar(255) NOT NULL DEFAULT '',
  `twitter` varchar(255) NOT NULL DEFAULT '',
  `instagram` varchar(255) NOT NULL DEFAULT '',
  `linkedin` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`contact_id`),
  UNIQUE KEY `contact_email` (`contact_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_clients_contacts`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_clients_field_values`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_clients_field_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_clients_field_values` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT,
  `field_id` int(11) NOT NULL,
  `field_value` longtext NOT NULL DEFAULT '',
  `value_client_id` int(11) NOT NULL,
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `value_client_id_field_id` (`value_client_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_clients_field_values`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_clients_fields`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_clients_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_clients_fields` (
  `field_id` int(11) NOT NULL AUTO_INCREMENT,
  `field_name` varchar(191) NOT NULL DEFAULT '',
  `field_desc` varchar(255) NOT NULL DEFAULT '',
  `client_id` int(11) NOT NULL,
  PRIMARY KEY (`field_id`),
  UNIQUE KEY `client_id_field_name` (`client_id`,`field_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_clients_fields`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_group`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_group` (
  `wp_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `groupid` int(11) NOT NULL,
  PRIMARY KEY (`wp_group_id`),
  KEY `idx_wpid` (`wpid`),
  KEY `idx_groupid` (`groupid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_group`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_logs`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_logs` (
  `log_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `site_id` bigint(20) unsigned DEFAULT NULL,
  `item` text NOT NULL,
  `user_id` int(11) unsigned NOT NULL DEFAULT 0,
  `action` varchar(100) NOT NULL,
  `context` varchar(100) NOT NULL,
  `connector` varchar(100) NOT NULL,
  `state` tinyint(1) unsigned DEFAULT NULL,
  `created` int(11) NOT NULL DEFAULT 0,
  `duration` float(11,4) NOT NULL DEFAULT 0.0000,
  PRIMARY KEY (`log_id`),
  KEY `site_id` (`site_id`),
  KEY `user_id` (`user_id`),
  KEY `created` (`created`),
  KEY `duration` (`duration`),
  KEY `context` (`context`),
  KEY `connector` (`connector`),
  KEY `action` (`action`),
  KEY `state` (`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_logs`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_logs_meta`
--

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

--
-- Dumping data for table `wpj7_mainwp_wp_logs_meta`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_options`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_options` (
  `opt_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `name` text NOT NULL DEFAULT '',
  `value` longtext NOT NULL DEFAULT '',
  PRIMARY KEY (`opt_id`),
  KEY `idx_wpid` (`wpid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_options`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_settings_backup`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_settings_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_settings_backup` (
  `set_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `archiveFormat` text NOT NULL,
  PRIMARY KEY (`set_id`),
  KEY `idx_wpid` (`wpid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_settings_backup`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_status`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_status` (
  `statusid` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `http_code` smallint(6) NOT NULL DEFAULT 0,
  `status` tinyint(1) NOT NULL DEFAULT 0,
  `event_timestamp` int(11) NOT NULL,
  `duration` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`statusid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_status`
--

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

--
-- Table structure for table `wpj7_mainwp_wp_sync`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_sync`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_sync` (
  `sync_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `version` text NOT NULL DEFAULT '',
  `sync_errors` longtext NOT NULL DEFAULT '',
  `uptodate` longtext NOT NULL DEFAULT '',
  `dtsAutomaticSync` int(11) NOT NULL DEFAULT 0,
  `dtsAutomaticSyncStart` int(11) NOT NULL DEFAULT 0,
  `dtsSync` int(11) NOT NULL DEFAULT 0,
  `dtsSyncStart` int(11) NOT NULL DEFAULT 0,
  `totalsize` int(11) NOT NULL DEFAULT 0,
  `dbsize` int(11) NOT NULL DEFAULT 0,
  `extauth` text NOT NULL DEFAULT '',
  `last_post_gmt` int(11) NOT NULL DEFAULT 0,
  `health_value` int(11) NOT NULL DEFAULT 0,
  `health_status` tinyint(1) NOT NULL DEFAULT 0,
  `health_site_noticed` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`sync_id`),
  KEY `idx_wpid` (`wpid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_sync`
--

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

--
-- Table structure for table `wpj7_mo_campaign_log`
--

DROP TABLE IF EXISTS `wpj7_mo_campaign_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_campaign_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email_campaign_id` bigint(20) unsigned NOT NULL,
  `title` text NOT NULL,
  `content_html` longtext NOT NULL,
  `content_text` longtext NOT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'draft',
  `status_time` datetime DEFAULT NULL,
  `note` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_campaign_log`
--

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

--
-- Table structure for table `wpj7_mo_campaign_logmeta`
--

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

--
-- Dumping data for table `wpj7_mo_campaign_logmeta`
--

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

--
-- Table structure for table `wpj7_mo_conversions`
--

DROP TABLE IF EXISTS `wpj7_mo_conversions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_conversions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `optin_id` int(8) unsigned NOT NULL DEFAULT 0,
  `optin_type` varchar(50) NOT NULL DEFAULT '',
  `name` varchar(128) DEFAULT '',
  `email` varchar(128) NOT NULL DEFAULT '',
  `custom_fields` longtext DEFAULT NULL,
  `user_agent` varchar(150) DEFAULT '',
  `conversion_page` varchar(256) DEFAULT '',
  `referrer` varchar(256) DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_conversions`
--

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

--
-- Table structure for table `wpj7_mo_email_campaignmeta`
--

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

--
-- Dumping data for table `wpj7_mo_email_campaignmeta`
--

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

--
-- Table structure for table `wpj7_mo_email_campaigns`
--

DROP TABLE IF EXISTS `wpj7_mo_email_campaigns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_email_campaigns` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL,
  `campaign_type` varchar(40) NOT NULL,
  `template_class` varchar(50) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_email_campaigns`
--

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

--
-- Table structure for table `wpj7_mo_optin_campaignmeta`
--

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

--
-- Dumping data for table `wpj7_mo_optin_campaignmeta`
--

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

--
-- Table structure for table `wpj7_mo_optin_campaigns`
--

DROP TABLE IF EXISTS `wpj7_mo_optin_campaigns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_optin_campaigns` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `uuid` char(10) NOT NULL,
  `optin_class` varchar(50) NOT NULL,
  `optin_type` varchar(50) NOT NULL,
  `activated` char(6) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  UNIQUE KEY `uuid` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_optin_campaigns`
--

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

--
-- Table structure for table `wpj7_options`
--

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

--
-- Dumping data for table `wpj7_options`
--

LOCK TABLES `wpj7_options` WRITE;
/*!40000 ALTER TABLE `wpj7_options` DISABLE KEYS */;
INSERT INTO `wpj7_options` VALUES (1,'siteurl','https://www.nl.ecom-expansion.com','yes'),(2,'home','https://www.nl.ecom-expansion.com','yes'),(3,'blogname','Teng Shop','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','kotaro21.mail@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','55','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','d/m/Y','yes'),(24,'time_format','H:i','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:265:{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:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:17:\"alle-producten/?$\";s:27:\"index.php?post_type=product\";s:47:\"alle-producten/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:42:\"alle-producten/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:34:\"alle-producten/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:95:\"woocommerce_gpf/([^/]+)/gpf_start/([0-9]{1,})/gpf_limit/([0-9]{1,})/gpf_categories/(\\d+(,\\d+)*)\";s:108:\"index.php?woocommerce_gpf=$matches[1]&gpf_start=$matches[2]&gpf_limit=$matches[3]&gpf_categories=$matches[4]\";s:67:\"woocommerce_gpf/([^/]+)/gpf_start/([0-9]{1,})/gpf_limit/([0-9]{1,})\";s:81:\"index.php?woocommerce_gpf=$matches[1]&gpf_start=$matches[2]&gpf_limit=$matches[3]\";s:45:\"woocommerce_gpf/([^/]+)/gpf_start/([0-9]{1,})\";s:59:\"index.php?woocommerce_gpf=$matches[1]&gpf_start=$matches[2]\";s:51:\"woocommerce_gpf/([^/]+)/gpf_categories/(\\d+(,\\d+)*)\";s:64:\"index.php?woocommerce_gpf=$matches[1]&gpf_categories=$matches[2]\";s:23:\"woocommerce_gpf/([^/]+)\";s:37:\"index.php?woocommerce_gpf=$matches[1]\";s:61:\"^\\.well-known\\/apple-developer-merchantid-domain-association$\";s:57:\"index.php?apple-developer-merchantid-domain-association=1\";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:36:\"seedprod/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"seedprod/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"seedprod/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"seedprod/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"seedprod/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"seedprod/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"seedprod/([^/]+)/embed/?$\";s:41:\"index.php?seedprod=$matches[1]&embed=true\";s:29:\"seedprod/([^/]+)/trackback/?$\";s:35:\"index.php?seedprod=$matches[1]&tb=1\";s:37:\"seedprod/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?seedprod=$matches[1]&paged=$matches[2]\";s:44:\"seedprod/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?seedprod=$matches[1]&cpage=$matches[2]\";s:34:\"seedprod/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?seedprod=$matches[1]&wc-api=$matches[3]\";s:40:\"seedprod/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"seedprod/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"seedprod/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?seedprod=$matches[1]&page=$matches[2]\";s:25:\"seedprod/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"seedprod/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"seedprod/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"seedprod/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"seedprod/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"seedprod/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:50:\"collections/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:45:\"collections/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:26:\"collections/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:38:\"collections/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:20:\"collections/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:58:\"etiquette-produit/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:53:\"etiquette-produit/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:34:\"etiquette-produit/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:46:\"etiquette-produit/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:28:\"etiquette-produit/([^/]+)/?$\";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:43:\"pscw-size-chart/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"pscw-size-chart/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"pscw-size-chart/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"pscw-size-chart/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"pscw-size-chart/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"pscw-size-chart/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"pscw-size-chart/([^/]+)/embed/?$\";s:48:\"index.php?pscw-size-chart=$matches[1]&embed=true\";s:36:\"pscw-size-chart/([^/]+)/trackback/?$\";s:42:\"index.php?pscw-size-chart=$matches[1]&tb=1\";s:44:\"pscw-size-chart/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?pscw-size-chart=$matches[1]&paged=$matches[2]\";s:51:\"pscw-size-chart/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?pscw-size-chart=$matches[1]&cpage=$matches[2]\";s:41:\"pscw-size-chart/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?pscw-size-chart=$matches[1]&wc-api=$matches[3]\";s:47:\"pscw-size-chart/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:58:\"pscw-size-chart/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:40:\"pscw-size-chart/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?pscw-size-chart=$matches[1]&page=$matches[2]\";s:32:\"pscw-size-chart/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"pscw-size-chart/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"pscw-size-chart/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"pscw-size-chart/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"pscw-size-chart/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"pscw-size-chart/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"featured_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"featured_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"featured_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"featured_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"featured_item/([^/]+)/embed/?$\";s:46:\"index.php?featured_item=$matches[1]&embed=true\";s:34:\"featured_item/([^/]+)/trackback/?$\";s:40:\"index.php?featured_item=$matches[1]&tb=1\";s:54:\"featured_item/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:49:\"featured_item/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:42:\"featured_item/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&paged=$matches[2]\";s:49:\"featured_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&cpage=$matches[2]\";s:39:\"featured_item/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?featured_item=$matches[1]&wc-api=$matches[3]\";s:45:\"featured_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"featured_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"featured_item/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?featured_item=$matches[1]&page=$matches[2]\";s:30:\"featured_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"featured_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"featured_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"featured_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"featured_item_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:58:\"featured_item_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:39:\"featured_item_category/([^/]+)/embed/?$\";s:55:\"index.php?featured_item_category=$matches[1]&embed=true\";s:51:\"featured_item_category/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?featured_item_category=$matches[1]&paged=$matches[2]\";s:33:\"featured_item_category/([^/]+)/?$\";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=263&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:44:{i:0;s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:19:\"ast-pro/ast-pro.php\";i:3;s:52:\"bulk-edit-categories-tags-premium/taxonomy-terms.php\";i:4;s:33:\"classic-editor/classic-editor.php\";i:5;s:31:\"code-snippets/code-snippets.php\";i:6;s:27:\"coming-soon/coming-soon.php\";i:7;s:36:\"contact-form-7/wp-contact-form-7.php\";i:8;s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";i:9;s:35:\"google-site-kit/google-site-kit.php\";i:10;s:63:\"gpt3-ai-content-generator-premium/gpt3-ai-content-generator.php\";i:11;s:47:\"jwt-authentication-for-wp-rest-api/jwt-auth.php\";i:12;s:23:\"loco-translate/loco.php\";i:13;s:23:\"mailoptin/mailoptin.php\";i:14;s:29:\"mainwp-child/mainwp-child.php\";i:15;s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";i:16;s:19:\"members/members.php\";i:17;s:29:\"o2s-wp-tiger/o2s-wp-tiger.php\";i:19;s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";i:20;s:27:\"redirection/redirection.php\";i:21;s:30:\"seo-by-rank-math/rank-math.php\";i:22;s:27:\"svg-support/svg-support.php\";i:23;s:84:\"wc-abandoned-carts-by-small-fish-analytics/class-sfa-woocommerce-abandoned-carts.php\";i:24;s:53:\"webp-converter-for-media/webp-converter-for-media.php\";i:25;s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";i:26;s:45:\"woo-products-bulk-editor-premium/products.php\";i:27;s:49:\"woo-variation-swatches/woo-variation-swatches.php\";i:28;s:73:\"woocommerce-advanced-free-shipping/woocommerce-advanced-free-shipping.php\";i:29;s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";i:30;s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";i:31;s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";i:32;s:45:\"woocommerce-product-feeds/woocommerce-gpf.php\";i:33;s:27:\"woocommerce/woocommerce.php\";i:34;s:23:\"wordfence/wordfence.php\";i:35;s:39:\"wp-all-export-pro/wp-all-export-pro.php\";i:36;s:39:\"wp-all-import-pro/wp-all-import-pro.php\";i:37;s:35:\"wp-mail-logging/wp-mail-logging.php\";i:38;s:23:\"wp-rocket/wp-rocket.php\";i:39;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:40;s:39:\"wpae-acf-add-on/wpae-acf-add-on-pro.php\";i:41;s:51:\"wpae-woocommerce-add-on/wpae-woocommerce-add-on.php\";i:42;s:35:\"wpai-acf-add-on/wpai-acf-add-on.php\";i:43;s:51:\"wpai-woocommerce-add-on/wpai-woocommerce-add-on.php\";i:44;s:47:\"wpvivid-backuprestore/wpvivid-backuprestore.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','55','yes'),(39,'recently_edited','a:5:{i:0;s:87:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome/assets/css/flatsome.css\";i:1;s:73:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome/style.css\";i:2;s:82:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome-child/custom-js.js\";i:3;s:79:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome-child/style.css\";i:4;s:83:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome-child/functions.php\";}','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','administrator','yes'),(46,'db_version','56657','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','0','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','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:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:9:{s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:20:\"worker/functions.php\";s:13:\"mwp_uninstall\";s:40:\"woo-product-feed-pro/woocommerce-sea.php\";s:21:\"uninstall_woosea_feed\";s:83:\"home/customer/www/teng-shop.com/public_html/wp-content/plugins/worker/functions.php\";s:13:\"mwp_uninstall\";s:86:\"home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/functions.php\";s:13:\"mwp_uninstall\";s:27:\"perfmatters/perfmatters.php\";s:21:\"perfmatters_uninstall\";s:53:\"webp-converter-for-media/webp-converter-for-media.php\";a:2:{i:0;s:37:\"WebpConverter\\Plugin\\UninstallHandler\";i:1;s:22:\"load_uninstall_actions\";}s:63:\"gpt3-ai-content-generator-premium/gpt3-ai-content-generator.php\";s:33:\"uninstall_wp_ai_content_generator\";s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";}','no'),(80,'timezone_string','Europe/Amsterdam','yes'),(81,'page_for_posts','155','yes'),(82,'page_on_front','263','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','9747','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','1719690924','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wpj7_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:241:{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:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";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:16:\"restrict_content\";b:1;s:10:\"list_roles\";b:1;s:12:\"create_roles\";b:1;s:12:\"delete_roles\";b:1;s:10:\"edit_roles\";b:1;s:23:\"rank_math_edit_htaccess\";b:1;s:16:\"rank_math_titles\";b:1;s:17:\"rank_math_general\";b:1;s:17:\"rank_math_sitemap\";b:1;s:21:\"rank_math_404_monitor\";b:1;s:22:\"rank_math_link_builder\";b:1;s:22:\"rank_math_redirections\";b:1;s:22:\"rank_math_role_manager\";b:1;s:19:\"rank_math_analytics\";b:1;s:23:\"rank_math_site_analysis\";b:1;s:25:\"rank_math_onpage_analysis\";b:1;s:24:\"rank_math_onpage_general\";b:1;s:25:\"rank_math_onpage_advanced\";b:1;s:24:\"rank_math_onpage_snippet\";b:1;s:23:\"rank_math_onpage_social\";b:1;s:20:\"rank_math_content_ai\";b:1;s:19:\"rank_math_admin_bar\";b:1;s:10:\"loco_admin\";b:1;s:22:\"edit_klaviyo_shop_cart\";b:1;s:22:\"read_klaviyo_shop_cart\";b:1;s:24:\"delete_klaviyo_shop_cart\";b:1;s:23:\"edit_klaviyo_shop_carts\";b:1;s:30:\"edit_others_klaviyo_shop_carts\";b:1;s:26:\"publish_klaviyo_shop_carts\";b:1;s:31:\"read_private_klaviyo_shop_carts\";b:1;s:25:\"delete_klaviyo_shop_carts\";b:1;s:33:\"delete_private_klaviyo_shop_carts\";b:1;s:35:\"delete_published_klaviyo_shop_carts\";b:1;s:32:\"delete_others_klaviyo_shop_carts\";b:1;s:31:\"edit_private_klaviyo_shop_carts\";b:1;s:33:\"edit_published_klaviyo_shop_carts\";b:1;s:30:\"manage_klaviyo_shop_cart_terms\";b:1;s:28:\"edit_klaviyo_shop_cart_terms\";b:1;s:30:\"delete_klaviyo_shop_cart_terms\";b:1;s:30:\"assign_klaviyo_shop_cart_terms\";b:1;s:15:\"wpaicg_settings\";b:1;s:21:\"wpaicg_single_content\";b:1;s:29:\"wpaicg_single_content_express\";b:1;s:28:\"wpaicg_single_content_custom\";b:1;s:32:\"wpaicg_single_content_comparison\";b:1;s:28:\"wpaicg_single_content_speech\";b:1;s:32:\"wpaicg_single_content_playground\";b:1;s:26:\"wpaicg_single_content_logs\";b:1;s:19:\"wpaicg_bulk_content\";b:1;s:24:\"wpaicg_bulk_content_bulk\";b:1;s:26:\"wpaicg_bulk_content_editor\";b:1;s:23:\"wpaicg_bulk_content_csv\";b:1;s:30:\"wpaicg_bulk_content_copy-paste\";b:1;s:33:\"wpaicg_bulk_content_google-sheets\";b:1;s:23:\"wpaicg_bulk_content_rss\";b:1;s:25:\"wpaicg_bulk_content_tweet\";b:1;s:28:\"wpaicg_bulk_content_tracking\";b:1;s:27:\"wpaicg_bulk_content_setting\";b:1;s:14:\"wpaicg_chatgpt\";b:1;s:24:\"wpaicg_chatgpt_shortcode\";b:1;s:21:\"wpaicg_chatgpt_widget\";b:1;s:19:\"wpaicg_chatgpt_bots\";b:1;s:18:\"wpaicg_chatgpt_pdf\";b:1;s:19:\"wpaicg_chatgpt_logs\";b:1;s:23:\"wpaicg_chatgpt_settings\";b:1;s:22:\"wpaicg_image_generator\";b:1;s:28:\"wpaicg_image_generator_dalle\";b:1;s:39:\"wpaicg_image_generator_stable-diffusion\";b:1;s:33:\"wpaicg_image_generator_shortcodes\";b:1;s:27:\"wpaicg_image_generator_logs\";b:1;s:31:\"wpaicg_image_generator_settings\";b:1;s:12:\"wpaicg_forms\";b:1;s:18:\"wpaicg_forms_forms\";b:1;s:17:\"wpaicg_forms_logs\";b:1;s:21:\"wpaicg_forms_settings\";b:1;s:17:\"wpaicg_promptbase\";b:1;s:28:\"wpaicg_promptbase_promptbase\";b:1;s:22:\"wpaicg_promptbase_logs\";b:1;s:26:\"wpaicg_promptbase_settings\";b:1;s:17:\"wpaicg_embeddings\";b:1;s:25:\"wpaicg_embeddings_content\";b:1;s:22:\"wpaicg_embeddings_logs\";b:1;s:21:\"wpaicg_embeddings_pdf\";b:1;s:25:\"wpaicg_embeddings_builder\";b:1;s:26:\"wpaicg_embeddings_settings\";b:1;s:30:\"wpaicg_embeddings_troubleshoot\";b:1;s:15:\"wpaicg_finetune\";b:1;s:22:\"wpaicg_finetune_upload\";b:1;s:22:\"wpaicg_finetune_manual\";b:1;s:20:\"wpaicg_finetune_data\";b:1;s:21:\"wpaicg_finetune_files\";b:1;s:26:\"wpaicg_finetune_file-tunes\";b:1;s:12:\"wpaicg_audio\";b:1;s:22:\"wpaicg_audio_converter\";b:1;s:17:\"wpaicg_audio_logs\";b:1;s:11:\"wpaicg_help\";b:1;s:19:\"wpaicg_help_chatgpt\";b:1;s:19:\"wpaicg_help_article\";b:1;s:23:\"wpaicg_help_woocommerce\";b:1;s:19:\"wpaicg_help_autogpt\";b:1;s:17:\"wpaicg_help_image\";b:1;s:18:\"wpaicg_help_aiform\";b:1;s:21:\"wpaicg_help_assistant\";b:1;s:17:\"wpaicg_help_audio\";b:1;s:19:\"wpaicg_help_compare\";b:1;s:20:\"wpaicg_comment_reply\";b:1;s:19:\"wpaicg_ai_assistant\";b:1;s:24:\"wpaicg_instant_embedding\";b:1;s:33:\"wpaicg_woocommerce_product_writer\";b:1;s:27:\"wpaicg_woocommerce_meta_box\";b:1;s:26:\"wpaicg_woocommerce_content\";b:1;s:16:\"wpaicg_suggester\";b:1;s:15:\"wpaicg_meta_box\";b:1;s:19:\"wpaicg_myai_account\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:39:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:23:\"rank_math_site_analysis\";b:1;s:25:\"rank_math_onpage_analysis\";b:1;s:24:\"rank_math_onpage_general\";b:1;s:24:\"rank_math_onpage_snippet\";b:1;s:23:\"rank_math_onpage_social\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:14:{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:25:\"rank_math_onpage_analysis\";b:1;s:24:\"rank_math_onpage_general\";b:1;s:24:\"rank_math_onpage_snippet\";b:1;s:23:\"rank_math_onpage_social\";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:109:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:22:\"edit_klaviyo_shop_cart\";b:1;s:22:\"read_klaviyo_shop_cart\";b:1;s:24:\"delete_klaviyo_shop_cart\";b:1;s:23:\"edit_klaviyo_shop_carts\";b:1;s:30:\"edit_others_klaviyo_shop_carts\";b:1;s:26:\"publish_klaviyo_shop_carts\";b:1;s:31:\"read_private_klaviyo_shop_carts\";b:1;s:25:\"delete_klaviyo_shop_carts\";b:1;s:33:\"delete_private_klaviyo_shop_carts\";b:1;s:35:\"delete_published_klaviyo_shop_carts\";b:1;s:32:\"delete_others_klaviyo_shop_carts\";b:1;s:31:\"edit_private_klaviyo_shop_carts\";b:1;s:33:\"edit_published_klaviyo_shop_carts\";b:1;s:30:\"manage_klaviyo_shop_cart_terms\";b:1;s:28:\"edit_klaviyo_shop_cart_terms\";b:1;s:30:\"delete_klaviyo_shop_cart_terms\";b:1;s:30:\"assign_klaviyo_shop_cart_terms\";b:1;}}s:10:\"translator\";a:2:{s:4:\"name\";s:10:\"Translator\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:10:\"loco_admin\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:3:{i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:22:\"woocommerce_products-2\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:16:\"sidebar-footer-2\";a:0:{}s:12:\"shop-sidebar\";a:4:{i:0;s:28:\"woocommerce_product_search-2\";i:1;s:26:\"woocommerce_price_filter-2\";i:2;s:32:\"woocommerce_product_categories-2\";i:3;s:38:\"woocommerce_recently_viewed_products-3\";}s:15:\"product-sidebar\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:52:{i:1704392210;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:1704392560;a:1:{s:23:\"mainwp_cronstats_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1704392725;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:1704392731;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:1704392832;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:1704392890;a:1:{s:39:\"cartflows_ca_update_order_status_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"every_fifteen_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1200;}}}i:1704392946;a:4:{s:33:\"wpaicg_remove_chat_tokens_limited\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:34:\"wpaicg_remove_image_tokens_limited\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:34:\"wpaicg_remove_forms_tokens_limited\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:39:\"wpaicg_remove_promptbase_tokens_limited\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1704393202;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1704393207;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1704394026;a:1:{s:23:\"rocket_purge_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:34:\"rocket_expired_cache_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1704394457;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1704395399;a:1:{s:23:\"mo_hourly_recurring_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1704395429;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:1704396552;a:1:{s:22:\"vi_wbe_remove_revision\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704400530;a:1:{s:30:\"scheduled_cron_shipment_length\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704404240;a:1:{s:22:\"mo_daily_recurring_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704404883;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:1704405368;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704407592;a:1:{s:26:\"wordfence_daily_autoUpdate\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704407607;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704409200;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704410118;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:1704412600;a:1:{s:41:\"googlesitekit_cron_update_remote_features\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1704412699;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:1704412700;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:1704412800;a:2:{s:35:\"rank_math/redirection/clean_trashed\";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:\"rank_math/links/internal_links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704414323;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:1704415095;a:1:{s:25:\"ast-pro_license_cron_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:19:\"license_cron_events\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704420908;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704425232;a:3:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1704429350;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1704431708;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1704433407;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1704467532;a:1:{s:22:\"mwp_update_public_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:1704468160;a:1:{s:28:\"mainwp_cronpingchilds_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704468432;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:1704468435;a:1:{s:37:\"siteground_optimizer_check_assets_dir\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704468467;a:1:{s:35:\"siteground_security_clear_logs_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704469480;a:1:{s:35:\"rank_math/content-ai/update_prompts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704472706;a:1:{s:20:\"wpse_delete_old_csvs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704475200;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"99be889ada518f020780d3be08ea957d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1704475200;}}}}i:1704477012;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1704481401;a:1:{s:40:\"flatsome_instagram_refresh_access_tokens\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1704513970;a:1:{s:27:\"rocket_update_dynamic_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1704514570;a:1:{s:36:\"rocket_preload_clean_rows_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1704726619;a:1:{s:19:\"jwt_auth_share_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1704733032;a:1:{s:29:\"seedprod_lite_fetch_help_docs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1704734400;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"4c2073496154478e169d06c44597c387\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1704734400;}}}}i:1704900432;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1704993600;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"8f391710034c7a5fdb3630e46db048bf\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1704993600;}}}}i:1705101368;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:25:\"Waar ben je naar op zoek?\";}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:2:{i:2;a:3:{s:5:\"title\";s:17:\"Laatste artikelen\";s:6:\"number\";i:4;s:9:\"show_date\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(125,'siteground_optimizer_heartbeat_post_interval','120','yes'),(126,'siteground_optimizer_heartbeat_dashboard_interval','0','yes'),(127,'siteground_optimizer_heartbeat_frontend_interval','0','yes'),(128,'siteground_optimizer_excluded_lazy_load_media_types','a:9:{i:0;s:15:\"lazyload_mobile\";i:1;s:16:\"lazyload_iframes\";i:2;s:15:\"lazyload_videos\";i:3;s:18:\"lazyload_gravatars\";i:4;s:19:\"lazyload_thumbnails\";i:5;s:19:\"lazyload_responsive\";i:6;s:20:\"lazyload_textwidgets\";i:7;s:19:\"lazyload_shortcodes\";i:8;s:20:\"lazyload_woocommerce\";}','yes'),(129,'siteground_optimizer_enable_cache','1','yes'),(130,'siteground_optimizer_autoflush_cache','1','yes'),(131,'siteground_optimizer_version','7.2.3','yes'),(134,'siteground_optimizer_update_timestamp','1669130834','yes'),(135,'siteground_optimizer_database_optimization','a:0:{}','yes'),(136,'sgo_install_service','1','yes'),(137,'sgo_pre_migration_speed_test','a:6:{s:4:\"data\";a:1:{s:6:\"hidden\";a:2:{s:4:\"info\";N;s:4:\"data\";a:1:{s:5:\"other\";a:11:{i:0;a:8:{s:2:\"id\";s:17:\"max-potential-fid\";s:5:\"title\";s:31:\"Max Potential First Input Delay\";s:11:\"description\";s:170:\"The maximum potential First Input Delay that your users could experience is the duration of the longest task. [Learn more](https://web.dev/lighthouse-max-potential-fid/).\";s:5:\"score\";i:1;s:16:\"scoreDisplayMode\";s:7:\"numeric\";s:12:\"displayValue\";s:6:\"20 ms\";s:12:\"numericValue\";i:16;s:11:\"numericUnit\";s:11:\"millisecond\";}i:1;a:8:{s:2:\"id\";s:22:\"first-meaningful-paint\";s:5:\"title\";s:22:\"First Meaningful Paint\";s:11:\"description\";s:133:\"First Meaningful Paint measures when the primary content of a page is visible. [Learn more](https://web.dev/first-meaningful-paint/).\";s:5:\"score\";i:1;s:16:\"scoreDisplayMode\";s:7:\"numeric\";s:12:\"displayValue\";s:6:\"0.3 s\";s:12:\"numericValue\";i:292;s:11:\"numericUnit\";s:11:\"millisecond\";}i:2;a:6:{s:2:\"id\";s:16:\"network-requests\";s:5:\"title\";s:16:\"Network Requests\";s:11:\"description\";s:59:\"Lists the network requests that were made during page load.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:4:{s:8:\"headings\";a:9:{i:0;a:3:{s:8:\"itemType\";s:3:\"url\";s:3:\"key\";s:3:\"url\";s:4:\"text\";s:3:\"URL\";}i:1;a:3:{s:3:\"key\";s:8:\"protocol\";s:8:\"itemType\";s:4:\"text\";s:4:\"text\";s:8:\"Protocol\";}i:2;a:4:{s:8:\"itemType\";s:2:\"ms\";s:11:\"granularity\";i:1;s:3:\"key\";s:9:\"startTime\";s:4:\"text\";s:10:\"Start Time\";}i:3;a:4:{s:3:\"key\";s:7:\"endTime\";s:8:\"itemType\";s:2:\"ms\";s:11:\"granularity\";i:1;s:4:\"text\";s:8:\"End Time\";}i:4;a:5:{s:4:\"text\";s:13:\"Transfer Size\";s:8:\"itemType\";s:5:\"bytes\";s:11:\"displayUnit\";s:2:\"kb\";s:11:\"granularity\";i:1;s:3:\"key\";s:12:\"transferSize\";}i:5;a:5:{s:11:\"granularity\";i:1;s:8:\"itemType\";s:5:\"bytes\";s:3:\"key\";s:12:\"resourceSize\";s:4:\"text\";s:13:\"Resource Size\";s:11:\"displayUnit\";s:2:\"kb\";}i:6;a:3:{s:3:\"key\";s:10:\"statusCode\";s:8:\"itemType\";s:4:\"text\";s:4:\"text\";s:11:\"Status Code\";}i:7;a:3:{s:3:\"key\";s:8:\"mimeType\";s:8:\"itemType\";s:4:\"text\";s:4:\"text\";s:9:\"MIME Type\";}i:8;a:3:{s:4:\"text\";s:13:\"Resource Type\";s:3:\"key\";s:12:\"resourceType\";s:8:\"itemType\";s:4:\"text\";}}s:5:\"items\";a:5:{i:0;a:11:{s:25:\"experimentalFromMainFrame\";b:1;s:7:\"endTime\";d:676.41499987803399562835693359375;s:9:\"startTime\";i:0;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:8:\"Document\";s:12:\"transferSize\";i:10187;s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:8:\"finished\";b:1;s:12:\"resourceSize\";i:51898;s:10:\"statusCode\";i:200;s:8:\"mimeType\";s:9:\"text/html\";}i:1;a:11:{s:8:\"finished\";b:1;s:9:\"startTime\";d:689.97899978421628475189208984375;s:8:\"protocol\";s:2:\"h2\";s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceType\";s:10:\"Stylesheet\";s:12:\"transferSize\";i:2421;s:12:\"resourceSize\";i:15342;s:3:\"url\";s:87:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/style.min.css?ver=6.1.1\";s:7:\"endTime\";d:909.134999848902225494384765625;s:8:\"mimeType\";s:8:\"text/css\";s:10:\"statusCode\";i:200;}i:2;a:11:{s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"resourceSize\";i:1144;s:12:\"resourceType\";s:6:\"Script\";s:12:\"transferSize\";i:600;s:10:\"statusCode\";i:200;s:25:\"experimentalFromMainFrame\";b:1;s:7:\"endTime\";d:1103.2289997674524784088134765625;s:8:\"protocol\";s:2:\"h2\";s:9:\"startTime\";d:690.1349998079240322113037109375;s:8:\"finished\";b:1;s:3:\"url\";s:100:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/view.min.js?ver=c24330f635f5cb9d5e0e\";}i:3;a:11:{s:12:\"transferSize\";i:2935;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"finished\";b:1;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:6:\"Script\";s:12:\"resourceSize\";i:7779;s:10:\"statusCode\";i:200;s:3:\"url\";s:106:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/view-modal.min.js?ver=45f05135277abf0b0408\";s:8:\"mimeType\";s:22:\"application/javascript\";s:9:\"startTime\";d:690.26799988932907581329345703125;s:7:\"endTime\";d:796.02299979887902736663818359375;}i:4;a:11:{s:7:\"endTime\";d:1104.9199998378753662109375;s:12:\"transferSize\";i:5087;s:8:\"mimeType\";s:22:\"application/javascript\";s:10:\"statusCode\";i:200;s:8:\"finished\";b:1;s:9:\"startTime\";d:910.69499985314905643463134765625;s:12:\"resourceSize\";i:18617;s:3:\"url\";s:82:\"https://www.nl.ecom-expansion.com/wp-includes/js/wp-emoji-release.min.js?ver=6.1.1\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:6:\"Script\";}}s:9:\"debugData\";a:2:{s:4:\"type\";s:9:\"debugdata\";s:18:\"networkStartTimeTs\";i:1305596373517;}s:4:\"type\";s:5:\"table\";}}i:3;a:9:{s:2:\"id\";s:11:\"network-rtt\";s:5:\"title\";s:24:\"Network Round Trip Times\";s:11:\"description\";s:241:\"Network round trip times (RTT) have a large impact on performance. If the RTT to an origin is high, it\'s an indication that servers closer to the user could improve performance. [Learn more](https://hpbn.co/primer-on-latency-and-bandwidth/).\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:12:\"displayValue\";s:5:\"0 ms\";s:7:\"details\";a:3:{s:4:\"type\";s:5:\"table\";s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}}s:12:\"numericValue\";i:0;s:11:\"numericUnit\";s:11:\"millisecond\";}i:4;a:9:{s:2:\"id\";s:22:\"network-server-latency\";s:5:\"title\";s:24:\"Server Backend Latencies\";s:11:\"description\";s:256:\"Server latencies can impact web performance. If the server latency of an origin is high, it\'s an indication the server is overloaded or has poor backend performance. [Learn more](https://hpbn.co/primer-on-web-performance/#analyzing-the-resource-waterfall).\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:12:\"displayValue\";s:5:\"0 ms\";s:7:\"details\";a:3:{s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}s:4:\"type\";s:5:\"table\";}s:12:\"numericValue\";i:0;s:11:\"numericUnit\";s:11:\"millisecond\";}i:5;a:6:{s:2:\"id\";s:17:\"main-thread-tasks\";s:5:\"title\";s:5:\"Tasks\";s:11:\"description\";s:68:\"Lists the toplevel main thread tasks that executed during page load.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:3:{s:8:\"headings\";a:2:{i:0;a:4:{s:4:\"text\";s:10:\"Start Time\";s:11:\"granularity\";i:1;s:8:\"itemType\";s:2:\"ms\";s:3:\"key\";s:9:\"startTime\";}i:1;a:4:{s:3:\"key\";s:8:\"duration\";s:8:\"itemType\";s:2:\"ms\";s:4:\"text\";s:8:\"End Time\";s:11:\"granularity\";i:1;}}s:5:\"items\";a:3:{i:0;a:2:{s:8:\"duration\";d:12.7260000000000008668621376273222267627716064453125;s:9:\"startTime\";d:681.9389999999999645297066308557987213134765625;}i:1;a:2:{s:8:\"duration\";d:41.99600000000000221689333557151257991790771484375;s:9:\"startTime\";d:695.029999999999972715158946812152862548828125;}i:2;a:2:{s:8:\"duration\";d:14.407000000000000028421709430404007434844970703125;s:9:\"startTime\";d:1108.865999999999985448084771633148193359375;}}s:4:\"type\";s:5:\"table\";}}i:6;a:6:{s:2:\"id\";s:11:\"diagnostics\";s:5:\"title\";s:11:\"Diagnostics\";s:11:\"description\";s:33:\"Collection of useful page vitals.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:2:{s:4:\"type\";s:9:\"debugdata\";s:5:\"items\";a:1:{i:0;a:17:{s:16:\"numTasksOver25ms\";i:1;s:8:\"numTasks\";i:113;s:17:\"numTasksOver500ms\";i:0;s:6:\"maxRtt\";d:5.0730674999999987306864568381570279598236083984375;s:24:\"mainDocumentTransferSize\";i:10187;s:15:\"totalByteWeight\";i:21230;s:16:\"maxServerLatency\";N;s:3:\"rtt\";d:5.0730674999999987306864568381570279598236083984375;s:10:\"throughput\";d:7076750087.8232021331787109375;s:8:\"numFonts\";i:0;s:11:\"numRequests\";i:5;s:17:\"numTasksOver100ms\";i:0;s:13:\"totalTaskTime\";d:94.8260000000000076170181273482739925384521484375;s:10:\"numScripts\";i:3;s:14:\"numStylesheets\";i:1;s:16:\"numTasksOver50ms\";i:0;s:16:\"numTasksOver10ms\";i:3;}}}}i:7;a:8:{s:2:\"id\";s:7:\"metrics\";s:5:\"title\";s:7:\"Metrics\";s:11:\"description\";s:31:\"Collects all available metrics.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:2:{s:5:\"items\";a:2:{i:0;a:41:{s:20:\"firstContentfulPaint\";i:292;s:25:\"observedNavigationStartTs\";i:1305596371825;s:26:\"observedLastVisualChangeTs\";i:1305597523825;s:15:\"maxPotentialFID\";i:16;s:24:\"observedLastVisualChange\";i:1152;s:22:\"largestContentfulPaint\";i:292;s:18:\"observedFirstPaint\";i:1146;s:20:\"firstMeaningfulPaint\";i:292;s:38:\"observedCumulativeLayoutShiftMainFrame\";i:0;s:30:\"observedFirstContentfulPaintTs\";i:1305597518274;s:30:\"observedLargestContentfulPaint\";i:1146;s:32:\"observedLargestContentfulPaintTs\";i:1305597518274;s:23:\"observedNavigationStart\";i:0;s:29:\"observedCumulativeLayoutShift\";i:0;s:10:\"speedIndex\";i:782;s:16:\"observedTraceEnd\";i:3462;s:26:\"observedDomContentLoadedTs\";i:1305597499791;s:21:\"cumulativeLayoutShift\";i:0;s:30:\"observedFirstMeaningfulPaintTs\";i:1305597518274;s:28:\"observedFirstMeaningfulPaint\";i:1146;s:18:\"observedTraceEndTs\";i:1305599834074;s:27:\"observedFirstVisualChangeTs\";i:1305597506825;s:24:\"observedDomContentLoaded\";i:1128;s:14:\"observedLoadTs\";i:1305597506113;s:12:\"observedLoad\";i:1134;s:20:\"observedFirstPaintTs\";i:1305597518274;s:26:\"totalCumulativeLayoutShift\";i:0;s:39:\"observedFirstContentfulPaintAllFramesTs\";i:1305597518274;s:34:\"observedTotalCumulativeLayoutShift\";i:0;s:20:\"observedTimeOriginTs\";i:1305596371825;s:11:\"interactive\";i:292;s:28:\"observedFirstContentfulPaint\";i:1146;s:18:\"observedTimeOrigin\";i:0;s:20:\"observedSpeedIndexTs\";i:1305597508177;s:17:\"totalBlockingTime\";i:0;s:41:\"observedLargestContentfulPaintAllFramesTs\";i:1305597518274;s:25:\"observedFirstVisualChange\";i:1135;s:18:\"observedSpeedIndex\";i:1136;s:39:\"observedLargestContentfulPaintAllFrames\";i:1146;s:37:\"observedFirstContentfulPaintAllFrames\";i:1146;s:30:\"cumulativeLayoutShiftMainFrame\";i:0;}i:1;a:1:{s:14:\"lcpInvalidated\";b:0;}}s:4:\"type\";s:9:\"debugdata\";}s:12:\"numericValue\";i:292;s:11:\"numericUnit\";s:11:\"millisecond\";}i:8;a:6:{s:2:\"id\";s:21:\"screenshot-thumbnails\";s:5:\"title\";s:21:\"Screenshot Thumbnails\";s:11:\"description\";s:47:\"This is what the load of your site looked like.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:3:{s:4:\"type\";s:9:\"filmstrip\";s:5:\"items\";a:10:{i:0;a:3:{s:9:\"timestamp\";i:1305596671825;s:4:\"data\";s:1223:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1ToAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgD//Z\";s:6:\"timing\";i:300;}i:1;a:3:{s:4:\"data\";s:1223:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1ToAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgD//Z\";s:6:\"timing\";i:600;s:9:\"timestamp\";i:1305596971825;}i:2;a:3:{s:6:\"timing\";i:900;s:9:\"timestamp\";i:1305597271825;s:4:\"data\";s:1223:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1ToAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgD//Z\";}i:3;a:3:{s:9:\"timestamp\";i:1305597571825;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";s:6:\"timing\";i:1200;}i:4;a:3:{s:6:\"timing\";i:1500;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";s:9:\"timestamp\";i:1305597871825;}i:5;a:3:{s:9:\"timestamp\";i:1305598171825;s:6:\"timing\";i:1800;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";}i:6;a:3:{s:6:\"timing\";i:2100;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";s:9:\"timestamp\";i:1305598471825;}i:7;a:3:{s:9:\"timestamp\";i:1305598771825;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";s:6:\"timing\";i:2400;}i:8;a:3:{s:9:\"timestamp\";i:1305599071825;s:6:\"timing\";i:2700;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";}i:9;a:3:{s:9:\"timestamp\";i:1305599371825;s:6:\"timing\";i:3000;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";}}s:5:\"scale\";i:3000;}}i:9;a:6:{s:2:\"id\";s:16:\"final-screenshot\";s:5:\"title\";s:16:\"Final Screenshot\";s:11:\"description\";s:45:\"The last screenshot captured of the pageload.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:4:{s:9:\"timestamp\";i:1305597524010;s:6:\"timing\";i:1152;s:4:\"data\";s:15847:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAFcAfQDASIAAhEBAxEB/8QAHAABAAIDAQEBAAAAAAAAAAAAAAUGAQQHAwII/8QASBAAAQMDAwEFBQYDBQYDCQAAAQACAwQFEQYSITEHEyJBURQWMmGRFVJWcZTSI0JUCGKBgpIXJDM1crI0Njd0dnehscLE0fH/xAAaAQEBAAMBAQAAAAAAAAAAAAAABAIDBgUB/8QAJhEBAAIBAwIFBQAAAAAAAAAAAAECAwQFERQhEhZRU6EGYXGRsf/aAAwDAQACEQMRAD8A/VKIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICr2sLlcLXFRz2/u3RmR4mjNO6V7mtie/wYe3B8GOc/ErCiCiR6+kdDHK60gRPIZ3jakOYHHvMHcG42AREud1GehXtcdXVDKexVVM2mjgrsmRh/iOd42tAjO5odwXHjLumGnlXGpp4amB8NREyWF4w5j25B/MJBDFTwRwwRsihjaGsYwYa0DoAPJBQYu0KogtUc9xtQbUCFksjGTY37o43/wwW847zLh/KATkq4afun2vbW1QjYzL3M/hyd4x2DjLXYGR88LfmijmifFMxr43tLXNcMhwPUEei+wABgcBAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQF8TucyCR7BlzWkgepwvtEFFi1deKKGkF3s5M1QN4MYMYjaWZBeAX4G4OBw4kDacZOFu2nV81xpKqoFpmjZFDHKxxflr94HyyGjOc4PAJxxhWuWNksbo5WNfG4Yc1wyCPQhZYxsbGsY0NY0YDQMAD0QUs6wuFPFTGoslRUPlpWVJ9nBGC7PgDSMkjHXjlzQcZyPpmsa+WSRkGn53bXubudKQ0gPawHhhPO7dgj4efkrmiChSa8q97H09iqJ4CZWnY48OY8NALiAGnh3h55LOeTi+g5APRYa1rRhrQBnOAFlAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQERc17e9Rag05pO2y6Rmjhu1bdIKGMyRteD3gdxhwI6gcoOlIqVbddU0/ZNHrObAjFuNXLGOMSNb4ox894LfzVF7P9a6juXZzW12qr5TWu7Ut/FufOaMPaAHxgw7Gjq4uc3d5Zz5IO3oqdfu0vSdhuFVQXO6hlfSua2amjgklkblgeDta0kja4EkcDPKkJNaacj0mzUz7vTCxvaHMq8ktdk4wB1Ls8bcZzxhBYUXLqDtIp7/2m2S1aerxLbpaGqlq4JKd0UrZGd3sJa9oc0YcceRUd2adsllq9I2p+rL3E28zPeyokFO4RRu71zWB72t2MJaG8Ej180HYkVI94a//AGz+7/fM+yfsD2/u9gz3vtGzdu642+XRZg7VNGT3VlBFe4jK+b2dk3dSCB8n3BNt7sn8nILsih4dS2iY3kMrWZs7i2vDmub3GGb+cjkbecjIWvHrOwS6et98juLH2u4SsgpZmsce9e92xrQ3Gcl3HRBYEVFufazoq21E8NXe2iWnlfDO2Onlk7lzHFrt+1p2jcCMng44yrDVans1LJZmS18ebw7ZQFgL2znbuGCARjHOTwgmUXxNLHBC+WZ7Y4mNLnPccBoHUk+QVKoO1bRtfcqWiprxmSrk7mnkfTyshmf0DWSuaGOJ8sHnyQXhFpXueSls1fUQnEsVPJIw4zghpIXN+zvtdsFy05p2O+XqL7brIImzv7hzYfaHNB2GQN7trufhzlB1VFSaDUVa7tXv9mqaiNtporVT1bGuaBse57w5xd1xho6r6tXajo663WC30V5jfPUPMUD3QyMineP5Y5HNDHn5AnPkguiKran7QNM6ZuLKC8XIRVjo+9MMUMkzmR/feGNO1vzOFKab1DatTUD62w1sdbSMldAZY87S9vUAnr+Y4KCVRVrVOuNP6Xq4aS8VxZWTMMjKaGGSeUsBxu2RtcQ35kYVX152i0w7NhqbSF1p5IBXU1O+oLOGNdMxsjXNeMtIaT1AI6oOmoqppvtC0xqS6G3Wi6NlrdhlZFJFJEZWDq6Pe0B7fm3K17x2oaPs91nt9feWMqKdwZUOZDJJHA49BJI1paw/mRjzQXNFGPv9rZdrfbTWRmsuEL6ilY0FwljZgucHAYx4h5854UJq/XdqsNr1K9lQ2S42WlbPNT9287XPae6BwOjiOo6eeEFuRVjs11RHrDRdru7HB08sDPaQ2J8bWzbGl7WhwyQCeDyPmVrXvtK0pZbnVW6vuhFwpXAT00NNLNJGC0P3FrGk7drgd3QZ6oLgi5r2hdoEFrtWjr1Z7tSCyXK7RQ1NX4XRupyx5dyenw/mMYVh0vr3Tmqquqo7Jce9rKePvXwywyQvDD0eGvaCW/McchBaUXJ7brC5PrOzWGnvkF3pb1PWsq6yOk7ltQI43ubhpGWYIxx1x81Zbz2n6Ps10nt9wvDGVFO4NqCyGSSOAnoJHtaWsP8A1EILmiruo9a6f07BRS3O4NHtwLqVkEb53zgAEuY2MOJGCOQMchZt+tdO3DTdRf6a7UxtFOXCeokJjETm9WvDgC13I4IzyPVBYUVU0x2haY1NcfYLRct9aY+9ZDNBJA+Rn3mCRrdw+YytGt7V9F0dRPBNeQX00r4ajZTyvFO5riw94Q0hg3AjLsA444QXlFzXXOv4tN630g2e508OnbjS1c08m0PEpa1hi2EAk5LuA3rlTdF2k6TrbDcrxBdR7DbXNbWF8EjZKck4G+Mt3gHPXGOvoUFvRRl3v1ttEFFNcKpsUdbUR0tOQC7vZZPgaAAeqk0BERAREQEREBERAREQEREBERAREQEREBERAREQFzHt3/8AA6K/96rd/wBzl05ec9PDUBgnijlDHB7d7Q7a4dCM9CPVBwFtNMzXFT2X90/7OmvTb6Dt8HsB/jOj/L2hob/mKiqn/wBPtW//ABB//KiX6S9nh9p9p7mP2jZ3fe7Ru25ztz1xnyXmaCjMb4zSU+x8neub3Yw5+c7iMdc+fVBzjs/gjPbP2pTlje9325m/HO32bOFzW291b9K6VuVcwDT1r1nWvrPD4IGmSVscjh5Na8jnyyF+lo6eGOaWWOKNksuO8e1oDn4GBk+eAvhtHTNp5IG08IgkyXxhg2uz1yOhz5oOR1F8sV7/ALQenX2Orpa2eGzVjaiopniRmCWFjN44JHiOPLcPVUzROp9KU/8AZpuNoqKqjFykp6yndQEjv5qiR7+72s+JxOWYIB6fLj9E0Npt1A2NtDb6SmbHu2CGFrNu7rjA4zgZ/JfDbJam1MFQ22UQqIBiKUQMDox1w04yOp6IOFfZd4Go/sr+J9vf7NvZsbvF3+/bjPru80uuptK1X9m2KxUk9LLdJLbFQQ2phBqRWgBu3uviDhIN2ceWV+gfZ4fafaO6j9o2d33u0btuc4z1xnyWq20W1lxNwbb6NteeDUiFokP+bGUHAu0amuNjv0dny/2jXVro7XNI0Z/3qORkcrj+cMruf7q9NG0D3dptPoHuS216WutXemt2+ARSNa6maD8nTyH/ACL9BTU0E0kUk0MckkR3Ruc0EsPqD5IymgZUPqGQxtnkAa+QNAc4DoCepQcj7L6WB2lO04uiYTPf7qJMtzvHTB9RhS/ZHd7ZQdl2gKe5VMMVVW0ccNIyT4pHhmcN+eF0WKmgiZI2KGJjZHF7w1gAc49SfUlfAoaQNp2ilgDafmEd2MRf9Pp/gghe0a4MtWg7/XS29tyjgopXuo3DLZhtOWuH3fX5ZX581ve5qnRemTU6ysdVE+soJYrNZ6NjWUzBIzlz9zntawcZO3kgfJfqUgEEEZBUbT2G0U0c0dPaqCJkxBlaynY0SEHOXADnn1QNS/8Alu6/+yS/9hX58h1Fpir/ALL1LYKGellvFRQx0kNsjINQ6sc4YIj+LO/x7sdOV+lHNa5pa4AtIwQRwQtKKzWyGsZVxW6jZVRsEbJmwND2txjaHYyB8kHCNaW661d57Q6Cj3zXV2kKNhEfLpHB0m8D1JAcP8Vs9o2pdM6h7GLbZtK1dJU3arNHDa6CmcDPDM17D8A5YWAOyTjH+K7w2CFtQ6dsUYnc0NdIGjcQOgJ64WrT2i201dJW09vo4qyT452QtbI783AZKDlWm79aNH9o+vo9Y11Lbqyunhq6aoq3CNtTTCENDWE/FtcHDaOcnot3+zhNS1GjLvNb4TBRSX2ufBEWbCxhky0bfLAxx5KX1Hp3Vz9QVVbYrpZqmiqNjmUt5pHS+xPaMF0LmkcHqQfPzU32faXbpHTcdtNW6tqXyyVNTVOYGGaaR5e920dBk8D0AQc91NqKYdq16t1HdNP6TkpaGB0t0uFO2SorWO3ECPc9rdjOQc55XM2VdNN2Q65nq6l90pTrCGWWYwBhqYzJAS8RgADeMkADzX6luFpttxlikuFvpKqSI5jdPC15Z+RI4Xo6go3d5upKc945r35jHicOhPHJGBgoOTavvdn1Vrjs7p9I11JcK+lrnVsktG8SCnpBE4P3lvwh2WjBxkqL7NNSaa012X3mz6urKOlu9JUVrbpSVTgJqh75HkENPMm9pbgjOei7XQ2ugt8kz6ChpaZ8zt0roYmsLz6uIHJ/NfFTaLbVVsVZVW+jmq4v+HPJC1z2fk4jIQcB0hK/SdZ2PT6tmFvjFprqZ01W7Y2Jztjo43OPDTsAGD6YUjBdaPUGpO2iqs8zaylfZIIopovEyUtgmaSw/wAw3AjI4yCu5XCgo7jTmnuFLT1UBOTHPGHtJ/I8L6pqKlpc+zU0MOWhn8OMN8I6DjyGeAgqfY1cqK5dmGmnW+rgqRBb6eCUxPDu7kbE3cx2Ojh5g8ql6W1HpyxdsvaYy919Fb6yWSjeyWqkbGHxNpm5DXO64JyR8wuv0NDSUETo6Glgpo3OL3NhjDAXHqSB5/NVO1aGpodWaqut1jorhT3iennigmgD+5MUQj/myMnGchBxm30jajT+kp3QYtFx7QH1luikZgeyuMhYQ09ASC4D0K6bfWtb2/6fe0AOfYKxriOpAljIB+pXSJKaCURCWGJ4icHR7mA7COhHoVl1PC6ds7oozM1pa2QtG4A9QD1wg/N/Zx/y7sNx/U3X/slVg7M9Sab0z2c3206vraOku1LV1v2pS1TgJahz5HEODTzIHsLQCM56LtcdBRxCARUtOwQEmINjA7vPXbxxn5LyqrRbausiq6q30c9XF/w5pIWuez8nEZCD88WKhFs072dx3LUVZpDVbLVMKWuqoWPpnwukDvZ5BIQN4bsIHGB/gF5XW71l40jcJbjTWqtttl1TRVF0udngIguUAwZXuaM7i3wbsEjj5L9I3C30Vyp+4uNJT1cGc93PG2RufyIwvumpKalpW01LTww07RtbFGwNYB6ADhByPXV8tGqNbdnlNpOvpLldKe5itklopGy9xRiNwl3ubnaHZaMHqVE9m+rdIWSydoNNfK6hpaht8uMlVBO5ofUMLyBtaeXggbcDPIwu1260262GQ22gpKQynL+4hbHvPqcDlVfRWhKWxxXH7TiorhUT3apuUEroAXQiV+4NBOSCPUIOV6DtVVR3nsTpb3C4VcFsuMgZKPFGC1pYCD0IY4D5K40tqpbv2wdolrq4waWvstFFO0fzBwlaT+ePNdUfBC+eOZ8UbpowQx5aC5oPXB8srUulNUex1stnbSRXaSItimnjJaXAHbvxgloPllBw7swmr9SapsVkvTXEaBgmjrHOHhlqtzoYDz1xE1zwfVy7jYrxb7/aoLlZ6qOroZ93dzRnwuw4tOP8QR/goLs90vUadorjPd6uKuvd1qnVldURR7GFxAa1jAckMa0ADPz9VaKanhpYGw0sMcMLfhZG0NaPPgBB6IiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAuddr1VUw1ekqanN5dDVXGSOeC0z9zPM0U0rgA7c3gOaCeR0XRVA6r0zBqM258ldX0NRb5zUQT0T2te1xY5h+Jrhja9w6IOe6X1fX2tt2twiuVTXPusFHbrfeZsVELZYt26WUB2Y/BK4EF5w3HXgTU+vbtDXx2Y2akdfvtJtvfGKxwg2vp3zslD9m7GGEEbc5B68KUb2eWv2aq76ruc9xqJ4qk3KWoBqWSRZEZacbQGguG3bjxOyDkrYoND26lq6askqK2quEVb9oPqp5Gl80vcuhG7DQNoY4gNaABgfPIVaftCMEtNV3iilp5aA3OOripaoviJpmNcSAWjeCCCM4wStu7a/u9go5pL/ZKSKaS2zXGkZTVhkDu62b4pCWDa4CRpyMg8+nPtWaGbPq+H/dRJY5G11RWummBMslS1rHRtaBkNw0nJPmt9nZ3bJIKiG6VtzujZKJ9ujNZOCYIH43NYWtHJ2t8Ry7wjlB46x11NYKy4U1PbG1ktNS0dQwGbZ3jp6kwbehxjGc/NZ7QbrqC19mNfcImUdLe442lwimc+OPLwCWuLMng+bQvtvZ3b3vqZa+5XavqahlNHJPUzMLtsE3exgBrAB4uuBzk+fKseo7NTagsdZaq4yCmqozG90Ttr2+YIPqCAUFOuOurrSQXmvZZ6SW1WKRsNxkFW4SFwYx8phbsw5rA8fEWl2D089463d9mVVWKFp7m+ss4b3vxB0zIu86f384+XVfVV2e2+qfUCe43R1LWGN9fSiVoirnsa1u+QBuQXBjQ4MLQ7HIWars9ttRcpKk11zjp5K+O5mijmaIPaWOa4Pxt3clgy3OOpwDygz2Z3O8XW2XeW+GAyRXWsp4jE8uwxkzmhvwt4GMD1AyeVR7D2mVVDp+y0LjS1VyNuFdUT3KrfHvDpHtYxpDHkuOx3JwAAOuV1KwWCnsb7l7JUVL4q2qfVmGVwc2J7yXP2cAgFxJwSfkoJnZ3b6anpGWu5Xa2y09L7E6elmaHzQ7i4NfuaRwXOIcACMnB5Qe931iKTs5bqqkoJZRJTwzspJXd2/wDiFo2k4OCN3/yVeuOv9Q2x18FdYLdtsnczVjorg926KXkd3mIZcAHZDsDgYPPF1uWnKG4aZFhlM7aEMjjG2Ql+GFpb4nZJPhGSckrVu2jrbdBfhUvqAL1FFDU7HgYbGCG7eODyc9UEFV67rofbbmy1QO05RXH7OmnNSRUEiURPkbHsxta84wXZIBPoD5UWvrnJVUdRVWelistTdp7Q2ZtWXTB8b5WCQs2AbSYiMbsjKl6jQVtnuE0rqq4NoJ6ttfNbWyj2aScODt5G3d8TQ4tDg0kZI6rbj0fbWUVHSh1QYqW5PurMvGTM+R7yDx8OZHcemOUFIm1teKqt0feqqkZQabrXVNWDDVOfJJC2klkYJWbQMkNDwATgjCk9EdpLtRXi30c1JSMZcad1RCaWodM6DaA7ZMCxoaS09QSMgj0Jk6Ls5tVLWUEhq7jNR28y+x0EsrXU8DZGOY5gbtyW7XkDcTjgDAyFu6d0dTWOqp5Y7ndaqGkhNPSU9TOHR08Zxw0AAu4AALy4gDr1QeMMtce1erhNRKba2ywvbBuOwSmeQF2OmcADPyVtWo2hAu76/v5y50Ag7ncO7ADid2MZ3c4znottAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQFhz2tIDnNBd0BPVZVT1tpmpv8AWW+ammhj9njljJk6tL3RODgNpzju+mW5z1CC2AgjI5CKgw6PvgmxLqCp9n7sM2R1D2DiLaMBuC3DhuyDznkcLZqNM3+SsglGoagRxzl2xsjmAs3NcAeDuI/iNxxlrm5PhQXVFRTpfUUcM0FNf5RHJG1okkmke+NwiLSRnOcvcXcnjAx8tqfT16dbbVBFeJmT00j3TSOned7XOyASAC/a3gZx6nPQhcCQBknAWA4E4BBP5qq0WnbhOy6C9V7pm1lKKZkUczyyLO7c4A4BJy3nGeFEt0TdYRLJT3ZrKiXxucxz4w2V7Hd64FpzgybJA3oduD1yg6A97WDL3Bo9ScLLSHAFpBB6ELn910PcLjJTNnuj5ImTMmc6WZ8hGHEuDWOyznPBI4xjGFsVOjK2BscdmvFXSwNlD9gnLBzuc47QNvxuJ2hoB4HAAQXhYLmhwaXDceQM8qmWjT2oKG5QVE12dUxRPkJilqZHB4LcDcMYJ3c+jR5OPK2b1p2tqq+vnopKOOWpbmOskYTPSuERYBH6DJ3ZzwXO4OUFrJA6oqbbNN3innpnVd0fUMje15MtRI8hofu7vGA13H85G7y6Lwl0tfn1k0n27UOifV96IzUPDRHuccYAB+Fwbtzjwg56hBeUVSm07dfs+2U9LdH04pqRkMzGyvxK9gwMO6gEOfk/Fww/yqMGjb0PansvdRHJK8yjZVSjk9yNhJznDIntDiCfHnGUHQEVLudgv1S2Cnp7pNF3dvbAav2h4Jmw8F21uA4nLfEeR1HK8hpG8Goqt1/rvZ3SF0Lfa5ctb49o4wRgOaDyd23J5KC8gg5weiLn9Ro/UDpKj2fUVREx4eI9szwWZjaxpdwS8+HqSCOoOVfYImwwxxMLi1jQ0F7i44HqTyT8yg+0REBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBV7VV5uFqqLfHbrbNWid+JCyJzwxu9jeSPh4cXc5+E/mLCo673qhtJaK6R7N0b5SWxOftYzG5ztoOANzeT6oKpDqDUsVTKKu3OLS9gBZSylkbTCH44Bc478syOATyOMLf0jfLxWztpr1bZqfEEZMroXt3SFrSc8beSXem3bg8njak1nZo5zDJLUtkb8bTSy/w/i+Lw8cMcefIZ8wvB2vtPNj7ySrljZgFpkp5Gh2Qw8ZbzxIw/k780EML5quGtc2WhmfTw1UzHPNKSHwulxG/DRk7GhxIHLht9V5XHUWq6ggUVunpnGlldtFI922TumuY4lzcHLi4BowQRg88K0U2sLNVSiOnmnlcThu2mkO4AuBcPDy0FjgT04+YWbRq6zXd9M221L6j2h7mRlkL8ZDQ85OOBtLTk+oHU4QV4ao1FCKiCSz1BdE1rY5n0ssneOOzxHYMBvidnAyNnR2cDer7/fafUEMENnnfQzCId46MuDSXuDuW5xluHZPw7eQMrfk1jamW651bpsMoJu4kByMvJw0cjzJA+X5LB1naDSNqYZJ5YntLmSNp5Nj8NLjh23HABz6dOqDUuupLtRXGojjs889NGXjdHBI4jDMs5AIfvdgeH4cHPy97rf7lQ3dsDLXPNSd1E90sUEj9pdI1r8kDqGknABPBzhbVr1bZ7pXNo6Kpc+qdH3rY3RuYS3AIPIHUEEfI5UpaawXG10da2N8TamFkwY/4mhzQcH5jKChM1zen0tO8WciaaR0XdGCbLZGxyP7vp4nEx4yOG58XopF171N7e2NlqaI5ADudG8tjBmbHjjz2uLzz0aenVXXa3jgcHPTzWUFBh1ZqCSIGaxTUsjjEA11LNIGlwy7JaOmMnPljaRkreqb/fKe/RQfY8/sMsgBkcwuEbfAD4mZH8znZP3ccdRcEQVK8amraa9ey2+gdVwCljqXFsUhdteJueBgY7po29SX8dOfO16ivFReoYZrTUx0U9RIwSOgeC1gYC1xyBtBOeuTnhXHAznAz6ogIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgLTuFrobiYzX0kNRsBDe9YHYBwSOfLIBx6gei3Fo3C4iiqqGA008xq5e6a6PbhhwXZdlwOMAngHp+SDzjsVqjYWNoKfaQQcsBzncDn1+N3+orD7BaXMaw2+m2tGG4YBgYaOPTiNg/yhR0OtLRJLPHI+aF8Ej43h8RO0tc4EnbnDcMLt3TGM46L6k1pp9krY/tAOkexr2tZE9xcHHDcADkk8YHPB9CgkHWG1O2Zt9L4Dlv8MDHLj/9XuP+YrFJYbXRzxz0tDBDLGNrXMbggcDH5YAGPkPRRh1xYWh75KuSOFrWOEr4Hta7cSA0cfFx06kcjjlbUup7eLdHX0/fVNI+fuO8jZgZzgkbsbhnjw56HHQoNtljtjIJoWUMDYpXNc9objJactP+B6enkvllgtLC4st1K3c3YcRjG3GMfljhRzNXUzmg+xVjTsMhDjENoGCc+PAABac9BkDOeFP0c7aqkgqGskY2VjZA2Ru1zQRnBHkUGvTWqgpp2zU9JDFK1giDmNxhoGAPoAPyC24o2xRsjjaGsYA1oHkAvpEBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBfDoo3SMkcxpezO1xHLc9cL7RBHS2S1zS95Lb6V0nHiMQz1cev5vf8A6j6lBZLWJGvFvpQ5pyCIhwdxfn89xJ/Mn1UiiCLdp+0OcXOttJnaG57odAcj6Hp6L2daLe6OnjNFBsp3mSJoYAGOOckehOT9St5EET7t2baR9mUmC0MI7sctDtwH+BJI9FKRsbHG1jAGtaMADyC+kQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQERCcDJQEWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qygIiICIiAiIgKta0v1XanWq32eGCa73WpNPT+0EiKMNY575H45Ia1p4GMkgZHVWVVzWWn6i8fZtZa6qOku9rqDU0kssZfGSWOY9j2gglrmuI4OQcHyQaVDeLxaaytGqquzz2uClfUvuFI0wdwWEbmSROe89CSHA/ykEDjOhf+0ygodOXeupKOvNfRUntcdJVUkkLpYydokAIyWZIyfLzxlQ9Z2Z1moK+4117ZYrXUVNDUUebTTEvlfNtJllkdtLyCwYbjzPPK3b7oq/6nguMl7q7ZBWOtM1spW0ge6PMjmOdI8uwRkxsAaM4GeSgu1xvlJbrIy6VraiOBwjxH3DnSlzyA1ndgbtxJAxhQju0Kxx0r5agV8MzKxtA6lfRyd+Jns3sbsAydzeQRkHK99W2i83vSkNJT1UNJcd8MlQ2KaSOOYNcDJF3jcPa13I3Dn5Kq2Ps4r6G6e1vlt0EbrvT3PuKfvHBgjgfEWbncuJLgdxxnngILdaNa2e6VFJTwvqIqmpnmpmw1ED43MmiaHvjcCOHbTuHqOQvi9aqiZoG96isxbOKKmqpIjK0hj3w7wfQlu5h5HUchU7XlgrKC1XT2CZ5v1yvsdfaHQQPk7qTZFGd5Aw0bGybiSBtJVyuelmO7OKvS1se2FrrY+3wvk5Dcxlgc7HX1KDVou0Kxy0M89bJU0Rp6VtY9tVSyRGSJxAD4wRl4LiAAMnJAxyM+rde2RtLWS1RraSakMQkpaikkZOe9dtj2x4y/c4EDbnkEeRVfumhb3qEme919vgrKWkZTULqSN7mF7Zopu9kDscF0EY2A8Dd4jnjNz0Re73cpL5cqu3U96gNL7FFAHyQN7iR0n8QnDnby8jgDaMYyUEhctf0zWUBoQYX/AGpDQ10NfE6GSnY9jn7iDjHABDuRjKtFqvdHdLN9q0hlNCWueyR8ZbvYM+NoPJacZB8xyOCqFd+ziq1NUTVepnW+R9XXUs1RSRbzCKeBsgEYcQC5xMjiSQB5Y45tunbNcLfpaWzV9YyrMTZKemqDne6HGI+89XgYBI64z5oI6k7RrJWUNJVUcN1mFYT7JEygl7ypYGhxkY3GSwBw8XTJAzyFsT6+sbKajmpnVlaaqJ87IqSkklkbGx217nsAyza7wkHBzkYyFXbj2dVEls0j3XsFZWWO3fZ8kFS+SOGZpZGC5rmeJpDogRwcgkH1HpadE3rTj6OtsMtoNd7HJSVUMkb44AXTOlD48bneFz3Ag/FnJIKCbqe0TT0Di4T1M1KyOKWeqgppHw07JGhzDI8DDctIPPQEE4C+Lh2j2Cgr6ilndXn2apFHNNFRSyRMmcAWx7mtILnbm4AzyR6hQtbojULqG+2yG6UFRSagjYK+rniLZo3mFkMr42N8J3NYCASNpJ6jhbztDVApK6COphAnv9Nd2ZB4jiMBLD/ePcn5chBvHtDsgpYpHNuInkrHUApPYpDOJ2x95sMeM/Bh2emDnKWjtDsN1q6OCmdXMFU6SKOWejkij72MOL4i5wAD2hjsj+6fMLVi0ZVM1eLuamAwi8yXPZg7tjqEU2389wz+S8G6CnfbbTR1FVEY6W7V9fMWZBdHUCpAa3+8PaG/QoJKl7QrDURvl31kUHs0lZDNNSyRsqYYxl74iR48DnA5IORkcrFJ2iafniqpZJauligpPbw+qpZIhLT5A7yPI8QyQOOeRxyFT7X2V1lNbxRSizRimts9DBVRNldLM58Ria9wccR4aTkN3ZJ8hwp3UfZ/Peo6SM1sUAgszreHhpcRMJIJGPx5tBh5GRnKD0pO0Smkv13hqqerpLfQUNNUFs9HKyoMkssjA0MxlwO1mMDqSPkF67SaOkoBLSUFwkq47jS0NRSS0sjJYhM4YdtxzluduOCeOq0bppHVd2qbtX1Nxt1HWVVNSUzIqOSZrSyGZ8j2ukGHgSB5blvLQfPqdKm7N7tTMu09LJaqeoqqy31sFO10ro2Opn7ix73eJ24Y8eM5PThBaItcUMMb2VL5ayrfW1NPBTUFJI+QiF+HZbyfDkAu4BJGOoCzN2iWFrKM0zq6tfVU76mKKko5JZNjHbHlzQMtLXcEHBB468KJpNF3q0XZt5tVRb5bgKivLoKgvbE+GplbJjcAS1zSxvkQckehW1pLQ9VZLvBX1FbDUSGjq46gsYW5mqKnv3Fo5wwHIHOeiDfm7QbC32d0D6yrhlpoq10tNSSSsihlz3b3kDwg7XfMYOcKN1PqHUtlrPa3x2ttvfcIaKkt5a59VWse5oc9jw/DSMudt2HwsJJGeK/VdmF2NotFHTz2xtVR2yGhjuTHSwVNI9gIL43R4MjTnIY8gAj5ldFns5m1PbLnK2CVtFSTQNkeXd417zHy0fDyGHJxnyHBKCaREQF41lLT11LJTVsEVRTyDD4pWB7HD0IPBXsiCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2qfaA1oDQABwAPJEQEREBERAREQERVXW1VPTSUgglfHuDs7TjPRSa7V10eC2e0cxHHzPDDJeMdfFK1IuWuu1Y0ZdVyAdOXLP2pWjrVS/6l4PmrB7c/CbrK+jqKLlrrtWNGXVkgHqXYWftSt/qpf9S+easHtz8HWV9HUUXLvtSt/qpf9SsOjayoqK6Zs8z5GhmQHHKp0n1Fi1WauGtJiZ/DOmqre0ViFwREXQqRERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBU7X3/Eovyf/wDariou9WaK6uiMsj2d3nG0dc4//S83d9Nk1WkvixR3nj+xLVnpN6TWHIr7a3XONgjmjjc1r2/xYu8bhwxnbkcjHB9CR5rRi07UB1Wai6S1Hfwzwt7xpOwSbenOONv/APF1j3Ppv6iX6BPc+m/qJfoFyVNk3KkeGsR+4Qxp8sdnMfsUPopqaoqHTtkkbKDKC/aQQeMk+mFpRafuEbQwXqYs8OWkP5wwtx8fAJO4/McYXW/c+m/qJfoE9z6b+ol+gSNl3KOe0d/vB0+VzWyWp9t73dVPm7zktJdgO3OcSNzj13Af5cnKvOhf+YTf9Ckfc+m/qJfoFIWexQ2ud8sUr3lwxhwVW37NrcWspnzRHET37x6NmLBkreLWS6Ii7VeIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiIP//Z\";s:4:\"type\";s:10:\"screenshot\";}}i:10;a:6:{s:2:\"id\";s:19:\"script-treemap-data\";s:5:\"title\";s:19:\"Script Treemap Data\";s:11:\"description\";s:20:\"Used for treemap app\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:2:{s:4:\"type\";s:12:\"treemap-data\";s:5:\"nodes\";a:4:{i:0;a:2:{s:4:\"name\";s:34:\"https://www.nl.ecom-expansion.com/\";s:13:\"resourceBytes\";i:3152;}i:1;a:3:{s:4:\"name\";s:82:\"https://www.nl.ecom-expansion.com/wp-includes/js/wp-emoji-release.min.js?ver=6.1.1\";s:11:\"unusedBytes\";i:3012;s:13:\"resourceBytes\";i:18617;}i:2;a:3:{s:4:\"name\";s:100:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/view.min.js?ver=c24330f635f5cb9d5e0e\";s:13:\"resourceBytes\";i:1144;s:11:\"unusedBytes\";i:935;}i:3;a:3:{s:4:\"name\";s:106:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/view-modal.min.js?ver=45f05135277abf0b0408\";s:11:\"unusedBytes\";i:4574;s:13:\"resourceBytes\";i:7775;}}}}}}}}s:9:\"timeStamp\";i:1669130835;s:13:\"optimizations\";a:0:{}s:24:\"human_readable_timestamp\";s:22:\"22 Nov 2022, 15:27 UTC\";s:6:\"scores\";a:4:{s:3:\"fcp\";a:3:{s:10:\"class_name\";s:39:\"placeholder-without-svg placeholder-top\";s:16:\"class_name_table\";s:7:\"success\";s:5:\"score\";i:292;}s:4:\"ttfb\";a:3:{s:10:\"class_name\";s:39:\"placeholder-without-svg placeholder-low\";s:16:\"class_name_table\";s:5:\"error\";s:5:\"score\";d:677;}s:5:\"score\";a:3:{s:10:\"class_name\";s:39:\"placeholder-without-svg placeholder-top\";s:16:\"class_name_table\";s:7:\"success\";s:5:\"score\";d:100;}s:12:\"descriptions\";a:3:{s:4:\"ttfb\";s:78:\"Time to First Byte identifies the time for which your server sends a response.\";s:5:\"score\";s:34:\"Summarizes the page\'s performance.\";s:3:\"fcp\";s:75:\"Speed Index shows how quickly the contents of a page are visibly populated.\";}}s:6:\"device\";s:7:\"desktop\";}','no'),(142,'sg_security_lock_system_folders','1','yes'),(143,'sg_security_disable_file_edit','1','yes'),(144,'sg_security_wp_remove_version','1','yes'),(145,'sg_security_disable_xml_rpc','1','yes'),(146,'sg_security_xss_protection','1','yes'),(147,'sg_security_disable_usernames','1','yes'),(148,'sg_security_login_attempts','5','yes'),(149,'sg_security_version','1.3.7','yes'),(150,'sg_security_update_timestamp','1669130839','yes'),(151,'sg_security_server_address','35.215.72.30','no'),(152,'sg_security_login_type','default','yes'),(153,'sg_security_notification_emails','a:1:{i:0;s:19:\"example@example.com\";}','yes'),(154,'sg_security_weekly_email_timestamp','1669130839','yes'),(155,'sgs_install_1_3_6','1','yes'),(156,'sgs_install_1_3_7','1','yes'),(158,'sg_security_unsuccessful_login','a:1:{s:14:\"187.190.30.233\";a:2:{s:8:\"attempts\";i:5;s:9:\"timestamp\";i:1669165031;}}','yes'),(159,'sg_security_total_blocked_logins','3','yes'),(181,'theme_mods_twentytwentythree','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1669161942;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(182,'current_theme','Flatsome Child','yes'),(183,'theme_mods_flatsome','a:35:{i:0;b:0;s:17:\"flatsome_fallback\";i:0;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:7:\"regular\";}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:7:\"regular\";}s:14:\"pages_template\";s:7:\"default\";s:11:\"site_loader\";s:0:\"\";s:19:\"flatsome_db_version\";s:6:\"3.16.2\";s:18:\"nav_menu_locations\";a:0:{}s:7:\"backups\";N;s:9:\"smof_init\";s:31:\"Wed, 23 Nov 2022 00:05:42 +0000\";s:18:\"custom_css_post_id\";i:-1;s:17:\"header_cart_total\";b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1669326499;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:16:\"sidebar-footer-2\";a:0:{}s:12:\"shop-sidebar\";a:0:{}s:15:\"product-sidebar\";a:0:{}}}s:16:\"activated_before\";b:1;}','yes'),(184,'theme_switched','','yes'),(185,'widget_flatsome_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(186,'widget_block_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(191,'siteground_settings_optimizer_timestamp','1669161977','yes'),(193,'siteground_data_consent_timestamp','1669161977','yes'),(194,'recently_activated','a:1:{s:27:\"parcelpanel/parcelpanel.php\";i:1704241002;}','yes'),(195,'siteground_data_token','eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJodHRwczovL3Rlbmctc2hvcC5jb20iLCJ1cGRhdGVkX2F0IjoiMjAyMi0xMS0yMyAwMDowNjo0OSIsImV4cCI6MTk4NDUyMjAwOX0.Huy7cv_JkNC5KY781IIDG9DruhDW8zmmBCzWKLoPnF0','yes'),(196,'siteground_last_data_tracking','1669162010','yes'),(199,'kirki_downloaded_font_files','a:14:{s:68:\"https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:98:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:65:\"https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:95:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:72:\"https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:102:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:69:\"https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";s:99:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";s:110:\"https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff\";s:141:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff\";s:110:\"https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff\";s:141:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff\";s:107:\"https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff\";s:138:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff\";s:68:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:98:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:65:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:95:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:72:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:102:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:69:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";s:99:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";s:110:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff\";s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff\";s:110:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff\";s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff\";s:107:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff\";s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff\";}','yes'),(226,'flatsome_registration','a:8:{s:2:\"id\";s:13:\"new_id_123456\";s:4:\"type\";s:6:\"PUBLIC\";s:6:\"domain\";s:25:\"www.nl.ecom-expansion.com\";s:12:\"registeredAt\";s:24:\"2021-07-18T12:51:10.826Z\";s:12:\"purchaseCode\";s:36:\"abcd1234-5678-90ef-ghij-klmnopqrstuv\";s:11:\"licenseType\";s:15:\"Regular License\";s:6:\"errors\";a:0:{}s:11:\"show_notice\";b:0;}','yes'),(233,'WPLANG','nl_NL','yes'),(259,'flatsome_update_cache','a:2:{s:12:\"last_checked\";i:1704385488;s:7:\"version\";s:6:\"3.18.1\";}','yes'),(261,'wordfence_ls_version','1.1.8','yes'),(262,'wfls_last_role_change','1704234792','no'),(263,'wordfence_version','7.11.1','yes'),(264,'wordfence_case','1','yes'),(265,'wordfence_installed','1','yes'),(270,'wordfenceActivated','1','yes'),(271,'wf_plugin_act_error','','yes'),(280,'action_scheduler_hybrid_store_demarkation','7','yes'),(281,'schema-ActionScheduler_StoreSchema','7.0.1689702613','yes'),(282,'schema-ActionScheduler_LoggerSchema','3.0.1669163123','yes'),(285,'woocommerce_schema_version','430','yes'),(286,'woocommerce_store_address','Regiomontana 325','yes'),(287,'woocommerce_store_address_2','','yes'),(288,'woocommerce_store_city','Tampico','yes'),(289,'woocommerce_default_country','MX:DF','yes'),(290,'woocommerce_store_postcode','89110','yes'),(291,'woocommerce_allowed_countries','all','yes'),(292,'woocommerce_all_except_countries','a:0:{}','yes'),(293,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(294,'woocommerce_ship_to_countries','','yes'),(295,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(296,'woocommerce_default_customer_address','base','yes'),(297,'woocommerce_calc_taxes','no','yes'),(298,'woocommerce_enable_coupons','yes','yes'),(299,'woocommerce_calc_discounts_sequentially','no','no'),(300,'woocommerce_currency','EUR','yes'),(301,'woocommerce_currency_pos','left','yes'),(302,'woocommerce_price_thousand_sep',',','yes'),(303,'woocommerce_price_decimal_sep','.','yes'),(304,'woocommerce_price_num_decimals','2','yes'),(305,'woocommerce_shop_page_id','8','yes'),(306,'woocommerce_cart_redirect_after_add','no','yes'),(307,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(308,'woocommerce_placeholder_image','10176','yes'),(309,'woocommerce_weight_unit','kg','yes'),(310,'woocommerce_dimension_unit','cm','yes'),(311,'woocommerce_enable_reviews','no','yes'),(312,'woocommerce_review_rating_verification_label','yes','no'),(313,'woocommerce_review_rating_verification_required','no','no'),(314,'woocommerce_enable_review_rating','yes','yes'),(315,'woocommerce_review_rating_required','yes','no'),(316,'woocommerce_manage_stock','yes','yes'),(317,'woocommerce_hold_stock_minutes','60','no'),(318,'woocommerce_notify_low_stock','no','no'),(319,'woocommerce_notify_no_stock','no','no'),(320,'woocommerce_stock_email_recipient','example@example.com','no'),(321,'woocommerce_notify_low_stock_amount','2','no'),(322,'woocommerce_notify_no_stock_amount','0','yes'),(323,'woocommerce_hide_out_of_stock_items','no','yes'),(324,'woocommerce_stock_format','no_amount','yes'),(325,'woocommerce_file_download_method','force','no'),(326,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(327,'woocommerce_downloads_require_login','no','no'),(328,'woocommerce_downloads_grant_access_after_payment','yes','no'),(329,'woocommerce_downloads_deliver_inline','','no'),(330,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(332,'woocommerce_attribute_lookup_direct_updates','no','yes'),(333,'woocommerce_prices_include_tax','no','yes'),(334,'woocommerce_tax_based_on','shipping','yes'),(335,'woocommerce_shipping_tax_class','inherit','yes'),(336,'woocommerce_tax_round_at_subtotal','no','yes'),(337,'woocommerce_tax_classes','','yes'),(338,'woocommerce_tax_display_shop','excl','yes'),(339,'woocommerce_tax_display_cart','excl','yes'),(340,'woocommerce_price_display_suffix','','yes'),(341,'woocommerce_tax_total_display','itemized','no'),(342,'woocommerce_enable_shipping_calc','yes','no'),(343,'woocommerce_shipping_cost_requires_address','no','yes'),(344,'woocommerce_ship_to_destination','shipping','no'),(345,'woocommerce_shipping_debug_mode','no','yes'),(346,'woocommerce_enable_guest_checkout','no','no'),(347,'woocommerce_enable_checkout_login_reminder','yes','no'),(348,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(349,'woocommerce_enable_myaccount_registration','yes','no'),(350,'woocommerce_registration_generate_username','yes','no'),(351,'woocommerce_registration_generate_password','yes','no'),(352,'woocommerce_erasure_request_removes_order_data','no','no'),(353,'woocommerce_erasure_request_removes_download_data','no','no'),(354,'woocommerce_allow_bulk_remove_personal_data','no','no'),(355,'woocommerce_registration_privacy_policy_text','Uw persoonlijke gegevens worden gebruikt om uw bezoek aan de website te ondersteunen, de toegang tot uw account te beheren en voor andere doeleinden zoals beschreven in ons Privacybeleid: [privacy_policy].','yes'),(356,'woocommerce_checkout_privacy_policy_text','','yes'),(357,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(358,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(359,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(360,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(361,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(362,'woocommerce_email_from_name','Teng Shop','no'),(363,'woocommerce_email_from_address','kontakt@ecom-expansion.com','no'),(364,'woocommerce_email_header_image','','no'),(365,'woocommerce_email_footer_text','','no'),(366,'woocommerce_email_base_color','#7f54b3','no'),(367,'woocommerce_email_background_color','#f7f7f7','no'),(368,'woocommerce_email_body_background_color','#ffffff','no'),(369,'woocommerce_email_text_color','#3c3c3c','no'),(370,'woocommerce_merchant_email_notifications','no','no'),(371,'woocommerce_cart_page_id','9','no'),(372,'woocommerce_checkout_page_id','10','no'),(373,'woocommerce_myaccount_page_id','11','no'),(374,'woocommerce_terms_page_id','','no'),(375,'woocommerce_force_ssl_checkout','no','yes'),(376,'woocommerce_unforce_ssl_checkout','no','yes'),(377,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(378,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(379,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(380,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(381,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(382,'woocommerce_myaccount_orders_endpoint','orders','yes'),(383,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(384,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(385,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(386,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(387,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(388,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(389,'woocommerce_logout_endpoint','customer-logout','yes'),(390,'woocommerce_api_enabled','no','yes'),(391,'woocommerce_allow_tracking','no','no'),(392,'woocommerce_show_marketplace_suggestions','yes','no'),(393,'woocommerce_analytics_enabled','yes','yes'),(394,'woocommerce_navigation_enabled','no','yes'),(395,'woocommerce_feature_custom_order_tables_enabled','no','yes'),(396,'woocommerce_single_image_width','768','yes'),(397,'woocommerce_thumbnail_image_width','768','yes'),(398,'woocommerce_checkout_highlight_required_fields','yes','yes'),(399,'woocommerce_demo_store','no','no'),(400,'wc_downloads_approved_directories_mode','enabled','yes'),(401,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:8:\"/product\";s:13:\"category_base\";s:11:\"collections\";s:8:\"tag_base\";s:17:\"etiquette-produit\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(402,'current_theme_supports_woocommerce','yes','yes'),(403,'woocommerce_queue_flush_rewrite_rules','no','yes'),(406,'default_product_cat','15','yes'),(407,'woocommerce_refund_returns_page_id','12','yes'),(410,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:107:\"Payer avec PayPal, vous pouvez payer avec votre carte de crédit si vous n&rsquo;avez pas de compte PayPal.\";s:5:\"email\";s:19:\"example@example.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:19:\"example@example.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(411,'woocommerce_version','8.4.0','yes'),(412,'woocommerce_db_version','8.4.0','yes'),(413,'woocommerce_admin_install_timestamp','1669163124','yes'),(414,'woocommerce_inbox_variant_assignment','8','yes'),(418,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(419,'action_scheduler_lock_async-request-runner','6596f5bc184466.33865406|1704392184','yes'),(420,'woocommerce_admin_notices','a:0:{}','yes'),(421,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"9O9FFiJYiOq0QNR8NIXdhJup7se3JD8J\";}','yes'),(423,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(424,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(425,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(426,'widget_woocommerce_price_filter','a:2:{i:2;a:1:{s:5:\"title\";s:15:\"Filter op prijs\";}s:12:\"_multiwidget\";i:1;}','yes'),(427,'widget_woocommerce_product_categories','a:2:{i:2;a:8:{s:5:\"title\";s:19:\"Productcategorieën\";s:7:\"orderby\";s:5:\"order\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;s:9:\"max_depth\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(428,'widget_woocommerce_product_search','a:2:{i:2;a:1:{s:5:\"title\";s:7:\"Zoek op\";}s:12:\"_multiwidget\";i:1;}','yes'),(429,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(430,'widget_woocommerce_products','a:2:{i:2;a:7:{s:5:\"title\";s:18:\"Onze bestsellers :\";s:6:\"number\";i:3;s:4:\"show\";s:8:\"featured\";s:7:\"orderby\";s:5:\"sales\";s:5:\"order\";s:3:\"asc\";s:9:\"hide_free\";i:1;s:11:\"show_hidden\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(431,'widget_woocommerce_recently_viewed_products','a:2:{i:3;a:2:{s:5:\"title\";s:22:\"Laatst bekeken product\";s:6:\"number\";i:1;}s:12:\"_multiwidget\";i:1;}','yes'),(432,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(433,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(434,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(435,'widget_upsell_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(444,'wc_blocks_db_schema_version','260','yes'),(445,'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;}','no'),(448,'_transient_woocommerce_reports-transient-version','1688580509','yes'),(455,'woocommerce_task_list_tracked_completed_tasks','a:6:{i:0;s:8:\"purchase\";i:1;s:13:\"store_details\";i:2;s:8:\"shipping\";i:3;s:8:\"payments\";i:4;s:15:\"review-shipping\";i:5;s:8:\"products\";}','yes'),(456,'woocommerce_onboarding_profile','a:11:{s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:21:\"contact@teng-shop.com\";s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:27:\"fashion-apparel-accessories\";}}s:13:\"product_types\";a:1:{i:0;s:8:\"physical\";}s:13:\"product_count\";s:8:\"101-1000\";s:14:\"selling_venues\";s:2:\"no\";s:12:\"setup_client\";b:0;s:19:\"business_extensions\";a:0:{}s:5:\"theme\";s:8:\"flatsome\";s:9:\"completed\";b:1;}','yes'),(457,'woocommerce_task_list_dismissed_tasks','a:0:{}','yes'),(458,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1704940649','no');
INSERT INTO `wpj7_options` VALUES (459,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:4:{s:5:\"fr_FR\";a:62:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:36:\"tap_to_pay_iphone_q2_2023_with_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:57:\"New: accept in-person contactless payments on your iPhone\";s:7:\"content\";s:250:\"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!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Set up Tap to Pay on iPhone\";}}s:3:\"url\";s:234:\"https://woocommerce.com/document/woocommerce-payments/in-person-payments/woocommerce-in-person-payments-tap-to-pay-on-iphone-quick-start-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_with_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:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";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:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:247:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_us_inbox_notification\";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-18 04:16:26\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";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:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:254:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_ca_inbox_notification\";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-18 04:18:49\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-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:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-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:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-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-05-31 19:54:10\";}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:\"5.5.0\";}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.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-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:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-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:55:\"woocommerce-WCPayments-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:20:{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:52\";}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:\"3.2.0\";}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.2.3\";}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:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.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:\"4.6.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:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.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:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}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.0.5\";}i:11;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.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:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;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.2\";}i:14;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.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:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;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.3\";}i:17;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.7.1\";}i:18;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.2\";}i:19;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.1\";}}}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:41:\"woocommerce_hpos_1st_notification_q2_2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce_hpos_1st_notification_q2_2023\";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:51:\"High-Performance Order Storage (HPOS) is on its way\";s:7:\"content\";s:310:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce_hpos_1st_notification_q2_2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Learn more about HPOS\";}}s:3:\"url\";s:189:\"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\";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-06 22:14:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-28 23:59:00\";}}}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:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:50:\"WooCommerce Payments is now available in Bulgaria!\";s:7:\"content\";s:216:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";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:128:\"https://woocommerce.com/payments/bulgaria/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-bulgaria-Q2-2023\";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-06-29 16:32:12\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BG\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-czechia-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-czechia-Q2-2023\";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:49:\"WooCommerce Payments is now available in Czechia!\";s:7:\"content\";s:215:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-czechia-Q2-2023\";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:126:\"https://woocommerce.com/payments/czechia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-czechia-Q2-2023\";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-06-29 16:37:42\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CZ\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-croatia-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-croatia-Q2-2023\";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:49:\"WooCommerce Payments is now available in Croatia!\";s:7:\"content\";s:215:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-croatia-Q2-2023\";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:126:\"https://woocommerce.com/payments/croatia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-croatia-Q2-2023\";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-06-29 16:43:08\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HR\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-hungary-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-hungary-Q2-2023\";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:49:\"WooCommerce Payments is now available in Hungary!\";s:7:\"content\";s:215:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-hungary-Q2-2023\";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:126:\"https://woocommerce.com/payments/hungary/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-hungary-Q2-2023\";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-06-29 16:50:53\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HU\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-romania-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-romania-Q2-2023\";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:49:\"WooCommerce Payments is now available in Romania!\";s:7:\"content\";s:215:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-romania-Q2-2023\";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:126:\"https://woocommerce.com/payments/romania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-romania-Q2-2023\";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-06-29 16:55:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"RO\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:29:\"wc-admin-wcpay-sweden-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"wc-admin-wcpay-sweden-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"WooCommerce Payments is now available in Sweden!\";s:7:\"content\";s:214:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"wc-admin-wcpay-sweden-Q2-2023\";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:124:\"https://woocommerce.com/payments/sweden/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-sweden-Q2-2023\";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-06-29 16:08:15\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"SE\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}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:23:\"square_payments_q3_2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"square_payments_q3_2023\";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:22:\"Square for WooCommerce\";s:7:\"content\";s:291:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"square_button_q3_2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:23:\"Get started with Square\";}}s:3:\"url\";s:116:\"https://woocommerce.com/products/square/?utm_source=inbox_note&utm_medium=product&utm_campaign=square_button_q3_2023\";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-07-19 13:25:36\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"FR\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"DE\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"ES\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IR\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"JP\";}}}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}}s:5:\"en_US\";a:63:{s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:24:\"admin.php?page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:14:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:17:\"wc-admin-wisepad3\";O:8:\"stdClass\":8:{s:4:\"slug\";s:17:\"wc-admin-wisepad3\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:74:\"Take your business on the go in Canada with WooCommerce In-Person Payments\";s:7:\"content\";s:275:\"Quickly create new orders, accept payment in person for orders placed online, and automatically sync your inventory – no matter where your business takes you. With WooCommerce In-Person Payments and the WisePad 3 card reader, you can bring the power of your store anywhere.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"wc-admin-wisepad3\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Grow my business offline\";}}s:3:\"url\";s:126:\"https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wisepad3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-06-15 10:00:28\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:52:\"google_listings_ads_custom_attribute_mapping_q4_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"google_listings_ads_custom_attribute_mapping_q4_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:80:\"Our latest improvement to the Google Listings & Ads extension: Attribute Mapping\";s:7:\"content\";s:230:\"You spoke, we listened. This new feature enables you to easily upload your products, customize your product attributes in one place, and target shoppers with more relevant ads. Extend how far your ad dollars go with each campaign.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"google_listings_ads_custom_attribute_mapping_q4_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:182:\"https://woocommerce.com/document/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_custom_attribute_mapping_q4_2022#attribute-mapping\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-11-30 21:14:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:36:\"tap_to_pay_iphone_q2_2023_with_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:57:\"New: accept in-person contactless payments on your iPhone\";s:7:\"content\";s:250:\"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!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Set up Tap to Pay on iPhone\";}}s:3:\"url\";s:234:\"https://woocommerce.com/document/woocommerce-payments/in-person-payments/woocommerce-in-person-payments-tap-to-pay-on-iphone-quick-start-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_with_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:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";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:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:247:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_us_inbox_notification\";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-18 04:16:26\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";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:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:254:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_ca_inbox_notification\";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-18 04:18:49\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-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:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-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:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-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-05-31 19:54:10\";}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:\"5.5.0\";}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.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-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:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-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:55:\"woocommerce-WCPayments-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:20:{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:52\";}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:\"3.2.0\";}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.2.3\";}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:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.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:\"4.6.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:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.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:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}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.0.5\";}i:11;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.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:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;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.2\";}i:14;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.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:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;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.3\";}i:17;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.7.1\";}i:18;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.2\";}i:19;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.1\";}}}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:41:\"woocommerce_hpos_1st_notification_q2_2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce_hpos_1st_notification_q2_2023\";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:51:\"High-Performance Order Storage (HPOS) is on its way\";s:7:\"content\";s:310:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce_hpos_1st_notification_q2_2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Learn more about HPOS\";}}s:3:\"url\";s:189:\"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\";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-06 22:14:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-28 23:59:00\";}}}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:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:50:\"WooCommerce Payments is now available in Bulgaria!\";s:7:\"content\";s:216:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";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:128:\"https://woocommerce.com/payments/bulgaria/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-bulgaria-Q2-2023\";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-06-29 16:32:12\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BG\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-czechia-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-czechia-Q2-2023\";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:49:\"WooCommerce Payments is now available in Czechia!\";s:7:\"content\";s:215:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-czechia-Q2-2023\";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:126:\"https://woocommerce.com/payments/czechia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-czechia-Q2-2023\";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-06-29 16:37:42\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CZ\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-croatia-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-croatia-Q2-2023\";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:49:\"WooCommerce Payments is now available in Croatia!\";s:7:\"content\";s:215:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-croatia-Q2-2023\";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:126:\"https://woocommerce.com/payments/croatia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-croatia-Q2-2023\";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-06-29 16:43:08\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HR\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-hungary-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-hungary-Q2-2023\";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:49:\"WooCommerce Payments is now available in Hungary!\";s:7:\"content\";s:215:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-hungary-Q2-2023\";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:126:\"https://woocommerce.com/payments/hungary/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-hungary-Q2-2023\";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-06-29 16:50:53\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HU\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-romania-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-romania-Q2-2023\";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:49:\"WooCommerce Payments is now available in Romania!\";s:7:\"content\";s:215:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-romania-Q2-2023\";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:126:\"https://woocommerce.com/payments/romania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-romania-Q2-2023\";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-06-29 16:55:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"RO\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:29:\"wc-admin-wcpay-sweden-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"wc-admin-wcpay-sweden-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"WooCommerce Payments is now available in Sweden!\";s:7:\"content\";s:214:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"wc-admin-wcpay-sweden-Q2-2023\";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:124:\"https://woocommerce.com/payments/sweden/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-sweden-Q2-2023\";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-06-29 16:08:15\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"SE\";}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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}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:5:\"sv_SE\";a:59:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:110:\"https://woo.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:202:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woo.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:127:\"https://woo.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:459:\"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://woo.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:122:\"https://woo.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:136:\"https://woo.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:114:\"https://woo.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:722:\"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://woo.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://woo.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:434:\"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://woo.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:350:\"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://woo.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:129:\"https://woo.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:129:\"https://woo.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:129:\"https://woo.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:129:\"https://woo.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:383:\"<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://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:140:\"https://woo.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:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:147:\"https://woo.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:135:\"https://woo.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:170:\"https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:153:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-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:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-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:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-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-05-31 19:54:10\";}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:\"5.5.0\";}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.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-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:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-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:55:\"woocommerce-WCPayments-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:20:{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:52\";}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:\"3.2.0\";}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.2.3\";}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:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.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:\"4.6.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:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.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:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}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.0.5\";}i:11;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.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:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;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.2\";}i:14;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.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:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;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.3\";}i:17;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.7.1\";}i:18;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.2\";}i:19;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.1\";}}}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:117:\"https://woo.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WooPayments-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:78:\"Action required: Security update for WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:201:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:46:\"woocommerce-WooPayments-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:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.8.0\";}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:\"6.2.1\";}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: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: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:123:\"https://woo.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:38:\"woo-activation-survey-blockers-22AUG23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"woo-activation-survey-blockers-22AUG23\";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:40:\"How can we help you get that first sale?\";s:7:\"content\";s:211:\"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!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woo-activation-survey-blockers-survey-button-22AUG23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Take our short survey\";}}s:3:\"url\";s:54:\"https://woocommerce.survey.fm/getting-started-with-woo\";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:\"2023-08-22 15:54:58\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\"<=\";s:4:\"days\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";i:0;}}}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:5:\"nl_NL\";a:60:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:110:\"https://woo.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:202:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woo.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:127:\"https://woo.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:459:\"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://woo.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:122:\"https://woo.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:136:\"https://woo.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:114:\"https://woo.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:722:\"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://woo.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://woo.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:434:\"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://woo.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:350:\"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://woo.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:129:\"https://woo.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:129:\"https://woo.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:129:\"https://woo.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:129:\"https://woo.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:383:\"<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://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:140:\"https://woo.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:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:147:\"https://woo.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:135:\"https://woo.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:170:\"https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:153:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-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:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-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:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-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-05-31 19:54:10\";}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:\"5.5.0\";}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.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-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:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-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:55:\"woocommerce-WCPayments-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:20:{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:52\";}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:\"3.2.0\";}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.2.3\";}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:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.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:\"4.6.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:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.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:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}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.0.5\";}i:11;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.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:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;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.2\";}i:14;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.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:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;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.3\";}i:17;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.7.1\";}i:18;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.2\";}i:19;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.1\";}}}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:117:\"https://woo.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WooPayments-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:78:\"Action required: Security update for WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:201:\"<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.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:46:\"woocommerce-WooPayments-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:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.8.0\";}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:\"6.2.1\";}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: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: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:123:\"https://woo.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:38:\"woo-activation-survey-blockers-22AUG23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"woo-activation-survey-blockers-22AUG23\";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:40:\"How can we help you get that first sale?\";s:7:\"content\";s:211:\"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!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woo-activation-survey-blockers-survey-button-22AUG23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Take our short survey\";}}s:3:\"url\";s:54:\"https://woocommerce.survey.fm/getting-started-with-woo\";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:\"2023-08-22 15:54:58\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\"<=\";s:4:\"days\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";i:0;}}}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:153:\"https://woo.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:134:\"https://woo.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\";}}}}}}','no');
INSERT INTO `wpj7_options` VALUES (460,'_transient_shipping-transient-version','1700328357','yes'),(461,'woocommerce_admin_created_default_shipping_zones','yes','yes'),(463,'woocommerce_task_list_prompt_shown','1','yes'),(483,'wc_stripe_wh_monitor_began_at','1669163277','yes'),(484,'wc_stripe_wh_last_success_at','0','yes'),(485,'wc_stripe_wh_last_failure_at','0','yes'),(486,'wc_stripe_wh_last_error','validation_succeeded','yes'),(488,'wc_stripe_show_style_notice','no','yes'),(489,'wc_stripe_show_sca_notice','no','yes'),(491,'woocommerce_stripe_settings','a:29:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:9:\"Betalkort\";s:11:\"description\";s:26:\"Betala med ditt kreditkort\";s:8:\"testmode\";s:2:\"no\";s:20:\"test_publishable_key\";s:0:\"\";s:15:\"test_secret_key\";s:0:\"\";s:15:\"publishable_key\";s:107:\"pk_live_51NR06LL2rnkpzIzkYP918zkPpOmgAgKuK8lgHHmXJbNLZN7KPJ1vDpqGCnmQY95sg92nlvCSR8u2OSo3p5ocn9yj003QL4ua0Y\";s:10:\"secret_key\";s:107:\"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\";s:19:\"test_webhook_secret\";s:0:\"\";s:14:\"webhook_secret\";s:0:\"\";s:14:\"inline_cc_form\";s:2:\"no\";s:20:\"statement_descriptor\";s:9:\"Teng Shop\";s:26:\"short_statement_descriptor\";s:0:\"\";s:7:\"capture\";s:3:\"yes\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:32:\"payment_request_button_locations\";a:2:{i:0;s:4:\"cart\";i:1;s:8:\"checkout\";}s:27:\"payment_request_button_size\";s:5:\"small\";s:11:\"saved_cards\";s:3:\"yes\";s:7:\"logging\";s:2:\"no\";s:31:\"upe_checkout_experience_enabled\";s:8:\"disabled\";s:15:\"api_credentials\";s:0:\"\";s:7:\"webhook\";s:0:\"\";s:25:\"apple_pay_verified_domain\";s:25:\"www.nl.ecom-expansion.com\";s:20:\"apple_pay_domain_set\";s:3:\"yes\";s:9:\"title_upe\";s:0:\"\";s:37:\"is_short_statement_descriptor_enabled\";s:2:\"no\";s:41:\"upe_checkout_experience_accepted_payments\";a:0:{}}','yes'),(508,'_transient_product_query-transient-version','1704138931','yes'),(509,'_transient_product-transient-version','1703030018','yes'),(510,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),(748,'woocommerce_admin_reviewed_default_shipping_zones','yes','yes'),(750,'woocommerce_free_shipping_3_settings','a:4:{s:5:\"title\";s:17:\"Gratis verzending\";s:8:\"requires\";s:10:\"min_amount\";s:10:\"min_amount\";s:2:\"70\";s:16:\"ignore_discounts\";s:2:\"no\";}','yes'),(802,'wafs_plugin_version','1.1.6','yes'),(804,'woocommerce_advanced_free_shipping_settings','a:3:{s:7:\"enabled\";s:3:\"yes\";s:19:\"hide_other_shipping\";s:3:\"yes\";s:10:\"conditions\";s:0:\"\";}','yes'),(843,'woocommerce_flat_rate_7_settings','a:3:{s:5:\"title\";s:13:\"Verzendkosten\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:5:\"11,47\";}','yes'),(849,'woocommerce_gateway_stripe_retention','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(868,'woocommerce_flat_rate_8_settings','a:3:{s:5:\"title\";s:13:\"Verzendkosten\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:5:\"11,47\";}','yes'),(904,'recovery_keys','a:0:{}','yes'),(905,'https_detection_errors','a:2:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:34:\"Verifieringen av SSL misslyckades.\";}s:19:\"bad_response_source\";a:1:{i:0;s:56:\"Det verkar som om svaret inte kom från denna webbplats.\";}}','yes'),(914,'finished_updating_comment_type','1','yes'),(919,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":4,\"critical\":1}','yes'),(936,'woocommerce_default_homepage_layout','two_columns','yes'),(937,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:5:\"setup\";i:1;s:8:\"extended\";}','yes'),(972,'woocommerce_maybe_regenerate_images_hash','d6a0f61688b84c5394b694b5d78d0978','yes'),(1026,'wc_ast_default_mark_shipped','1','yes'),(1027,'wc_ast_unclude_tracking_info','a:15:{i:0;s:1:\"1\";i:1;s:15:\"partial-shipped\";i:2;s:16:\"updated-tracking\";s:10:\"processing\";s:1:\"0\";s:9:\"completed\";i:1;s:15:\"partial-shipped\";i:1;s:16:\"updated-tracking\";s:1:\"1\";s:9:\"cancelled\";s:1:\"0\";s:7:\"on-hold\";s:1:\"0\";s:8:\"refunded\";s:1:\"0\";s:6:\"failed\";s:1:\"0\";s:24:\"show_in_customer_invoice\";s:1:\"0\";s:21:\"show_in_customer_note\";s:1:\"0\";s:14:\"checkout-draft\";s:1:\"0\";s:7:\"shipped\";i:1;}','yes'),(1028,'wc_ast_show_orders_actions','a:13:{i:0;s:1:\"1\";i:1;s:9:\"completed\";i:2;s:15:\"partial-shipped\";i:3;s:16:\"updated-tracking\";s:10:\"processing\";s:1:\"1\";s:9:\"completed\";s:1:\"1\";s:15:\"partial-shipped\";s:1:\"1\";s:16:\"updated-tracking\";s:1:\"1\";s:7:\"on-hold\";s:1:\"0\";s:9:\"cancelled\";s:1:\"0\";s:8:\"refunded\";s:1:\"0\";s:6:\"failed\";s:1:\"0\";s:14:\"checkout-draft\";s:1:\"0\";}','yes'),(1029,'wc_advanced_shipment_tracking','3.21','yes'),(1036,'display_track_in_my_account','1','yes'),(1037,'open_track_in_new_tab','1','yes'),(1038,'wc_ast_api_date_format','m-d-Y','yes'),(1039,'wc_ast_status_shipped','1','yes'),(1040,'wc_ast_status_delivered','1','yes'),(1041,'wc_ast_status_label_color','#1e73be','yes'),(1042,'wc_ast_status_label_font_color','#fff','yes'),(1043,'wc_ast_status_partial_shipped','1','yes'),(1044,'wc_ast_status_partial_shipped_label_color','#1e73be','yes'),(1045,'wc_ast_status_partial_shipped_label_font_color','#fff','yes'),(1046,'customizer_partial_shipped_order_settings_enabled','','yes'),(1047,'woocommerce_customer_partial_shipped_order_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(1048,'wcast_enable_partial_shipped_email','0','yes'),(1063,'trackship_trigger_order_statuses','a:1:{i:0;s:9:\"completed\";}','yes'),(1064,'trackship_db','1.13','yes'),(1065,'shipment_email_settings','a:4:{s:12:\"border_color\";s:7:\"#cccccc\";s:8:\"bg_color\";s:7:\"#fafafa\";s:10:\"font_color\";s:4:\"#333\";s:20:\"tracking_page_layout\";s:4:\"#333\";}','yes'),(1066,'enable_notification_for_amazon_order','1','yes'),(1070,'wc_ast_api_key','628734b70934e910d3cdf1185f0eb933','yes'),(1072,'trackers_balance','50','yes'),(1073,'wc_ast_trackship_page_id','27','yes'),(1074,'wc_advanced_shipment_tracking_ts_page','1.0','yes'),(1075,'user_plan','Free 50','yes'),(1077,'late_shipments_email_settings','a:1:{s:25:\"wcast_late_shipments_days\";s:1:\"7\";}','yes'),(1078,'wc_ast_show_shipment_status_filter','0','yes'),(1079,'enable_email_widget','1','yes'),(1094,'wc_ast_use_tracking_page','1','yes'),(1095,'wc_ast_trackship_other_page','','yes'),(1127,'_transient_orders-transient-version','1669910708','yes'),(1201,'woocommerce_new_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:23:\"kotaro21.mail@gmail.com\";s:7:\"subject\";s:44:\"{site_title} : New order {order_number} - NL\";s:7:\"heading\";s:42:\"New {site_title} NL order: {order_number}.\";s:18:\"additional_content\";s:28:\"Congratulations on the sale.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(1202,'woocommerce_cancelled_order_settings','a:6:{s:7:\"enabled\";s:2:\"no\";s:9:\"recipient\";s:19:\"example@example.com\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:25:\"Merci de votre attention.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(1232,'theme_mods_flatsome-child','a:288:{i:0;b:0;s:17:\"flatsome_fallback\";i:1;s:20:\"topbar_elements_left\";a:0:{}s:21:\"topbar_elements_right\";a:1:{i:0;s:7:\"nav-top\";}s:20:\"header_elements_left\";a:1:{i:0;s:11:\"search-form\";}s:21:\"header_elements_right\";a:1:{i:0;s:4:\"cart\";}s:27:\"header_elements_bottom_left\";a:0:{}s:29:\"header_elements_bottom_center\";a:1:{i:0;s:3:\"nav\";}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:3:{i:0;s:3:\"nav\";i:1;s:9:\"divider_3\";i:2;s:7:\"account\";}s:14:\"product_layout\";s:10:\"no-sidebar\";s:23:\"payment_icons_placement\";a:2:{i:0;s:6:\"footer\";i:1;s:4:\"cart\";}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:5:{s:11:\"font-family\";s:115:\"-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif\";s:7:\"variant\";s:3:\"700\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:700;s:10:\"font-style\";s:6:\"normal\";}s:10:\"type_texts\";a:5:{s:11:\"font-family\";s:115:\"-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:8:\"type_nav\";a:5:{s:11:\"font-family\";s:115:\"-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif\";s:7:\"variant\";s:3:\"700\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:700;s:10:\"font-style\";s:6:\"normal\";}s:8:\"type_alt\";a:2:{s:11:\"font-family\";s:14:\"Dancing Script\";s:7:\"variant\";s:7:\"regular\";}s:14:\"pages_template\";s:7:\"default\";s:11:\"site_loader\";s:0:\"\";s:19:\"flatsome_db_version\";s:6:\"3.18.1\";s:18:\"nav_menu_locations\";a:6:{s:14:\"primary_mobile\";i:0;s:6:\"footer\";i:0;s:11:\"top_bar_nav\";i:91;s:10:\"my_account\";i:0;s:8:\"vertical\";i:0;s:7:\"primary\";i:0;}s:9:\"smof_init\";s:31:\"Thu, 24 Nov 2022 21:42:49 +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:1174:\".woocommerce .out-of-stock-label {\n    background-color: #df4c18 !important; \n    color: #ffffff !important; \n}\nb, strong {\n    font-weight: inherit;\n    /* Commentez ou supprimez cette ligne pour rendre le texte moins épais. */\n    /* font-weight: bolder; */\n}\n\n.custom-guarantees strong {\n    /* Police et taille du titre des garanties */\n    font-size: 18px;\n    color: #555555;\n    margin-bottom: 10px;\n    display: block;\n}\n\n.custom-guarantees ul {\n    list-style-type: none;\n    padding-left: 0;\n    margin: 0;\n    /* background-color: #f5f5f5; Retiré pour laisser le fond blanc */\n}\n\n.custom-guarantees li {\n    padding-left: 1em;\n    text-indent: -1em;\n    margin-bottom: 5px;\n    position: relative;\n    font-size: 16px; /* Ajustez selon la taille de texte désirée */\n    color: #777777; /* Ajustez selon la couleur de texte désirée */\n}\n\n.custom-guarantees li::before {\n    content: \'•\'; /* Utilisez le caractère de puce désiré */\n    position: absolute;\n    left: 0;\n    top: 50%;\n    transform: translateY(-50%);\n    font-size: 20px; /* Taille de la puce */\n    color: #777777; /* Couleur de la puce, ajustez selon vos besoins */\n    line-height: 1;\n}\";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\";s:1:\"1\";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:14:\"Zoeken naar...\";s:21:\"search_result_latency\";s:1:\"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:8:\"swatches\";s:1:\"1\";s:27:\"additional_variation_images\";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:224:\"<div class=\"custom-guarantees\">\n    <strong>Onze garanties:</strong>\n    <ul>\n        <li>14 dagen geld terug garantie</li>\n        <li>Levering met tracking</li>\n        <li>Responsieve klantenservice </li>\n    </ul>\n</div>\";s:14:\"html_thank_you\";s:0:\"\";s:12:\"catalog_mode\";i:0;s:19:\"catalog_mode_prices\";i:0;s:23:\"catalog_mode_sale_badge\";i:0;s:19:\"catalog_mode_header\";s:0:\"\";s:20:\"catalog_mode_product\";s:0:\"\";s:21:\"catalog_mode_lightbox\";s:0:\"\";s:27:\"infinite_scroll_loader_type\";s:7:\"spinner\";s:26:\"infinite_scroll_loader_img\";s:0:\"\";s:7:\"backups\";N;s:16:\"activated_before\";b:1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1669326175;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:16:\"sidebar-footer-2\";a:0:{}s:12:\"shop-sidebar\";a:0:{}s:15:\"product-sidebar\";a:0:{}}}s:18:\"custom_css_post_id\";i:588;s:9:\"site_logo\";i:364;s:10:\"logo_width\";s:3:\"209\";s:16:\"products_pr_page\";s:2:\"20\";s:25:\"category_row_count_mobile\";s:1:\"2\";s:19:\"category_show_title\";b:1;s:14:\"color_checkout\";s:7:\"#df4c18\";s:17:\"facebook_accounts\";a:1:{i:0;s:1:\"0\";}s:12:\"fl_portfolio\";s:1:\"1\";s:15:\"parallax_mobile\";s:1:\"0\";s:15:\"flatsome_studio\";s:1:\"1\";s:15:\"release_channel\";s:6:\"stable\";s:18:\"wpseo_primary_term\";s:1:\"0\";s:37:\"wpseo_manages_product_layout_priority\";s:1:\"0\";s:16:\"wpseo_breadcrumb\";s:1:\"0\";s:28:\"wpseo_breadcrumb_remove_last\";s:1:\"1\";s:16:\"footer_left_text\";s:57:\"Copyright [ux_current_year] © <strong>Teng Shop</strong>\";s:13:\"payment_icons\";a:6:{i:0;s:4:\"visa\";i:1;s:6:\"stripe\";i:2;s:10:\"mastercard\";i:3;s:8:\"applepay\";i:4;s:9:\"googlepay\";i:5;s:6:\"paypal\";}s:10:\"site_width\";s:4:\"1500\";s:12:\"footer_block\";s:16:\"wonderful-footer\";s:13:\"logo_position\";s:6:\"center\";s:17:\"search_icon_style\";s:7:\"outline\";s:24:\"header_search_form_style\";s:4:\"flat\";s:12:\"logo_padding\";s:1:\"0\";s:22:\"topbar_elements_center\";a:1:{i:0;s:4:\"html\";}s:11:\"topbar_left\";s:69:\"<strong class=\"uppercase\">Gratis verzending vanaf 70€ 🎁</strong>\";s:13:\"header_height\";s:2:\"83\";s:17:\"dropdown_nav_size\";s:3:\"100\";s:13:\"dropdown_text\";s:5:\"light\";s:11:\"preset_demo\";s:15:\"header-cart-top\";s:29:\"header_mobile_elements_bottom\";a:0:{}s:11:\"topbar_show\";b:1;s:17:\"header_top_height\";s:2:\"33\";s:12:\"topbar_color\";s:4:\"dark\";s:9:\"topbar_bg\";s:7:\"#df4c18\";s:13:\"nav_style_top\";s:7:\"divided\";s:12:\"header_width\";s:9:\"container\";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:1;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:\"10\";s:15:\"nav_position_bg\";s:7:\"#f1f1f1\";s:16:\"nav_style_bottom\";s:0:\"\";s:15:\"nav_size_bottom\";s:0:\"\";s:20:\"nav_uppercase_bottom\";b:1;s:18:\"nav_position_color\";s:5:\"light\";s:21:\"type_nav_bottom_color\";s:7:\"#000000\";s:27:\"type_nav_bottom_color_hover\";s:7:\"#df4c18\";s:19:\"header_search_style\";s:8:\"dropdown\";s:19:\"header_search_width\";s:2:\"60\";s:15:\"cart_icon_style\";s:10:\"fill-round\";s:24:\"header_search_categories\";b:0;s:8:\"nav_push\";s:1:\"0\";s:17:\"nav_height_bottom\";s:2:\"34\";s:14:\"nav_height_top\";s:2:\"16\";s:11:\"dropdown_bg\";s:7:\"#ffffff\";s:15:\"dropdown_border\";s:7:\"#ffffff\";s:15:\"dropdown_shadow\";b:1;s:23:\"dropdown_border_enabled\";b:0;s:14:\"dropdown_arrow\";b:1;s:14:\"dropdown_style\";s:6:\"simple\";s:19:\"dropdown_text_style\";s:6:\"simple\";s:17:\"nav_top_uppercase\";b:0;s:20:\"nav_top_body_overlay\";b:0;s:18:\"type_nav_top_color\";s:0:\"\";s:24:\"type_nav_top_color_hover\";s:0:\"\";s:21:\"header_button_1_depth\";s:1:\"0\";s:27:\"header_button_1_depth_hover\";s:1:\"0\";s:17:\"header_cart_total\";b:1;s:17:\"header_cart_title\";b:1;s:13:\"contact_phone\";s:0:\"\";s:13:\"contact_email\";s:0:\"\";s:13:\"contact_hours\";s:0:\"\";s:26:\"text_transform_breadcrumbs\";s:4:\"none\";s:16:\"type_size_mobile\";s:3:\"100\";s:29:\"text_transform_section_titles\";s:0:\"\";s:13:\"color_primary\";s:7:\"#df4c18\";s:15:\"color_secondary\";s:7:\"#000000\";s:11:\"color_links\";s:7:\"#df4c18\";s:19:\"type_headings_color\";s:7:\"#555555\";s:11:\"color_texts\";s:7:\"#777777\";s:19:\"color_regular_price\";s:0:\"\";s:16:\"color_sale_price\";s:0:\"\";s:18:\"color_widget_links\";s:0:\"\";s:25:\"category_row_count_tablet\";s:1:\"4\";s:15:\"category_shadow\";s:1:\"0\";s:10:\"grid_style\";s:5:\"grid2\";s:21:\"category_shadow_hover\";s:1:\"0\";s:20:\"product_box_category\";b:0;s:24:\"checkout_floating_labels\";b:0;s:27:\"checkout_fields_email_first\";b:1;s:23:\"checkout_sticky_sidebar\";b:0;s:29:\"checkout_terms_and_conditions\";s:0:\"\";s:37:\"terms_and_conditions_lightbox_buttons\";b:1;s:17:\"cart_auto_refresh\";b:1;s:18:\"cart_estimate_text\";b:0;s:17:\"back_to_top_shape\";s:6:\"circle\";s:18:\"back_to_top_mobile\";b:1;s:13:\"default_title\";b:0;s:16:\"page_top_excerpt\";b:0;s:12:\"social_icons\";a:8:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";i:2;s:7:\"twitter\";i:3;s:5:\"email\";i:4;s:9:\"pinterest\";i:5;s:6:\"tumblr\";i:6;s:8:\"telegram\";i:7;s:8:\"whatsapp\";}s:13:\"cookie_notice\";b:0;s:19:\"privacy_policy_page\";s:1:\"3\";s:26:\"cookie_notice_button_style\";s:0:\"\";s:10:\"nav_height\";s:2:\"16\";s:13:\"topbar_sticky\";b:1;s:20:\"header_height_sticky\";s:2:\"70\";s:19:\"sticky_logo_padding\";s:1:\"0\";s:17:\"nav_height_sticky\";s:2:\"50\";s:15:\"breadcrumb_size\";s:6:\"medium\";s:15:\"breadcrumb_case\";s:9:\"uppercase\";s:19:\"product_sticky_cart\";b:1;s:21:\"product_next_prev_nav\";b:0;s:17:\"product_info_meta\";b:0;s:18:\"product_info_share\";b:0;s:25:\"product_offcanvas_sidebar\";b:0;s:12:\"product_zoom\";b:0;s:21:\"product_title_divider\";b:1;s:17:\"product_info_form\";s:4:\"flat\";s:15:\"swatches_layout\";s:7:\"stacked\";s:20:\"max_related_products\";s:1:\"4\";s:27:\"category_header_transparent\";b:0;s:23:\"category_sticky_sidebar\";b:0;s:18:\"category_row_count\";s:1:\"5\";s:25:\"short_description_in_grid\";b:0;s:18:\"disable_quick_view\";b:1;s:20:\"equalize_product_box\";b:1;s:12:\"bubble_style\";s:6:\"style1\";s:22:\"sale_bubble_percentage\";b:1;s:15:\"breadcrumb_home\";b:1;s:9:\"cat_style\";s:5:\"badge\";s:14:\"header_divider\";b:1;s:16:\"nav_body_overlay\";b:0;s:13:\"header_sticky\";b:1;s:16:\"bottombar_sticky\";b:1;s:13:\"wishlist_icon\";s:5:\"heart\";s:19:\"wishlist_icon_style\";s:0:\"\";s:14:\"wishlist_title\";b:1;s:11:\"color_alert\";s:7:\"#b20000\";s:17:\"flatsome_lightbox\";b:0;s:19:\"category_show_count\";b:0;s:11:\"sale_bubble\";b:1;s:19:\"product_image_width\";s:1:\"5\";s:19:\"product_image_style\";s:8:\"vertical\";s:16:\"product_lightbox\";s:8:\"flatsome\";s:18:\"product_info_align\";s:4:\"left\";s:16:\"swatches_tooltip\";b:0;s:15:\"product_display\";s:9:\"line-grow\";s:18:\"product_tabs_align\";s:4:\"left\";s:14:\"product_upsell\";s:7:\"sidebar\";s:30:\"swatches_out_of_stock_inactive\";b:0;s:14:\"product_header\";s:0:\"\";s:10:\"blog_badge\";b:0;s:17:\"blog_show_excerpt\";b:1;s:23:\"blog_posts_header_style\";s:6:\"normal\";s:18:\"blog_archive_title\";b:0;s:15:\"blog_author_box\";b:0;s:25:\"blog_single_next_prev_nav\";b:0;s:20:\"blog_featured_height\";s:3:\"500\";s:19:\"blog_sticky_sidebar\";b:0;s:15:\"blog_post_style\";s:7:\"default\";s:27:\"blog_single_header_category\";b:0;s:23:\"blog_single_header_meta\";b:0;s:26:\"blog_single_featured_image\";b:1;s:23:\"blog_single_footer_meta\";b:0;s:10:\"blog_style\";s:6:\"normal\";s:16:\"blog_posts_depth\";s:1:\"0\";s:22:\"blog_posts_depth_hover\";s:1:\"0\";s:19:\"blog_excerpt_suffix\";s:12:\"Lees meer op\";s:38:\"header_nav_vertical_fly_out_nav_height\";s:1:\"0\";s:23:\"header_newsletter_title\";s:29:\"Aanmelden voor de nieuwsbrief\";s:27:\"header_newsletter_sub_title\";s:134:\"Meld je aan voor onze nieuwsbrief om informatie te ontvangen over verkopen en nieuwe producten. Voeg hier tekst toe of verwijder deze.\";s:23:\"header_newsletter_label\";s:13:\"Nieuwsbrieven\";s:9:\"type_size\";s:3:\"100\";s:16:\"related_products\";s:4:\"grid\";s:16:\"site_logo_slogan\";b:0;s:13:\"contact_style\";s:4:\"left\";s:14:\"top_right_text\";s:0:\"\";s:20:\"header_account_title\";b:1;s:23:\"header_account_register\";b:0;s:12:\"topbar_right\";s:0:\"\";s:22:\"header_button_1_radius\";s:4:\"99px\";s:13:\"disable_fonts\";b:1;s:22:\"text_transform_buttons\";s:0:\"\";s:23:\"swatches_color_selected\";s:7:\"#d26e4b\";s:16:\"category_sidebar\";s:4:\"none\";s:19:\"category_grid_style\";s:4:\"grid\";s:27:\"category_force_image_height\";b:0;s:21:\"category_image_height\";s:2:\"62\";s:15:\"checkout_layout\";s:0:\"\";s:19:\"cart_sticky_sidebar\";b:0;s:13:\"product_hover\";s:12:\"fade_in_back\";s:17:\"add_to_cart_style\";s:7:\"outline\";s:24:\"product_box_review_count\";b:0;s:19:\"footer_bottom_color\";s:0:\"\";s:17:\"header_cart_style\";s:8:\"dropdown\";s:10:\"color_sale\";s:7:\"#df4c18\";s:10:\"content_bg\";s:0:\"\";}','yes'),(1235,'woocommerce_thumbnail_cropping','uncropped','yes'),(1236,'woocommerce_thumbnail_cropping_custom_width','5','yes'),(1237,'woocommerce_thumbnail_cropping_custom_height','6','yes'),(1257,'wpcf7','a:3:{s:7:\"version\";s:5:\"5.8.5\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1695997115;s:7:\"version\";s:5:\"5.8.1\";s:11:\"count_valid\";i:2;s:13:\"count_invalid\";i:0;}s:9:\"recaptcha\";N;}','yes'),(1265,'yit_recently_activated','a:1:{i:0;s:34:\"yith-woocommerce-wishlist/init.php\";}','yes'),(1268,'yith_wcwl_wishlist_page_id','33','yes'),(1269,'yith_wcwl_version','3.15.0','yes'),(1270,'yith_wcwl_db_version','3.0.0','yes'),(1271,'yith_wcwl_ajax_enable','no','yes'),(1272,'yith_wcwl_after_add_to_wishlist_behaviour','view','yes'),(1273,'yith_wcwl_show_on_loop','no','yes'),(1274,'yith_wcwl_loop_position','after_add_to_cart','yes'),(1275,'yith_wcwl_button_position','add-to-cart','yes'),(1276,'yith_wcwl_add_to_wishlist_text','Add to Wishlist','yes'),(1277,'yith_wcwl_product_added_text','Product added!','yes'),(1278,'yith_wcwl_browse_wishlist_text','See the wish list','yes'),(1279,'yith_wcwl_already_in_wishlist_text','The product is already in your wishlist!','yes'),(1280,'yith_wcwl_add_to_wishlist_style','link','yes'),(1281,'yith_wcwl_rounded_corners_radius','16','yes'),(1282,'yith_wcwl_add_to_wishlist_icon','fa-heart-o','yes'),(1283,'yith_wcwl_add_to_wishlist_custom_icon','','yes'),(1284,'yith_wcwl_added_to_wishlist_icon','fa-heart','yes'),(1285,'yith_wcwl_added_to_wishlist_custom_icon','','yes'),(1286,'yith_wcwl_custom_css','','yes'),(1287,'yith_wcwl_variation_show','no','yes'),(1288,'yith_wcwl_price_show','yes','yes'),(1289,'yith_wcwl_stock_show','yes','yes'),(1290,'yith_wcwl_show_dateadded','no','yes'),(1291,'yith_wcwl_add_to_cart_show','yes','yes'),(1292,'yith_wcwl_show_remove','yes','yes'),(1293,'yith_wcwl_repeat_remove_button','no','yes'),(1294,'yith_wcwl_redirect_cart','no','yes'),(1295,'yith_wcwl_remove_after_add_to_cart','yes','yes'),(1296,'yith_wcwl_enable_share','yes','yes'),(1297,'yith_wcwl_share_fb','yes','yes'),(1298,'yith_wcwl_share_twitter','yes','yes'),(1299,'yith_wcwl_share_pinterest','yes','yes'),(1300,'yith_wcwl_share_email','yes','yes'),(1301,'yith_wcwl_share_whatsapp','yes','yes'),(1302,'yith_wcwl_share_url','no','yes'),(1303,'yith_wcwl_socials_title','My wish list on Teng Shop','yes'),(1304,'yith_wcwl_socials_text','','yes'),(1305,'yith_wcwl_socials_image_url','','yes'),(1306,'yith_wcwl_wishlist_title','My wish list','yes'),(1307,'yith_wcwl_add_to_cart_text','Add to cart','yes'),(1308,'yith_wcwl_add_to_cart_style','link','yes'),(1309,'yith_wcwl_add_to_cart_rounded_corners_radius','16','yes'),(1310,'yith_wcwl_add_to_cart_icon','fa-shopping-cart','yes'),(1311,'yith_wcwl_add_to_cart_custom_icon','','yes'),(1312,'yith_wcwl_color_headers_background','#F4F4F4','yes'),(1313,'yith_wcwl_fb_button_icon','fa-facebook','yes'),(1314,'yith_wcwl_fb_button_custom_icon','','yes'),(1315,'yith_wcwl_tw_button_icon','fa-twitter','yes'),(1316,'yith_wcwl_tw_button_custom_icon','','yes'),(1317,'yith_wcwl_pr_button_icon','fa-pinterest','yes'),(1318,'yith_wcwl_pr_button_custom_icon','','yes'),(1319,'yith_wcwl_em_button_icon','fa-envelope-o','yes'),(1320,'yith_wcwl_em_button_custom_icon','','yes'),(1321,'yith_wcwl_wa_button_icon','fa-whatsapp','yes'),(1322,'yith_wcwl_wa_button_custom_icon','','yes'),(1323,'yit_plugin_fw_panel_wc_default_options_set','a:1:{s:15:\"yith_wcwl_panel\";b:1;}','yes'),(1349,'bodhi_svgs_plugin_version','2.5.5','yes'),(1350,'bodhi_svgs_settings','a:4:{s:22:\"sanitize_svg_front_end\";s:2:\"on\";s:8:\"restrict\";a:1:{i:0;s:13:\"administrator\";}s:12:\"sanitize_svg\";s:2:\"on\";s:24:\"sanitize_on_upload_roles\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}}','yes'),(1485,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1790,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-payments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1688501396;}','no'),(1999,'redirection_options','a:31:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"1bb2205d26df1b12acc44f3339d781f8\";s:12:\"monitor_post\";i:0;s:13:\"monitor_types\";a:0:{}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:-1;s:10:\"expire_404\";i:-1;s:12:\"log_external\";b:0;s:10:\"log_header\";b:0;s:10:\"track_hits\";b:1;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:0;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:7:\"headers\";a:0:{}s:8:\"database\";s:3:\"4.2\";s:8:\"relocate\";s:0:\"\";s:16:\"preferred_domain\";s:0:\"\";s:7:\"aliases\";a:0:{}s:10:\"permalinks\";a:0:{}s:9:\"cache_key\";i:0;s:13:\"plugin_update\";s:6:\"prompt\";s:13:\"update_notice\";i:0;s:10:\"flag_query\";s:5:\"exact\";s:9:\"flag_case\";b:1;s:13:\"flag_trailing\";b:1;s:10:\"flag_regex\";b:0;}','yes'),(2896,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"21.5\";}','yes'),(2897,'wpseo','a:109:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:0;s:16:\"indexing_started\";i:1670267121;s:15:\"indexing_reason\";s:23:\"home_url_option_changed\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"21.5\";s:16:\"previous_version\";s:4:\"21.4\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1669845368;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:6:{s:12:\"access_token\";s:40:\"it7XGHutoK3VVfV4UKz0plwV0Y5GrucFsWQLgRnd\";s:13:\"refresh_token\";s:40:\"JfQyev2bYzmTHmMuMEx56qtzhhQZRwtHPufG51N1\";s:7:\"expires\";i:1681499101;s:11:\"has_expired\";b:0;s:10:\"created_at\";i:1680894301;s:11:\"error_count\";i:0;}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:10:{s:16:\"block_categories\";s:16:\"block_categories\";s:12:\"product_type\";s:12:\"product_type\";s:18:\"product_visibility\";s:18:\"product_visibility\";s:11:\"product_cat\";s:11:\"collections\";s:11:\"product_tag\";s:17:\"etiquette-produit\";s:22:\"product_shipping_class\";s:22:\"product_shipping_class\";s:8:\"pa_color\";s:8:\"pa_color\";s:7:\"pa_size\";s:7:\"pa_size\";s:22:\"featured_item_category\";s:22:\"featured_item_category\";s:17:\"featured_item_tag\";s:17:\"featured_item_tag\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:1;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1669845369;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"blocks\";i:3;s:7:\"product\";i:4;s:13:\"featured_item\";}s:28:\"last_known_public_taxonomies\";a:8:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:11:\"product_cat\";i:4;s:11:\"product_tag\";i:5;s:22:\"product_shipping_class\";i:6;s:22:\"featured_item_category\";i:7;s:17:\"featured_item_tag\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1699289438;s:35:\"wpseo_total_unindexed_general_items\";i:1699289438;s:31:\"wpseo_unindexed_post_link_count\";i:1699289438;s:31:\"wpseo_unindexed_term_link_count\";i:1699289438;s:27:\"wpseo_total_unindexed_posts\";i:1699289748;s:27:\"wpseo_total_unindexed_terms\";i:1699289748;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','no'),(2898,'wpseo_titles','a:211:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-pipe\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:50:\"%%name%%, auteur/autrice sur %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:65:\"Vous avez cherché %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:38:\"Page non trouvée %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:64:\"L’article %%POSTLINK%% est apparu en premier sur %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:29:\"Fel 404 : Sidan hittades inte\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:10:\"Arkiv för\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:3:\"Hem\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:18:\"Du har sökt efter\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:81:\"https://www.nl.ecom-expansion.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\";s:12:\"company_name\";s:9:\"Teng Shop\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:27:\"Archives des %%term_title%%\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:1;s:25:\"social-title-tax-post_tag\";s:27:\"Archives des %%term_title%%\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:27:\"Archives des %%term_title%%\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:12:\"title-blocks\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:15:\"metadesc-blocks\";s:0:\"\";s:14:\"noindex-blocks\";b:1;s:25:\"display-metabox-pt-blocks\";b:0;s:25:\"post_types-blocks-maintax\";i:0;s:23:\"schema-page-type-blocks\";s:7:\"WebPage\";s:26:\"schema-article-type-blocks\";s:4:\"None\";s:19:\"social-title-blocks\";s:9:\"%%title%%\";s:25:\"social-description-blocks\";s:0:\"\";s:23:\"social-image-url-blocks\";s:0:\"\";s:22:\"social-image-id-blocks\";i:0;s:13:\"title-product\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-product\";s:0:\"\";s:15:\"noindex-product\";b:0;s:26:\"display-metabox-pt-product\";b:1;s:26:\"post_types-product-maintax\";i:0;s:24:\"schema-page-type-product\";s:7:\"WebPage\";s:27:\"schema-article-type-product\";s:4:\"None\";s:20:\"social-title-product\";s:9:\"%%title%%\";s:26:\"social-description-product\";s:0:\"\";s:24:\"social-image-url-product\";s:0:\"\";s:23:\"social-image-id-product\";i:0;s:23:\"title-ptarchive-product\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;s:30:\"social-title-ptarchive-product\";s:21:\"%%pt_plural%% Archive\";s:36:\"social-description-ptarchive-product\";s:0:\"\";s:34:\"social-image-url-ptarchive-product\";s:0:\"\";s:33:\"social-image-id-ptarchive-product\";i:0;s:21:\"title-tax-product_cat\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_cat\";s:0:\"\";s:31:\"display-metabox-tax-product_cat\";b:1;s:23:\"noindex-tax-product_cat\";b:0;s:28:\"social-title-tax-product_cat\";s:27:\"Archives des %%term_title%%\";s:34:\"social-description-tax-product_cat\";s:0:\"\";s:32:\"social-image-url-tax-product_cat\";s:0:\"\";s:31:\"social-image-id-tax-product_cat\";i:0;s:29:\"taxonomy-product_cat-ptparent\";i:0;s:21:\"title-tax-product_tag\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_tag\";s:0:\"\";s:31:\"display-metabox-tax-product_tag\";b:1;s:23:\"noindex-tax-product_tag\";b:0;s:28:\"social-title-tax-product_tag\";s:27:\"Archives des %%term_title%%\";s:34:\"social-description-tax-product_tag\";s:0:\"\";s:32:\"social-image-url-tax-product_tag\";s:0:\"\";s:31:\"social-image-id-tax-product_tag\";i:0;s:29:\"taxonomy-product_tag-ptparent\";i:0;s:32:\"title-tax-product_shipping_class\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-product_shipping_class\";s:0:\"\";s:42:\"display-metabox-tax-product_shipping_class\";b:1;s:34:\"noindex-tax-product_shipping_class\";b:0;s:39:\"social-title-tax-product_shipping_class\";s:27:\"Archives des %%term_title%%\";s:45:\"social-description-tax-product_shipping_class\";s:0:\"\";s:43:\"social-image-url-tax-product_shipping_class\";s:0:\"\";s:42:\"social-image-id-tax-product_shipping_class\";i:0;s:40:\"taxonomy-product_shipping_class-ptparent\";i:0;s:19:\"title-featured_item\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-featured_item\";s:0:\"\";s:21:\"noindex-featured_item\";b:0;s:32:\"display-metabox-pt-featured_item\";b:1;s:32:\"post_types-featured_item-maintax\";i:0;s:30:\"schema-page-type-featured_item\";s:7:\"WebPage\";s:33:\"schema-article-type-featured_item\";s:4:\"None\";s:26:\"social-title-featured_item\";s:9:\"%%title%%\";s:32:\"social-description-featured_item\";s:0:\"\";s:30:\"social-image-url-featured_item\";s:0:\"\";s:29:\"social-image-id-featured_item\";i:0;s:29:\"title-ptarchive-featured_item\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:32:\"metadesc-ptarchive-featured_item\";s:0:\"\";s:31:\"bctitle-ptarchive-featured_item\";s:0:\"\";s:31:\"noindex-ptarchive-featured_item\";b:0;s:36:\"social-title-ptarchive-featured_item\";s:21:\"%%pt_plural%% Archive\";s:42:\"social-description-ptarchive-featured_item\";s:0:\"\";s:40:\"social-image-url-ptarchive-featured_item\";s:0:\"\";s:39:\"social-image-id-ptarchive-featured_item\";i:0;s:32:\"title-tax-featured_item_category\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-featured_item_category\";s:0:\"\";s:42:\"display-metabox-tax-featured_item_category\";b:1;s:34:\"noindex-tax-featured_item_category\";b:0;s:39:\"social-title-tax-featured_item_category\";s:27:\"Archives des %%term_title%%\";s:45:\"social-description-tax-featured_item_category\";s:0:\"\";s:43:\"social-image-url-tax-featured_item_category\";s:0:\"\";s:42:\"social-image-id-tax-featured_item_category\";i:0;s:40:\"taxonomy-featured_item_category-ptparent\";i:0;s:27:\"title-tax-featured_item_tag\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-tax-featured_item_tag\";s:0:\"\";s:37:\"display-metabox-tax-featured_item_tag\";b:1;s:29:\"noindex-tax-featured_item_tag\";b:0;s:34:\"social-title-tax-featured_item_tag\";s:27:\"Archives des %%term_title%%\";s:40:\"social-description-tax-featured_item_tag\";s:0:\"\";s:38:\"social-image-url-tax-featured_item_tag\";s:0:\"\";s:37:\"social-image-id-tax-featured_item_tag\";i:0;s:35:\"taxonomy-featured_item_tag-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:364;s:17:\"company_logo_meta\";a:10:{s:5:\"width\";i:833;s:6:\"height\";i:259;s:8:\"filesize\";i:18551;s:3:\"url\";s:81:\"https://www.nl.ecom-expansion.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\";s:4:\"path\";s:92:\"/home/customer/www/teng-shop.com/public_html/wp-content/uploads/2022/12/teng-shop-v2-min.png\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:364;s:3:\"alt\";s:14:\"Teng Shop Logo\";s:6:\"pixels\";i:215747;s:4:\"type\";s:9:\"image/png\";}s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(2899,'wpseo_social','a:19:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}}','yes'),(2920,'trackship_admin_notice_ignore','true','yes'),(2972,'litespeed.conf.__activation','-1','yes'),(2973,'litespeed.purge.queue','-1','yes'),(2974,'litespeed.purge.queue2','-1','yes'),(2975,'litespeed.cloud._summary','{\"curr_request.ver\":0,\"last_request.ver\":1703304416,\"news.utime\":1703266093,\"curr_request.news\":0,\"last_request.news\":1703266093}','yes'),(2977,'litespeed.conf.hash','BU7MLUMO4RL2P5dXcplvtgJiZDj2T0bQ','yes'),(2978,'litespeed.conf.auto_upgrade','','yes'),(2979,'litespeed.conf.api_key','','yes'),(2980,'litespeed.conf.server_ip','','yes'),(2981,'litespeed.conf.guest','','yes'),(2982,'litespeed.conf.guest_optm','','yes'),(2983,'litespeed.conf.news','1','yes'),(2984,'litespeed.conf.guest_uas','[\"Lighthouse\",\"GTmetrix\",\"Google\",\"Pingdom\",\"bot\",\"PTST\",\"HeadlessChrome\"]','yes'),(2985,'litespeed.conf.guest_ips','[\"208.70.247.157\",\"172.255.48.130\",\"172.255.48.131\",\"172.255.48.132\",\"172.255.48.133\",\"172.255.48.134\",\"172.255.48.135\",\"172.255.48.136\",\"172.255.48.137\",\"172.255.48.138\",\"172.255.48.139\",\"172.255.48.140\",\"172.255.48.141\",\"172.255.48.142\",\"172.255.48.143\",\"172.255.48.144\",\"172.255.48.145\",\"172.255.48.146\",\"172.255.48.147\",\"52.229.122.240\",\"104.214.72.101\",\"13.66.7.11\",\"13.85.24.83\",\"13.85.24.90\",\"13.85.82.26\",\"40.74.242.253\",\"40.74.243.13\",\"40.74.243.176\",\"104.214.48.247\",\"157.55.189.189\",\"104.214.110.135\",\"70.37.83.240\",\"65.52.36.250\",\"13.78.216.56\",\"52.162.212.163\",\"23.96.34.105\",\"65.52.113.236\",\"172.255.61.34\",\"172.255.61.35\",\"172.255.61.36\",\"172.255.61.37\",\"172.255.61.38\",\"172.255.61.39\",\"172.255.61.40\",\"104.41.2.19\",\"191.235.98.164\",\"191.235.99.221\",\"191.232.194.51\",\"52.237.235.185\",\"52.237.250.73\",\"52.237.236.145\",\"104.211.143.8\",\"104.211.165.53\",\"52.172.14.87\",\"40.83.89.214\",\"52.175.57.81\",\"20.188.63.151\",\"20.52.36.49\",\"52.246.165.153\",\"51.144.102.233\",\"13.76.97.224\",\"102.133.169.66\",\"52.231.199.170\",\"13.53.162.7\",\"40.123.218.94\"]','yes'),(2986,'litespeed.conf.cache','1','yes'),(2987,'litespeed.conf.cache-priv','1','yes'),(2988,'litespeed.conf.cache-commenter','1','yes'),(2989,'litespeed.conf.cache-rest','0','yes'),(2990,'litespeed.conf.cache-page_login','1','yes'),(2991,'litespeed.conf.cache-favicon','1','yes'),(2992,'litespeed.conf.cache-resources','1','yes'),(2993,'litespeed.conf.cache-mobile','','yes'),(2994,'litespeed.conf.cache-mobile_rules','[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]','yes'),(2995,'litespeed.conf.cache-browser','','yes'),(2996,'litespeed.conf.cache-exc_useragents','[]','yes'),(2997,'litespeed.conf.cache-exc_cookies','[]','yes'),(2998,'litespeed.conf.cache-exc_qs','[]','yes'),(2999,'litespeed.conf.cache-exc_cat','[]','yes'),(3000,'litespeed.conf.cache-exc_tag','[]','yes'),(3001,'litespeed.conf.cache-force_uri','[]','yes'),(3002,'litespeed.conf.cache-force_pub_uri','[]','yes'),(3003,'litespeed.conf.cache-priv_uri','[]','yes'),(3004,'litespeed.conf.cache-exc','[]','yes'),(3005,'litespeed.conf.cache-exc_roles','[]','yes'),(3006,'litespeed.conf.cache-drop_qs','[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]','yes'),(3007,'litespeed.conf.cache-ttl_pub','604800','yes'),(3008,'litespeed.conf.cache-ttl_priv','1800','yes'),(3009,'litespeed.conf.cache-ttl_frontpage','604800','yes'),(3010,'litespeed.conf.cache-ttl_feed','604800','yes'),(3011,'litespeed.conf.cache-ttl_rest','604800','yes'),(3012,'litespeed.conf.cache-ttl_browser','31557600','yes'),(3013,'litespeed.conf.cache-ttl_status','[\"403 3600\",\"404 3600\",\"500 3600\"]','yes'),(3014,'litespeed.conf.cache-login_cookie','','yes'),(3015,'litespeed.conf.cache-vary_group','[]','yes'),(3016,'litespeed.conf.purge-upgrade','1','yes'),(3017,'litespeed.conf.purge-stale','','yes'),(3018,'litespeed.conf.purge-post_all','','yes'),(3019,'litespeed.conf.purge-post_f','1','yes'),(3020,'litespeed.conf.purge-post_h','1','yes'),(3021,'litespeed.conf.purge-post_p','1','yes'),(3022,'litespeed.conf.purge-post_pwrp','1','yes'),(3023,'litespeed.conf.purge-post_a','1','yes'),(3024,'litespeed.conf.purge-post_y','','yes'),(3025,'litespeed.conf.purge-post_m','1','yes'),(3026,'litespeed.conf.purge-post_d','','yes'),(3027,'litespeed.conf.purge-post_t','1','yes'),(3028,'litespeed.conf.purge-post_pt','1','yes'),(3029,'litespeed.conf.purge-timed_urls','[]','yes'),(3030,'litespeed.conf.purge-timed_urls_time','','yes'),(3031,'litespeed.conf.purge-hook_all','[\"switch_theme\",\"wp_create_nav_menu\",\"wp_update_nav_menu\",\"wp_delete_nav_menu\",\"create_term\",\"edit_terms\",\"delete_term\",\"add_link\",\"edit_link\",\"delete_link\"]','yes'),(3032,'litespeed.conf.esi','','yes'),(3033,'litespeed.conf.esi-cache_admbar','1','yes'),(3034,'litespeed.conf.esi-cache_commform','1','yes'),(3035,'litespeed.conf.esi-nonce','[\"stats_nonce\",\"subscribe_nonce\"]','yes'),(3036,'litespeed.conf.util-instant_click','','yes'),(3037,'litespeed.conf.util-no_https_vary','','yes'),(3038,'litespeed.conf.debug-disable_all','','yes'),(3039,'litespeed.conf.debug','','yes'),(3040,'litespeed.conf.debug-ips','[\"127.0.0.1\"]','yes'),(3041,'litespeed.conf.debug-level','','yes'),(3042,'litespeed.conf.debug-filesize','3','yes'),(3043,'litespeed.conf.debug-cookie','','yes'),(3044,'litespeed.conf.debug-collaps_qs','','yes'),(3045,'litespeed.conf.debug-inc','[]','yes'),(3046,'litespeed.conf.debug-exc','[]','yes'),(3047,'litespeed.conf.debug-exc_strings','[]','yes'),(3048,'litespeed.conf.db_optm-revisions_max','0','yes'),(3049,'litespeed.conf.db_optm-revisions_age','0','yes'),(3050,'litespeed.conf.optm-css_min','','yes'),(3051,'litespeed.conf.optm-css_comb','','yes'),(3052,'litespeed.conf.optm-css_comb_ext_inl','1','yes'),(3053,'litespeed.conf.optm-ucss','','yes'),(3054,'litespeed.conf.optm-ucss_inline','','yes'),(3055,'litespeed.conf.optm-ucss_whitelist','[]','yes'),(3056,'litespeed.conf.optm-ucss_file_exc_inline','[]','yes'),(3057,'litespeed.conf.optm-ucss_exc','[]','yes'),(3058,'litespeed.conf.optm-css_exc','[]','yes'),(3059,'litespeed.conf.optm-js_min','','yes'),(3060,'litespeed.conf.optm-js_comb','','yes'),(3061,'litespeed.conf.optm-js_comb_ext_inl','1','yes'),(3062,'litespeed.conf.optm-js_exc','[\"jquery.js\",\"jquery.min.js\"]','yes'),(3063,'litespeed.conf.optm-html_min','','yes'),(3064,'litespeed.conf.optm-html_lazy','[]','yes'),(3065,'litespeed.conf.optm-qs_rm','','yes'),(3066,'litespeed.conf.optm-ggfonts_rm','','yes'),(3067,'litespeed.conf.optm-css_async','','yes'),(3068,'litespeed.conf.optm-ccss_per_url','','yes'),(3069,'litespeed.conf.optm-ccss_sep_posttype','[\"page\"]','yes'),(3070,'litespeed.conf.optm-ccss_sep_uri','[]','yes'),(3071,'litespeed.conf.optm-css_async_inline','1','yes'),(3072,'litespeed.conf.optm-css_font_display','','yes'),(3073,'litespeed.conf.optm-js_defer','','yes'),(3074,'litespeed.conf.optm-emoji_rm','','yes'),(3075,'litespeed.conf.optm-noscript_rm','','yes'),(3076,'litespeed.conf.optm-ggfonts_async','','yes'),(3077,'litespeed.conf.optm-exc_roles','[]','yes'),(3078,'litespeed.conf.optm-ccss_con','','yes'),(3079,'litespeed.conf.optm-js_defer_exc','[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]','yes'),(3080,'litespeed.conf.optm-gm_js_exc','[]','yes'),(3081,'litespeed.conf.optm-dns_prefetch','[]','yes'),(3082,'litespeed.conf.optm-dns_prefetch_ctrl','','yes'),(3083,'litespeed.conf.optm-exc','[]','yes'),(3084,'litespeed.conf.optm-guest_only','1','yes'),(3085,'litespeed.conf.object','','yes'),(3086,'litespeed.conf.object-kind','','yes'),(3087,'litespeed.conf.object-host','localhost','yes'),(3088,'litespeed.conf.object-port','11211','yes'),(3089,'litespeed.conf.object-life','360','yes'),(3090,'litespeed.conf.object-persistent','1','yes'),(3091,'litespeed.conf.object-admin','1','yes'),(3092,'litespeed.conf.object-transients','1','yes'),(3093,'litespeed.conf.object-db_id','0','yes'),(3094,'litespeed.conf.object-user','','yes'),(3095,'litespeed.conf.object-pswd','','yes'),(3096,'litespeed.conf.object-global_groups','[\"users\",\"userlogins\",\"useremail\",\"userslugs\",\"usermeta\",\"user_meta\",\"site-transient\",\"site-options\",\"site-lookup\",\"site-details\",\"blog-lookup\",\"blog-details\",\"blog-id-cache\",\"rss\",\"global-posts\",\"global-cache-test\"]','yes'),(3097,'litespeed.conf.object-non_persistent_groups','[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]','yes'),(3098,'litespeed.conf.discuss-avatar_cache','','yes'),(3099,'litespeed.conf.discuss-avatar_cron','','yes'),(3100,'litespeed.conf.discuss-avatar_cache_ttl','604800','yes'),(3101,'litespeed.conf.optm-localize','','yes'),(3102,'litespeed.conf.optm-localize_domains','[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]','yes'),(3103,'litespeed.conf.media-lazy','','yes'),(3104,'litespeed.conf.media-lazy_placeholder','','yes'),(3105,'litespeed.conf.media-placeholder_resp','','yes'),(3106,'litespeed.conf.media-placeholder_resp_color','#cfd4db','yes'),(3107,'litespeed.conf.media-placeholder_resp_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"{width}\" height=\"{height}\" viewBox=\"0 0 {width} {height}\"><rect width=\"100%\" height=\"100%\" style=\"fill:{color};fill-opacity: 0.1;\"/></svg>','yes'),(3108,'litespeed.conf.media-lqip','','yes'),(3109,'litespeed.conf.media-lqip_qual','4','yes'),(3110,'litespeed.conf.media-lqip_min_w','150','yes'),(3111,'litespeed.conf.media-lqip_min_h','150','yes'),(3112,'litespeed.conf.media-placeholder_resp_async','1','yes'),(3113,'litespeed.conf.media-iframe_lazy','','yes'),(3114,'litespeed.conf.media-add_missing_sizes','','yes'),(3115,'litespeed.conf.media-lazy_exc','[]','yes'),(3116,'litespeed.conf.media-lazy_cls_exc','[\"wmu-preview-img\"]','yes'),(3117,'litespeed.conf.media-lazy_parent_cls_exc','[]','yes'),(3118,'litespeed.conf.media-iframe_lazy_cls_exc','[]','yes'),(3119,'litespeed.conf.media-iframe_lazy_parent_cls_exc','[]','yes'),(3120,'litespeed.conf.media-lazy_uri_exc','[]','yes'),(3121,'litespeed.conf.media-lqip_exc','[]','yes'),(3122,'litespeed.conf.media-vpi','','yes'),(3123,'litespeed.conf.media-vpi_cron','','yes'),(3124,'litespeed.conf.img_optm-auto','','yes'),(3125,'litespeed.conf.img_optm-cron','1','yes'),(3126,'litespeed.conf.img_optm-ori','1','yes'),(3127,'litespeed.conf.img_optm-rm_bkup','','yes'),(3128,'litespeed.conf.img_optm-webp','','yes'),(3129,'litespeed.conf.img_optm-lossless','','yes'),(3130,'litespeed.conf.img_optm-exif','1','yes'),(3131,'litespeed.conf.img_optm-webp_attr','[\"img.src\",\"div.data-thumb\",\"img.data-src\",\"img.data-lazyload\",\"div.data-large_image\",\"img.retina_logo_url\",\"div.data-parallax-image\",\"div.data-vc-parallax-image\",\"video.poster\"]','yes'),(3132,'litespeed.conf.img_optm-webp_replace_srcset','','yes'),(3133,'litespeed.conf.img_optm-jpg_quality','82','yes'),(3134,'litespeed.conf.crawler','','yes'),(3135,'litespeed.conf.crawler-usleep','500','yes'),(3136,'litespeed.conf.crawler-run_duration','400','yes'),(3137,'litespeed.conf.crawler-run_interval','600','yes'),(3138,'litespeed.conf.crawler-crawl_interval','302400','yes'),(3139,'litespeed.conf.crawler-threads','3','yes'),(3140,'litespeed.conf.crawler-timeout','30','yes'),(3141,'litespeed.conf.crawler-load_limit','1','yes'),(3142,'litespeed.conf.crawler-sitemap','','yes'),(3143,'litespeed.conf.crawler-drop_domain','1','yes'),(3144,'litespeed.conf.crawler-map_timeout','120','yes'),(3145,'litespeed.conf.crawler-roles','[]','yes'),(3146,'litespeed.conf.crawler-cookies','[]','yes'),(3147,'litespeed.conf.misc-heartbeat_front','','yes'),(3148,'litespeed.conf.misc-heartbeat_front_ttl','60','yes'),(3149,'litespeed.conf.misc-heartbeat_back','','yes'),(3150,'litespeed.conf.misc-heartbeat_back_ttl','60','yes'),(3151,'litespeed.conf.misc-heartbeat_editor','','yes'),(3152,'litespeed.conf.misc-heartbeat_editor_ttl','15','yes'),(3153,'litespeed.conf.cdn','','yes'),(3154,'litespeed.conf.cdn-ori','[]','yes'),(3155,'litespeed.conf.cdn-ori_dir','[\"wp-content\",\"wp-includes\"]','yes'),(3156,'litespeed.conf.cdn-exc','[]','yes'),(3157,'litespeed.conf.cdn-quic','','yes'),(3158,'litespeed.conf.cdn-cloudflare','','yes'),(3159,'litespeed.conf.cdn-cloudflare_email','','yes'),(3160,'litespeed.conf.cdn-cloudflare_key','','yes'),(3161,'litespeed.conf.cdn-cloudflare_name','','yes'),(3162,'litespeed.conf.cdn-cloudflare_zone','','yes'),(3163,'litespeed.conf.cdn-mapping','[{\"url\":\"\",\"inc_img\":\"1\",\"inc_css\":\"1\",\"inc_js\":\"1\",\"filetype\":[\".aac\",\".css\",\".eot\",\".gif\",\".jpeg\",\".jpg\",\".js\",\".less\",\".mp3\",\".mp4\",\".ogg\",\".otf\",\".pdf\",\".png\",\".svg\",\".ttf\",\".webp\",\".woff\",\".woff2\"]}]','yes'),(3164,'litespeed.conf.cdn-attr','[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]','yes'),(3165,'litespeed.conf.qc-token','','yes'),(3166,'litespeed.conf.qc-nameservers','','yes'),(3168,'litespeed.gui.lscwp_whm_install','-1','yes'),(3169,'litespeed.gui.dismiss','-1','yes'),(3170,'litespeed.gui._summary','{\"new_version\":1670452424,\"score\":1671057224}','yes'),(3171,'litespeed.data.upgrading','-1','yes'),(3172,'litespeed.admin_display.messages','[\"<div class=\\\"litespeed_icon notice notice-success is-dismissible\\\"><p>Purged all caches successfully.<\\/p><\\/div>\"]','yes'),(3525,'code_snippets_version','3.6.2','yes'),(3526,'code_snippets_settings','a:3:{s:7:\"general\";a:6:{s:19:\"activate_by_default\";b:1;s:11:\"enable_tags\";b:1;s:18:\"enable_description\";b:1;s:10:\"list_order\";s:12:\"priority-asc\";s:13:\"disable_prism\";b:0;s:18:\"complete_uninstall\";b:0;}s:18:\"description_editor\";a:3:{s:4:\"rows\";i:5;s:12:\"use_full_mce\";b:0;s:13:\"media_buttons\";b:0;}s:6:\"editor\";a:11:{s:5:\"theme\";s:7:\"default\";s:16:\"indent_with_tabs\";b:1;s:8:\"tab_size\";i:4;s:11:\"indent_unit\";i:4;s:10:\"wrap_lines\";b:1;s:12:\"code_folding\";b:1;s:12:\"line_numbers\";b:1;s:19:\"auto_close_brackets\";b:1;s:27:\"highlight_selection_matches\";b:1;s:21:\"highlight_active_line\";b:1;s:6:\"keymap\";s:7:\"default\";}}','yes'),(3528,'recently_activated_snippets','a:0:{}','yes'),(3982,'wordfence_syncAttackDataAttempts','0','no'),(3983,'wordfence_syncingAttackData','0','no'),(3984,'wordfence_lastSyncAttackData','1700266610','no'),(4240,'wpseo_taxonomy_meta','a:2:{s:11:\"product_cat\";a:18:{i:39;a:5:{s:11:\"wpseo_title\";s:42:\"Kinesiska Solfjädrar %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:178:\"Upptäck vår fantastiska kollektion av traditionella Kinesiska Solfjädrar! Du hittar alla typer av solfjädrar (runda, med hylsa, nitade) för alla som älskar kinesisk kultur.\";s:13:\"wpseo_focuskw\";s:21:\"Kinesiska Solfjädrar\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:40;a:5:{s:11:\"wpseo_title\";s:40:\"Kinesiska Paraplyer %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:160:\"Upptäck våra vackra traditionella kinesiska paraplyer, som får dig att resa i ett kinesiskt landskap, under blommorna från körsbärsträd och plommonträd.\";s:13:\"wpseo_focuskw\";s:19:\"Kinesiska Paraplyer\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:38;a:5:{s:11:\"wpseo_title\";s:41:\"Kinesiska Tillbehör %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:165:\"Från kinesiska ätpinnar till solfjädrar och kinesiska tatueringar - upptäck vår samling av tillbehör från den kinesiska kulturen på vår webbplats Teng Shop.\";s:13:\"wpseo_focuskw\";s:20:\"Kinesiska Tillbehör\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:36;a:5:{s:11:\"wpseo_title\";s:40:\"Kinesiska Ätpinnar %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:166:\"Vårt breda sortiment av Kinesiska Ätpinnar (Trä, rostfritt stål, långa...) kommer att få dig att uppskatta de överdådiga måltiderna i den kinesiska kulturen.\";s:13:\"wpseo_focuskw\";s:19:\"Kinesiska Ätpinnar\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:44;a:5:{s:11:\"wpseo_title\";s:39:\"Kinesiska Gardiner %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:152:\"Dekorera ditt hem med dessa vackra och autentiska kinesiska gardiner. Upptäck alla dessa gardiner som för in den kinesiska kulturen i ditt vardagsrum.\";s:13:\"wpseo_focuskw\";s:18:\"Kinesiska Gardiner\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:41;a:5:{s:11:\"wpseo_title\";s:40:\"Kinesisk Dekoration %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:166:\"Förflytta din värld till Kina med vår samling av Kinesiska Dekorationer. Mer än hundra kinesiska föremål väntar på att du ska inreda ditt hem i asiatisk stil.\";s:13:\"wpseo_focuskw\";s:19:\"Kinesisk Dekoration\";s:13:\"wpseo_linkdex\";s:2:\"42\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:47;a:5:{s:11:\"wpseo_title\";s:50:\"Kinesiska Klänningar / Qipao %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:147:\"I vår butik som är tillägnad kulturen i Mittens rike finns en rad kinesiska klänningar / Qipao som kommer att glädja dig med sin typiska look.\";s:13:\"wpseo_focuskw\";s:21:\"Kinesiska Klänningar\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:42;a:5:{s:11:\"wpseo_title\";s:37:\"Kinesiska Lyktor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:155:\"Dekorera ditt hus, din lägenhet eller din trädgård med våra kinesiska lyktor! Res genom Kina med dessa typiska kinesiska lyktor i vår Store Teng Shop.\";s:13:\"wpseo_focuskw\";s:16:\"Kinesiska Lyktor\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:43;a:5:{s:11:\"wpseo_title\";s:37:\"Kinesiska Tavlor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:136:\"Kom och upptäck våra vackraste Kinesiska Tavla på vår webbplats Teng Shop. Ge ditt hem en asiatisk look med dessa vackra målningar.\";s:13:\"wpseo_focuskw\";s:16:\"Kinesiska Tavlor\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:51;a:5:{s:11:\"wpseo_title\";s:36:\"Kinesiska Byxor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:169:\"Denna samling av Kinesiska Byxor är resultatet av know-how och den kinesiska estetiken och kommer att glädja dig med sina traditionella skäl och trendiga skärningar.\";s:13:\"wpseo_focuskw\";s:15:\"Kinesiska Byxor\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:45;a:5:{s:11:\"wpseo_title\";s:38:\"Kinesiska Statyer %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:144:\"Ge din omgivning en touch av Feng Shui med den kinesiska statykollektionen från Teng Shop! Upptäck de bästa Kinesiska Statyerna i Amerika nu!\";s:13:\"wpseo_focuskw\";s:17:\"Kinesiska Statyer\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:53;a:5:{s:11:\"wpseo_title\";s:39:\"Kinesiska T-shirts %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:155:\"Upptäck våra vackra kinesiska T-shirts och unika design Teng Shop. Adoptera en asiatisk look och visa din kärlek till den kinesiska kulturen och stilen.\";s:13:\"wpseo_focuskw\";s:18:\"Kinesiska T-shirts\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:48;a:5:{s:11:\"wpseo_title\";s:26:\"Hanfu %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:176:\"Dyk ner i hjärtat av det traditionella Kina med våra Hanfu-klänningar. Dessa magnifika dräkter, tillverkade med kinesiskt hantverk, kommer att förflytta dig till Hans tid.\";s:13:\"wpseo_focuskw\";s:5:\"Hanfu\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:52;a:5:{s:11:\"wpseo_title\";s:48:\"Kinesiska kläder för män %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:157:\"Kan du inte hitta Kinesiska Kulturkläder för Män? Teng Shop är butiken du behöver komma till och upptäcka ett brett utbud av kläder! Att upptäcka nu!\";s:13:\"wpseo_focuskw\";s:27:\"Kinesiska kläder för män\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:50;a:5:{s:11:\"wpseo_title\";s:58:\"Kinesisk Jacka för Män / Tangzhuang %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:165:\"Du kan inte hitta kinesiska kulturkläder för män? Teng Shop är butiken du behöver kom och upptäck ett brett utbud av kinesiska jackor för män och Tangzhuang!\";s:13:\"wpseo_focuskw\";s:37:\"Kinesisk jacka för män / Tangzhuang\";s:13:\"wpseo_linkdex\";s:2:\"38\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:46;a:5:{s:11:\"wpseo_title\";s:51:\"Kinesiska Kläder för Kvinnor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:166:\"Alla kläder i kinesisk stil finns på Teng Shop. Kom och upptäck vår kollektion av damkläder för alla som älskar kinesisk kultur. Ett brett utbud att upptäcka!\";s:13:\"wpseo_focuskw\";s:30:\"Kinesiska Kläder för Kvinnor\";s:13:\"wpseo_linkdex\";s:2:\"42\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:49;a:5:{s:11:\"wpseo_title\";s:48:\"Kinesisk Jacka för kvinnor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:139:\"Upptäck vår kollektion av kinesisk damjacka för att klä dig i elegans med allt det vackra i orientaliskt mode. Vackra modeller i lager!\";s:13:\"wpseo_focuskw\";s:27:\"Kinesisk Jacka för kvinnor\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:15;a:4:{s:11:\"wpseo_title\";s:44:\"%%term_title%% %%page%% %%sep%% %%sitename%%\";s:13:\"wpseo_focuskw\";s:13:\"Uncategorized\";s:13:\"wpseo_linkdex\";s:2:\"36\";s:19:\"wpseo_content_score\";s:1:\"0\";}}s:8:\"category\";a:7:{i:55;a:5:{s:11:\"wpseo_title\";s:44:\"Kinesisk Kultur - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:163:\"Här hittar du alla våra artiklar om kinesisk kultur. Oavsett om det är de olika berättelserna, betydelserna och andra små anekdoter som gör detta land unikt.\";s:13:\"wpseo_focuskw\";s:15:\"Kinesisk Kultur\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:56;a:5:{s:11:\"wpseo_title\";s:43:\"Kinesisk Konst - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:164:\"I det här avsnittet hittar du våra olika blogginlägg relaterade till de olika kinesiska konstarterna. Från att skriva till att måla eller skriva bland annat...\";s:13:\"wpseo_focuskw\";s:14:\"Kinesisk Konst\";s:13:\"wpseo_linkdex\";s:2:\"42\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:57;a:5:{s:11:\"wpseo_title\";s:48:\"Kinesisk Gastronomi - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:145:\"I det här avsnittet hittar du alla våra artiklar om kinesisk gastronomi. Recept, anekdoter och andra typer av blogginlägg relaterade till mat.\";s:13:\"wpseo_focuskw\";s:19:\"Kinesisk Gastronomi\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:58;a:5:{s:11:\"wpseo_title\";s:42:\"Forntida Kina - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:129:\"Här hittar du alla våra bloggartiklar om det gamla Kina. Du hittar ämnen som den kinesiska muren, de kinesiska kejsarna etc...\";s:13:\"wpseo_focuskw\";s:13:\"Forntida Kina\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:59;a:5:{s:11:\"wpseo_title\";s:60:\"Traditionella Kinesiska Kläder - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:150:\"Vill du upptäcka allt om kinesiskt mode? Besök då gärna vår blogg i den här kategorin för att lära dig mer om traditionella kinesiska kläder!\";s:13:\"wpseo_focuskw\";s:31:\"Traditionella Kinesiska Kläder\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:60;a:5:{s:11:\"wpseo_title\";s:38:\"Feng Shui - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:203:\"Feng shui är en tusenårig konst av kinesiskt ursprung som syftar till att harmonisera den miljömässiga energin på en plats för att främja välbefinnande, hälsa och välstånd för dess invånare.\";s:13:\"wpseo_focuskw\";s:9:\"Feng Shui\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:61;a:5:{s:11:\"wpseo_title\";s:46:\"Kinesisk Mytologi - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:164:\"Kinesisk mytologi är lika rik som andra mytologier (t.ex. grekisk, egyptisk) och har ett stort antal karaktärer och frågeställningar. Hitta alla våra artiklar!\";s:13:\"wpseo_focuskw\";s:17:\"Kinesisk Mytologi\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}}}','yes'),(4377,'members_activated','1670259272','yes'),(4378,'members_addons_migrated','1','yes'),(4379,'widget_members-widget-login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4380,'widget_members-widget-users','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4714,'rank_math_known_post_types','a:6:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:10:\"attachment\";s:10:\"attachment\";s:6:\"blocks\";s:6:\"blocks\";s:7:\"product\";s:7:\"product\";s:13:\"featured_item\";s:13:\"featured_item\";}','yes'),(4715,'rank_math_modules','a:12:{i:0;s:12:\"link-counter\";i:1;s:9:\"analytics\";i:2;s:12:\"seo-analysis\";i:3;s:7:\"sitemap\";i:4;s:12:\"rich-snippet\";i:5;s:11:\"woocommerce\";i:6;s:10:\"buddypress\";i:7;s:7:\"bbpress\";i:8;s:3:\"acf\";i:9;s:11:\"web-stories\";i:10;s:10:\"content-ai\";i:11;s:16:\"instant-indexing\";}','yes'),(4716,'rank-math-options-general','a:54:{s:19:\"strip_category_base\";s:3:\"off\";s:24:\"attachment_redirect_urls\";s:2:\"on\";s:27:\"attachment_redirect_default\";s:33:\"https://www.nl.ecom-expansion.com\";s:23:\"nofollow_external_links\";s:3:\"off\";s:20:\"nofollow_image_links\";s:3:\"off\";s:25:\"new_window_external_links\";s:2:\"on\";s:11:\"add_img_alt\";s:3:\"off\";s:14:\"img_alt_format\";s:11:\" %filename%\";s:13:\"add_img_title\";s:3:\"off\";s:16:\"img_title_format\";s:22:\"%title% %count(title)%\";s:11:\"breadcrumbs\";s:2:\"on\";s:21:\"breadcrumbs_separator\";s:1:\"/\";s:16:\"breadcrumbs_home\";s:2:\"on\";s:22:\"breadcrumbs_home_label\";s:9:\"Startsida\";s:26:\"breadcrumbs_archive_format\";s:15:\"Archives for %s\";s:25:\"breadcrumbs_search_format\";s:14:\"Results for %s\";s:21:\"breadcrumbs_404_label\";s:25:\"404 Error: page not found\";s:31:\"breadcrumbs_ancestor_categories\";s:3:\"off\";s:21:\"breadcrumbs_blog_page\";s:3:\"off\";s:16:\"404_monitor_mode\";s:6:\"simple\";s:17:\"404_monitor_limit\";i:100;s:35:\"404_monitor_ignore_query_parameters\";s:2:\"on\";s:24:\"redirections_header_code\";s:3:\"301\";s:18:\"redirections_debug\";s:3:\"off\";s:23:\"console_caching_control\";s:2:\"90\";s:21:\"console_email_reports\";s:2:\"on\";s:23:\"console_email_frequency\";s:7:\"monthly\";s:27:\"link_builder_links_per_page\";s:1:\"7\";s:29:\"link_builder_links_per_target\";s:1:\"1\";s:22:\"wc_remove_product_base\";s:3:\"off\";s:23:\"wc_remove_category_base\";s:3:\"off\";s:31:\"wc_remove_category_parent_slugs\";s:3:\"off\";s:19:\"wc_remove_generator\";s:2:\"on\";s:24:\"remove_shop_snippet_data\";s:2:\"on\";s:18:\"frontend_seo_score\";s:3:\"off\";s:29:\"frontend_seo_score_post_types\";a:1:{i:0;s:4:\"post\";}s:27:\"frontend_seo_score_position\";s:3:\"top\";s:10:\"setup_mode\";s:8:\"advanced\";s:21:\"content_ai_post_types\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"blocks\";i:3;s:7:\"product\";i:4;s:13:\"featured_item\";}s:15:\"analytics_stats\";s:2:\"on\";s:21:\"breadcrumbs_home_link\";s:33:\"https://www.nl.ecom-expansion.com\";s:29:\"breadcrumbs_remove_post_title\";s:3:\"off\";s:30:\"breadcrumbs_hide_taxonomy_name\";s:3:\"off\";s:16:\"headless_support\";s:3:\"off\";s:27:\"frontend_seo_score_template\";s:6:\"circle\";s:17:\"support_rank_math\";s:2:\"on\";s:15:\"toc_block_title\";s:19:\"Table des matières\";s:20:\"toc_block_list_style\";s:3:\"div\";s:13:\"product_brand\";s:3:\"off\";s:18:\"content_ai_country\";s:3:\"all\";s:15:\"content_ai_tone\";s:6:\"Formal\";s:19:\"content_ai_audience\";s:16:\"General Audience\";s:19:\"content_ai_language\";s:7:\"Swedish\";s:27:\"cotnent_ai_enable_grammarly\";s:2:\"on\";}','yes'),(4717,'rank-math-options-titles','a:186:{s:24:\"noindex_empty_taxonomies\";s:2:\"on\";s:15:\"title_separator\";s:1:\"|\";s:17:\"capitalize_titles\";s:3:\"off\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:19:\"knowledgegraph_type\";s:7:\"company\";s:19:\"knowledgegraph_name\";s:9:\"Teng Shop\";s:12:\"website_name\";s:9:\"Teng Shop\";s:19:\"local_business_type\";s:12:\"Organization\";s:20:\"local_address_format\";s:43:\"{address} {locality}, {region} {postalcode}\";s:13:\"opening_hours\";a:7:{i:0;a:2:{s:3:\"day\";s:6:\"Monday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:1;a:2:{s:3:\"day\";s:7:\"Tuesday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:2;a:2:{s:3:\"day\";s:9:\"Wednesday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:3;a:2:{s:3:\"day\";s:8:\"Thursday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:4;a:2:{s:3:\"day\";s:6:\"Friday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:5;a:2:{s:3:\"day\";s:8:\"Saturday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:6;a:2:{s:3:\"day\";s:6:\"Sunday\";s:4:\"time\";s:11:\"09:00-17:00\";}}s:20:\"opening_hours_format\";s:3:\"off\";s:14:\"homepage_title\";s:34:\"%sitename% %page% %sep% %sitedesc%\";s:20:\"homepage_description\";s:0:\"\";s:22:\"homepage_custom_robots\";s:3:\"off\";s:23:\"disable_author_archives\";s:2:\"on\";s:15:\"url_author_base\";s:6:\"author\";s:20:\"author_custom_robots\";s:2:\"on\";s:13:\"author_robots\";a:1:{i:0;s:7:\"noindex\";}s:20:\"author_archive_title\";s:30:\"%name% %sep% %sitename% %page%\";s:19:\"author_add_meta_box\";s:2:\"on\";s:21:\"disable_date_archives\";s:2:\"on\";s:18:\"date_archive_title\";s:30:\"%date% %page% %sep% %sitename%\";s:12:\"search_title\";s:38:\"%search_query% %page% %sep% %sitename%\";s:9:\"404_title\";s:31:\"Page Not Found %sep% %sitename%\";s:19:\"date_archive_robots\";a:1:{i:0;s:7:\"noindex\";}s:14:\"noindex_search\";s:2:\"on\";s:24:\"noindex_archive_subpages\";s:3:\"off\";s:26:\"noindex_password_protected\";s:3:\"off\";s:32:\"pt_download_default_rich_snippet\";s:7:\"product\";s:29:\"author_slack_enhanced_sharing\";s:2:\"on\";s:13:\"pt_post_title\";s:24:\"%title% %sep% %sitename%\";s:19:\"pt_post_description\";s:9:\"%excerpt%\";s:14:\"pt_post_robots\";a:1:{i:0;s:5:\"index\";}s:21:\"pt_post_custom_robots\";s:3:\"off\";s:28:\"pt_post_default_rich_snippet\";s:7:\"article\";s:28:\"pt_post_default_article_type\";s:11:\"BlogPosting\";s:28:\"pt_post_default_snippet_name\";s:11:\"%seo_title%\";s:28:\"pt_post_default_snippet_desc\";s:17:\"%seo_description%\";s:30:\"pt_post_slack_enhanced_sharing\";s:2:\"on\";s:17:\"pt_post_ls_use_fk\";s:6:\"titles\";s:20:\"pt_post_add_meta_box\";s:2:\"on\";s:20:\"pt_post_bulk_editing\";s:7:\"editing\";s:24:\"pt_post_link_suggestions\";s:2:\"on\";s:24:\"pt_post_primary_taxonomy\";s:8:\"category\";s:13:\"pt_page_title\";s:24:\"%title% %sep% %sitename%\";s:19:\"pt_page_description\";s:9:\"%excerpt%\";s:14:\"pt_page_robots\";a:1:{i:0;s:5:\"index\";}s:21:\"pt_page_custom_robots\";s:3:\"off\";s:28:\"pt_page_default_rich_snippet\";s:7:\"article\";s:28:\"pt_page_default_article_type\";s:7:\"Article\";s:28:\"pt_page_default_snippet_name\";s:11:\"%seo_title%\";s:28:\"pt_page_default_snippet_desc\";s:17:\"%seo_description%\";s:30:\"pt_page_slack_enhanced_sharing\";s:2:\"on\";s:17:\"pt_page_ls_use_fk\";s:6:\"titles\";s:20:\"pt_page_add_meta_box\";s:2:\"on\";s:20:\"pt_page_bulk_editing\";s:7:\"editing\";s:24:\"pt_page_link_suggestions\";s:2:\"on\";s:19:\"pt_attachment_title\";s:24:\"%title% %sep% %sitename%\";s:25:\"pt_attachment_description\";s:9:\"%excerpt%\";s:20:\"pt_attachment_robots\";a:1:{i:0;s:7:\"noindex\";}s:27:\"pt_attachment_custom_robots\";s:2:\"on\";s:34:\"pt_attachment_default_rich_snippet\";s:3:\"off\";s:34:\"pt_attachment_default_article_type\";s:7:\"Article\";s:34:\"pt_attachment_default_snippet_name\";s:11:\"%seo_title%\";s:34:\"pt_attachment_default_snippet_desc\";s:17:\"%seo_description%\";s:36:\"pt_attachment_slack_enhanced_sharing\";s:3:\"off\";s:26:\"pt_attachment_add_meta_box\";s:3:\"off\";s:15:\"pt_blocks_title\";s:24:\"%title% %sep% %sitename%\";s:21:\"pt_blocks_description\";s:9:\"%excerpt%\";s:16:\"pt_blocks_robots\";a:1:{i:0;s:5:\"index\";}s:23:\"pt_blocks_custom_robots\";s:3:\"off\";s:30:\"pt_blocks_default_rich_snippet\";s:3:\"off\";s:30:\"pt_blocks_default_article_type\";s:7:\"Article\";s:30:\"pt_blocks_default_snippet_name\";s:11:\"%seo_title%\";s:30:\"pt_blocks_default_snippet_desc\";s:17:\"%seo_description%\";s:32:\"pt_blocks_slack_enhanced_sharing\";s:3:\"off\";s:19:\"pt_blocks_ls_use_fk\";s:6:\"titles\";s:22:\"pt_blocks_add_meta_box\";s:2:\"on\";s:22:\"pt_blocks_bulk_editing\";s:7:\"editing\";s:26:\"pt_blocks_link_suggestions\";s:2:\"on\";s:16:\"pt_product_title\";s:24:\"%title% %sep% %sitename%\";s:22:\"pt_product_description\";s:128:\"Ontdek onze %title% uitverkoop in onze shop! De perfecte combinatie van stijl en functionaliteit om aan je behoeften te voldoen!\";s:17:\"pt_product_robots\";a:1:{i:0;s:5:\"index\";}s:24:\"pt_product_custom_robots\";s:3:\"off\";s:31:\"pt_product_default_rich_snippet\";s:7:\"product\";s:31:\"pt_product_default_article_type\";s:7:\"Article\";s:31:\"pt_product_default_snippet_name\";s:11:\"%seo_title%\";s:31:\"pt_product_default_snippet_desc\";s:17:\"%seo_description%\";s:24:\"pt_product_archive_title\";s:31:\"%title% %page% %sep% %sitename%\";s:33:\"pt_product_slack_enhanced_sharing\";s:2:\"on\";s:20:\"pt_product_ls_use_fk\";s:6:\"titles\";s:23:\"pt_product_add_meta_box\";s:2:\"on\";s:23:\"pt_product_bulk_editing\";s:7:\"editing\";s:27:\"pt_product_link_suggestions\";s:2:\"on\";s:27:\"pt_product_primary_taxonomy\";s:11:\"product_cat\";s:22:\"pt_featured_item_title\";s:24:\"%title% %sep% %sitename%\";s:28:\"pt_featured_item_description\";s:9:\"%excerpt%\";s:23:\"pt_featured_item_robots\";a:1:{i:0;s:5:\"index\";}s:30:\"pt_featured_item_custom_robots\";s:3:\"off\";s:37:\"pt_featured_item_default_rich_snippet\";s:3:\"off\";s:37:\"pt_featured_item_default_article_type\";s:7:\"Article\";s:37:\"pt_featured_item_default_snippet_name\";s:11:\"%seo_title%\";s:37:\"pt_featured_item_default_snippet_desc\";s:17:\"%seo_description%\";s:30:\"pt_featured_item_archive_title\";s:31:\"%title% %page% %sep% %sitename%\";s:39:\"pt_featured_item_slack_enhanced_sharing\";s:3:\"off\";s:26:\"pt_featured_item_ls_use_fk\";s:6:\"titles\";s:29:\"pt_featured_item_add_meta_box\";s:2:\"on\";s:29:\"pt_featured_item_bulk_editing\";s:7:\"editing\";s:33:\"pt_featured_item_link_suggestions\";s:2:\"on\";s:18:\"pt_web-story_title\";s:24:\"%title% %sep% %sitename%\";s:24:\"pt_web-story_description\";s:9:\"%excerpt%\";s:19:\"pt_web-story_robots\";a:0:{}s:26:\"pt_web-story_custom_robots\";s:3:\"off\";s:33:\"pt_web-story_default_rich_snippet\";s:7:\"article\";s:33:\"pt_web-story_default_article_type\";s:7:\"Article\";s:33:\"pt_web-story_default_snippet_name\";s:11:\"%seo_title%\";s:33:\"pt_web-story_default_snippet_desc\";s:17:\"%seo_description%\";s:35:\"pt_web-story_slack_enhanced_sharing\";s:3:\"off\";s:25:\"pt_web-story_add_meta_box\";s:3:\"off\";s:18:\"tax_category_title\";s:23:\"%term% %sep% %sitename%\";s:19:\"tax_category_robots\";a:1:{i:0;s:5:\"index\";}s:25:\"tax_category_add_meta_box\";s:2:\"on\";s:26:\"tax_category_custom_robots\";s:3:\"off\";s:24:\"tax_category_description\";s:18:\"%term_description%\";s:35:\"tax_category_slack_enhanced_sharing\";s:2:\"on\";s:18:\"tax_post_tag_title\";s:23:\"%term% %sep% %sitename%\";s:19:\"tax_post_tag_robots\";a:1:{i:0;s:7:\"noindex\";}s:25:\"tax_post_tag_add_meta_box\";s:3:\"off\";s:26:\"tax_post_tag_custom_robots\";s:2:\"on\";s:24:\"tax_post_tag_description\";s:18:\"%term_description%\";s:35:\"tax_post_tag_slack_enhanced_sharing\";s:2:\"on\";s:21:\"tax_post_format_title\";s:23:\"%term% %sep% %sitename%\";s:22:\"tax_post_format_robots\";a:1:{i:0;s:7:\"noindex\";}s:28:\"tax_post_format_add_meta_box\";s:3:\"off\";s:29:\"tax_post_format_custom_robots\";s:2:\"on\";s:27:\"tax_post_format_description\";s:18:\"%term_description%\";s:38:\"tax_post_format_slack_enhanced_sharing\";s:2:\"on\";s:21:\"tax_product_cat_title\";s:23:\"%term% %sep% %sitename%\";s:22:\"tax_product_cat_robots\";a:1:{i:0;s:5:\"index\";}s:28:\"tax_product_cat_add_meta_box\";s:2:\"on\";s:29:\"tax_product_cat_custom_robots\";s:3:\"off\";s:27:\"tax_product_cat_description\";s:128:\"Geïnteresseerd in onze %title%? Bekijk al onze modellen in onze uitgebreide catalogus! Dompel jezelf onder in onze ruime keuze!\";s:38:\"tax_product_cat_slack_enhanced_sharing\";s:2:\"on\";s:21:\"tax_product_tag_title\";s:23:\"%term% %sep% %sitename%\";s:22:\"tax_product_tag_robots\";a:1:{i:0;s:7:\"noindex\";}s:28:\"tax_product_tag_add_meta_box\";s:3:\"off\";s:29:\"tax_product_tag_custom_robots\";s:2:\"on\";s:27:\"tax_product_tag_description\";s:18:\"%term_description%\";s:38:\"tax_product_tag_slack_enhanced_sharing\";s:2:\"on\";s:32:\"tax_featured_item_category_title\";s:23:\"%term% %sep% %sitename%\";s:33:\"tax_featured_item_category_robots\";a:1:{i:0;s:5:\"index\";}s:39:\"tax_featured_item_category_add_meta_box\";s:3:\"off\";s:40:\"tax_featured_item_category_custom_robots\";s:3:\"off\";s:38:\"tax_featured_item_category_description\";s:18:\"%term_description%\";s:49:\"tax_featured_item_category_slack_enhanced_sharing\";s:2:\"on\";s:27:\"tax_featured_item_tag_title\";s:23:\"%term% %sep% %sitename%\";s:28:\"tax_featured_item_tag_robots\";a:1:{i:0;s:5:\"index\";}s:34:\"tax_featured_item_tag_add_meta_box\";s:3:\"off\";s:35:\"tax_featured_item_tag_custom_robots\";s:3:\"off\";s:33:\"tax_featured_item_tag_description\";s:18:\"%term_description%\";s:44:\"tax_featured_item_tag_slack_enhanced_sharing\";s:2:\"on\";s:31:\"remove_product_cat_snippet_data\";s:2:\"on\";s:31:\"remove_product_tag_snippet_data\";s:2:\"on\";s:13:\"robots_global\";a:1:{i:0;s:5:\"index\";}s:22:\"advanced_robots_global\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:3:\"url\";s:33:\"https://www.nl.ecom-expansion.com\";s:31:\"tax_post_format_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:22:\"author_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:20:\"date_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:23:\"noindex_paginated_pages\";s:3:\"off\";s:23:\"pt_post_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:23:\"pt_page_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:25:\"pt_blocks_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:26:\"pt_product_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:32:\"pt_featured_item_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:33:\"pt_featured_item_primary_taxonomy\";s:3:\"off\";s:28:\"tax_category_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:28:\"remove_category_snippet_data\";s:3:\"off\";s:28:\"tax_post_tag_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:28:\"remove_post_tag_snippet_data\";s:3:\"off\";s:31:\"tax_product_cat_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:31:\"tax_product_tag_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:42:\"tax_featured_item_category_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:42:\"remove_featured_item_category_snippet_data\";s:3:\"off\";s:37:\"tax_featured_item_tag_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:37:\"remove_featured_item_tag_snippet_data\";s:3:\"off\";}','yes'),(4718,'rank-math-options-sitemap','a:43:{s:14:\"items_per_page\";s:3:\"200\";s:14:\"include_images\";s:2:\"on\";s:22:\"include_featured_image\";s:3:\"off\";s:19:\"ping_search_engines\";s:2:\"on\";s:13:\"exclude_roles\";a:6:{s:11:\"contributor\";s:11:\"Contributor\";s:10:\"subscriber\";s:10:\"Subscriber\";s:8:\"customer\";s:8:\"Customer\";s:12:\"shop_manager\";s:12:\"Shop manager\";s:13:\"wpseo_manager\";s:11:\"SEO Manager\";s:12:\"wpseo_editor\";s:10:\"SEO Editor\";}s:12:\"html_sitemap\";s:2:\"on\";s:20:\"html_sitemap_display\";s:9:\"shortcode\";s:17:\"html_sitemap_sort\";s:9:\"published\";s:23:\"html_sitemap_seo_titles\";s:6:\"titles\";s:15:\"authors_sitemap\";s:2:\"on\";s:15:\"pt_post_sitemap\";s:2:\"on\";s:15:\"pt_page_sitemap\";s:2:\"on\";s:21:\"pt_attachment_sitemap\";s:3:\"off\";s:17:\"pt_blocks_sitemap\";s:2:\"on\";s:18:\"pt_product_sitemap\";s:2:\"on\";s:24:\"pt_featured_item_sitemap\";s:2:\"on\";s:20:\"pt_web-story_sitemap\";s:3:\"off\";s:20:\"tax_category_sitemap\";s:2:\"on\";s:20:\"tax_post_tag_sitemap\";s:3:\"off\";s:23:\"tax_post_format_sitemap\";s:3:\"off\";s:23:\"tax_product_cat_sitemap\";s:2:\"on\";s:23:\"tax_product_tag_sitemap\";s:3:\"off\";s:34:\"tax_featured_item_category_sitemap\";s:3:\"off\";s:29:\"tax_featured_item_tag_sitemap\";s:3:\"off\";s:23:\"html_sitemap_show_dates\";s:2:\"on\";s:20:\"pt_post_html_sitemap\";s:2:\"on\";s:20:\"pt_page_html_sitemap\";s:2:\"on\";s:26:\"pt_attachment_html_sitemap\";s:3:\"off\";s:22:\"pt_blocks_html_sitemap\";s:2:\"on\";s:23:\"pt_product_html_sitemap\";s:2:\"on\";s:29:\"pt_featured_item_html_sitemap\";s:2:\"on\";s:25:\"tax_category_html_sitemap\";s:2:\"on\";s:26:\"tax_category_include_empty\";s:3:\"off\";s:25:\"tax_post_tag_html_sitemap\";s:3:\"off\";s:26:\"tax_post_tag_include_empty\";s:3:\"off\";s:28:\"tax_product_cat_html_sitemap\";s:2:\"on\";s:29:\"tax_product_cat_include_empty\";s:3:\"off\";s:28:\"tax_product_tag_html_sitemap\";s:3:\"off\";s:29:\"tax_product_tag_include_empty\";s:3:\"off\";s:39:\"tax_featured_item_category_html_sitemap\";s:3:\"off\";s:40:\"tax_featured_item_category_include_empty\";s:3:\"off\";s:34:\"tax_featured_item_tag_html_sitemap\";s:3:\"off\";s:35:\"tax_featured_item_tag_include_empty\";s:3:\"off\";}','yes'),(4719,'rank-math-options-instant-indexing','a:2:{s:15:\"bing_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:16:\"indexnow_api_key\";s:32:\"92ca1e823f824ebd912f3fc568769d8f\";}','yes'),(4722,'rank_math_version','1.0.210','yes'),(4723,'rank_math_db_version','1','yes'),(4724,'rank_math_install_date','1670248705','yes'),(4729,'rank_math_registration_skip','1','yes'),(4731,'rank_math_pro_notice_date','1671112724','no'),(4732,'rank_math_review_posts_converted','1','yes'),(4733,'_transient_rank_math_first_submenu_id','rank-math','yes'),(4734,'rank_math_content_ai_viewed','1','yes'),(4735,'rank_math_wizard_completed','1','yes'),(4736,'_transient__rank_math_conflicting_plugins','a:1:{i:0;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(4747,'rank_math_is_configured','1','yes'),(4763,'rank_math_indexnow_log','a:100:{i:0;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699456132;}i:1;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699456284;}i:2;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699456402;}i:3;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699456618;}i:4;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699457027;}i:5;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699457189;}i:6;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699457280;}i:7;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699458322;}i:8;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699459031;}i:9;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699460224;}i:10;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699460333;}i:11;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699460623;}i:12;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699535464;}i:13;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699535524;}i:14;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699535862;}i:15;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699536015;}i:16;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699536077;}i:17;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537252;}i:18;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537438;}i:19;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537477;}i:20;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537536;}i:21;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537555;}i:22;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537655;}i:23;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537844;}i:24;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537932;}i:25;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699538262;}i:26;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699538291;}i:27;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699540268;}i:28;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699540316;}i:29;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699540344;}i:30;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699540354;}i:31;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545470;}i:32;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545532;}i:33;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545563;}i:34;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545709;}i:35;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545776;}i:36;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545797;}i:37;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545860;}i:38;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545925;}i:39;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545955;}i:40;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545979;}i:41;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546005;}i:42;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546026;}i:43;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546061;}i:44;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546077;}i:45;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546246;}i:46;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546297;}i:47;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546344;}i:48;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546381;}i:49;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546446;}i:50;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546492;}i:51;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547127;}i:52;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547312;}i:53;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:0;s:17:\"manual_submission\";b:0;s:7:\"message\";s:90:\"WP_Error: cURL error 28: Operation timed out after 5001 milliseconds with 0 bytes received\";s:4:\"time\";i:1699547378;}i:54;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547437;}i:55;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547454;}i:56;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547488;}i:57;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547523;}i:58;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547559;}i:59;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547590;}i:60;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547685;}i:61;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547702;}i:62;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547762;}i:63;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547837;}i:64;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547893;}i:65;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547934;}i:66;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547964;}i:67;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547994;}i:68;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548017;}i:69;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548061;}i:70;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548087;}i:71;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548107;}i:72;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548141;}i:73;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548200;}i:74;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548216;}i:75;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548314;}i:76;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548339;}i:77;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:0;s:17:\"manual_submission\";b:0;s:7:\"message\";s:90:\"WP_Error: cURL error 28: Operation timed out after 5000 milliseconds with 0 bytes received\";s:4:\"time\";i:1699548364;}i:78;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548418;}i:79;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548447;}i:80;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548896;}i:81;a:5:{s:3:\"url\";s:61:\"https://www.nl.ecom-expansion.com/15-kinesiska-lyckosymboler/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699670453;}i:82;a:5:{s:3:\"url\";s:63:\"https://www.nl.ecom-expansion.com/kinapinnar-ursprung-historia/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699670454;}i:83;a:5:{s:3:\"url\";s:73:\"https://www.nl.ecom-expansion.com/historia-betydelse-kinesiska-lanternor/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699670454;}i:84;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699727768;}i:85;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699903013;}i:86;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699904200;}i:87;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700065124;}i:88;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700097317;}i:89;a:5:{s:3:\"url\";s:49:\"https://www.nl.ecom-expansion.com/alle-producten/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700324932;}i:90;a:5:{s:3:\"url\";s:39:\"https://www.nl.ecom-expansion.com/blog/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700325733;}i:91;a:5:{s:3:\"url\";s:44:\"https://www.nl.ecom-expansion.com/afrekenen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700326519;}i:92;a:5:{s:3:\"url\";s:47:\"https://www.nl.ecom-expansion.com/mijn-account/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700326887;}i:93;a:5:{s:3:\"url\";s:55:\"https://www.nl.ecom-expansion.com/je-bestelling-volgen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700326937;}i:94;a:5:{s:3:\"url\";s:47:\"https://www.nl.ecom-expansion.com/winkelmandje/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327007;}i:95;a:5:{s:3:\"url\";s:55:\"https://www.nl.ecom-expansion.com/je-bestelling-volgen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327119;}i:96;a:5:{s:3:\"url\";s:47:\"https://www.nl.ecom-expansion.com/parcel-panel/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327171;}i:97;a:5:{s:3:\"url\";s:55:\"https://www.nl.ecom-expansion.com/je-bestelling-volgen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327235;}i:98;a:5:{s:3:\"url\";s:55:\"https://www.nl.ecom-expansion.com/je-bestelling-volgen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327271;}i:99;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1702511587;}}','no'),(4785,'rank_math_yoast_block_posts','a:2:{s:5:\"posts\";a:0:{}s:5:\"count\";i:0;}','yes'),(4786,'rank_math_old_schema_data','a:0:{}','yes'),(6861,'https_migration_required','1','yes'),(7682,'litespeed.admin_display._summary','{\"new_version.last_check\":1702743948,\"new_version.v\":\"6.0.0.1\"}','yes'),(7694,'litespeed.optimize.timestamp_purge_css','1703304392','yes'),(8461,'woocommerce_checkout_phone_field','required','yes'),(8889,'woocommerce_shop_page_display','','yes'),(9196,'nsl-version','3.1.11','yes'),(9197,'widget_nextend_social_login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9356,'woocommerce_checkout_terms_and_conditions_checkbox_text','Jag har läst och accepterar [terms].','yes'),(9454,'secret_key','cl8yAht/*U/C4zUOV&%S#dc`.),vpe8pyvSpI?[IH|2*xKa*=Ee*~?Rx6abJan&k','no'),(10633,'yith_wcwl_color_add_to_wishlist','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#333333\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#333333\";}','yes'),(10642,'yith_wcwl_color_add_to_cart','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#4F4F4F\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#4F4F4F\";}','yes'),(10643,'yith_wcwl_color_button_style_1','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#4F4F4F\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#4F4F4F\";}','yes'),(10644,'yith_wcwl_color_button_style_2','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#4F4F4F\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#4F4F4F\";}','yes'),(10645,'yith_wcwl_color_wishlist_table','a:3:{s:10:\"background\";s:7:\"#FFFFFF\";s:4:\"text\";s:7:\"#6d6c6c\";s:6:\"border\";s:7:\"#FFFFFF\";}','yes'),(10646,'yith_wcwl_color_share_button','a:2:{s:5:\"color\";s:7:\"#FFFFFF\";s:11:\"color_hover\";s:7:\"#FFFFFF\";}','yes'),(10647,'yith_wcwl_color_fb_button','a:2:{s:10:\"background\";s:7:\"#39599E\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10648,'yith_wcwl_color_tw_button','a:2:{s:10:\"background\";s:7:\"#45AFE2\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10649,'yith_wcwl_color_pr_button','a:2:{s:10:\"background\";s:7:\"#AB2E31\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10650,'yith_wcwl_color_em_button','a:2:{s:10:\"background\";s:7:\"#FBB102\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10651,'yith_wcwl_color_wa_button','a:2:{s:10:\"background\";s:7:\"#00A901\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10866,'wp_calendar_block_has_published_posts','','yes'),(17874,'ewd-otp-permission-level','a:1:{i:0;s:1:\"1\";}','yes'),(17875,'ewd-otp-settings','a:15:{s:14:\"email-messages\";s:141:\"[{\"id\":1,\"name\":\"Default\",\"subject\":\"Order Status Update\",\"message\":\"Hello [order-name], You have an update for your order [order-number]!\"}]\";s:8:\"statuses\";s:469:\"[{\"status\":\"Pending Payment\",\"percentage\":\"25\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Processing\",\"percentage\":\"50\",\"email\":1,\"internal\":\"no\"},{\"status\":\"On Hold\",\"percentage\":\"50\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Completed\",\"percentage\":\"100\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Cancelled\",\"percentage\":\"0\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Refunded\",\"percentage\":\"0\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Failed\",\"percentage\":\"0\",\"email\":1,\"internal\":\"no\"}]\";s:17:\"order-information\";a:6:{i:0;s:12:\"order_number\";i:1;s:10:\"order_name\";i:2;s:12:\"order_status\";i:3;s:14:\"order_location\";i:4;s:13:\"order_updated\";i:5;s:11:\"order_notes\";}s:15:\"email-frequency\";s:6:\"change\";s:17:\"form-instructions\";s:65:\"Enter the order number you would like to track in the form below.\";s:17:\"hide-blank-fields\";s:1:\"1\";s:10:\"custom-css\";s:0:\"\";s:11:\"date-format\";s:0:\"\";s:20:\"disable-ajax-loading\";s:0:\"\";s:10:\"new-window\";s:0:\"\";s:20:\"display-print-button\";s:0:\"\";s:18:\"email-verification\";s:1:\"1\";s:19:\"google-maps-api-key\";s:0:\"\";s:17:\"tracking-page-url\";s:0:\"\";s:15:\"use-wp-timezone\";s:0:\"\";}','yes'),(17876,'ewd-otp-installation-time','1672510923','yes'),(18388,'nextend_social_login','s:4447:\"a:101:{s:7:\"enabled\";a:2:{i:0;s:8:\"facebook\";i:1;s:6:\"google\";}s:18:\"register-flow-page\";s:0:\"\";s:10:\"proxy-page\";s:0:\"\";s:8:\"ordering\";a:3:{i:0;s:8:\"facebook\";i:1;s:6:\"google\";i:2;s:7:\"twitter\";}s:8:\"licenses\";a:0:{}s:10:\"terms_show\";i:1;s:5:\"terms\";s:116:\"By clicking Register, you accept our <a href=\"#privacy_policy_url\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a>\";s:10:\"store_name\";i:1;s:11:\"store_email\";i:1;s:12:\"avatar_store\";i:1;s:18:\"store_access_token\";i:1;s:25:\"redirect_prevent_external\";i:1;s:8:\"redirect\";s:0:\"\";s:12:\"redirect_reg\";s:0:\"\";s:16:\"default_redirect\";s:0:\"\";s:20:\"default_redirect_reg\";s:0:\"\";s:16:\"blacklisted_urls\";s:0:\"\";s:16:\"redirect_overlay\";s:32:\"overlay-with-spinner-and-message\";s:6:\"target\";s:12:\"prefer-popup\";s:14:\"allow_register\";i:1;s:12:\"allow_unlink\";i:1;s:15:\"show_login_form\";s:4:\"show\";s:23:\"login_form_button_align\";s:6:\"center\";s:22:\"show_registration_form\";s:4:\"show\";s:23:\"login_form_button_style\";s:7:\"default\";s:17:\"login_form_layout\";s:5:\"below\";s:24:\"show_embedded_login_form\";s:4:\"show\";s:32:\"embedded_login_form_button_align\";s:4:\"left\";s:32:\"embedded_login_form_button_style\";s:7:\"default\";s:26:\"embedded_login_form_layout\";s:5:\"below\";s:14:\"custom_actions\";s:0:\"\";s:27:\"custom_actions_button_style\";s:7:\"default\";s:28:\"custom_actions_button_layout\";s:7:\"default\";s:27:\"custom_actions_button_align\";s:4:\"left\";s:20:\"comment_login_button\";s:4:\"show\";s:20:\"comment_button_align\";s:4:\"left\";s:20:\"comment_button_style\";s:7:\"default\";s:26:\"buddypress_register_button\";s:32:\"bp_before_account_details_fields\";s:32:\"buddypress_register_button_align\";s:4:\"left\";s:32:\"buddypress_register_button_style\";s:7:\"default\";s:31:\"buddypress_register_form_layout\";s:7:\"default\";s:16:\"buddypress_login\";s:4:\"show\";s:28:\"buddypress_login_form_layout\";s:7:\"default\";s:29:\"buddypress_login_button_style\";s:7:\"default\";s:24:\"buddypress_sidebar_login\";s:4:\"show\";s:30:\"buddypress_social_accounts_tab\";s:4:\"show\";s:17:\"woocommerce_login\";s:5:\"after\";s:29:\"woocommerce_login_form_layout\";s:7:\"default\";s:20:\"woocommerce_register\";s:5:\"after\";s:32:\"woocommerce_register_form_layout\";s:7:\"default\";s:19:\"woocommerce_billing\";s:6:\"before\";s:31:\"woocommerce_billing_form_layout\";s:7:\"default\";s:30:\"woocoommerce_form_button_style\";s:7:\"default\";s:30:\"woocoommerce_form_button_align\";s:4:\"left\";s:27:\"woocommerce_account_details\";s:6:\"before\";s:15:\"woocommerce_cfw\";s:4:\"show\";s:22:\"woocommerce_cfw_layout\";s:5:\"below\";s:17:\"memberpress_login\";s:6:\"before\";s:29:\"memberpress_form_button_align\";s:4:\"left\";s:35:\"memberpress_login_form_button_style\";s:7:\"default\";s:29:\"memberpress_login_form_layout\";s:15:\"below-separator\";s:18:\"memberpress_signup\";s:6:\"before\";s:36:\"memberpress_signup_form_button_style\";s:7:\"default\";s:30:\"memberpress_signup_form_layout\";s:15:\"below-separator\";s:27:\"memberpress_account_details\";s:5:\"after\";s:32:\"registration_notification_notify\";s:1:\"0\";s:5:\"debug\";s:1:\"0\";s:12:\"bypass_cache\";s:1:\"1\";s:21:\"show_linked_providers\";s:1:\"0\";s:17:\"login_restriction\";i:1;s:20:\"avatars_in_all_media\";s:1:\"0\";s:21:\"custom_register_label\";s:1:\"0\";s:12:\"review_state\";i:-1;s:21:\"woocommerce_dismissed\";i:1;s:40:\"woocoommerce_registration_email_template\";s:11:\"woocommerce\";s:23:\"userpro_show_login_form\";s:4:\"show\";s:26:\"userpro_show_register_form\";s:4:\"show\";s:31:\"userpro_login_form_button_style\";s:7:\"default\";s:25:\"userpro_login_form_layout\";s:5:\"below\";s:34:\"userpro_register_form_button_style\";s:7:\"default\";s:28:\"userpro_register_form_layout\";s:5:\"below\";s:25:\"userpro_form_button_align\";s:4:\"left\";s:20:\"ultimatemember_login\";s:5:\"after\";s:38:\"ultimatemember_login_form_button_style\";s:7:\"default\";s:32:\"ultimatemember_login_form_layout\";s:15:\"below-separator\";s:23:\"ultimatemember_register\";s:5:\"after\";s:41:\"ultimatemember_register_form_button_style\";s:7:\"default\";s:35:\"ultimatemember_register_form_layout\";s:15:\"below-separator\";s:30:\"ultimatemember_account_details\";s:5:\"after\";s:32:\"ultimatemember_form_button_align\";s:4:\"left\";s:9:\"edd_login\";s:5:\"after\";s:27:\"edd_login_form_button_style\";s:7:\"default\";s:21:\"edd_login_form_layout\";s:7:\"default\";s:12:\"edd_register\";s:5:\"after\";s:30:\"edd_register_form_button_style\";s:7:\"default\";s:24:\"edd_register_form_layout\";s:7:\"default\";s:12:\"edd_checkout\";s:10:\"form_after\";s:30:\"edd_checkout_form_button_style\";s:7:\"default\";s:24:\"edd_checkout_form_layout\";s:7:\"default\";s:21:\"edd_form_button_align\";s:4:\"left\";s:15:\"admin_bar_roles\";a:0:{}}\";','yes'),(18429,'nsl_facebook','s:1811:\"a:41:{s:14:\"settings_saved\";i:1;s:6:\"tested\";i:1;s:21:\"custom_default_button\";s:0:\"\";s:18:\"custom_icon_button\";s:0:\"\";s:11:\"login_label\";s:29:\"Continue with <b>Facebook</b>\";s:14:\"register_label\";s:28:\"Sign up with <b>Facebook</b>\";s:10:\"link_label\";s:33:\"Link account with <b>Facebook</b>\";s:12:\"unlink_label\";s:35:\"Unlink account from <b>Facebook</b>\";s:11:\"user_prefix\";s:0:\"\";s:13:\"user_fallback\";s:0:\"\";s:18:\"oauth_redirect_url\";s:65:\"https://www.nl.ecom-expansion.com/wp-login.php?loginSocial=facebook\";s:5:\"terms\";s:0:\"\";s:21:\"sync_profile/register\";i:1;s:18:\"sync_profile/login\";i:1;s:17:\"sync_profile/link\";i:1;s:16:\"sync_fields/link\";i:0;s:17:\"sync_fields/login\";i:0;s:9:\"ask_email\";s:10:\"when-empty\";s:8:\"ask_user\";s:5:\"never\";s:12:\"ask_password\";s:5:\"never\";s:9:\"auto_link\";s:5:\"email\";s:14:\"disabled_roles\";a:0:{}s:14:\"register_roles\";a:1:{i:0;s:7:\"default\";}s:36:\"sync_fields/fields/age_range/enabled\";i:0;s:37:\"sync_fields/fields/age_range/meta_key\";s:18:\"facebook_age_range\";s:35:\"sync_fields/fields/birthday/enabled\";i:0;s:36:\"sync_fields/fields/birthday/meta_key\";s:17:\"facebook_birthday\";s:31:\"sync_fields/fields/link/enabled\";i:0;s:32:\"sync_fields/fields/link/meta_key\";s:13:\"facebook_link\";s:35:\"sync_fields/fields/hometown/enabled\";i:0;s:36:\"sync_fields/fields/hometown/meta_key\";s:17:\"facebook_hometown\";s:35:\"sync_fields/fields/location/enabled\";i:0;s:36:\"sync_fields/fields/location/meta_key\";s:17:\"facebook_location\";s:33:\"sync_fields/fields/gender/enabled\";i:0;s:34:\"sync_fields/fields/gender/meta_key\";s:15:\"facebook_gender\";s:33:\"sync_fields/fields/quotes/enabled\";i:0;s:34:\"sync_fields/fields/quotes/meta_key\";s:15:\"facebook_quotes\";s:5:\"appid\";s:15:\"719785872793912\";s:6:\"secret\";s:32:\"a82c547fbdf9b243c7afc7204d5699f9\";s:4:\"skin\";s:4:\"dark\";s:18:\"profile_image_size\";s:7:\"default\";','yes'),(18458,'nsl_google','s:2257:\"a:47:{s:14:\"settings_saved\";i:1;s:6:\"tested\";i:1;s:21:\"custom_default_button\";s:0:\"\";s:18:\"custom_icon_button\";s:0:\"\";s:11:\"login_label\";s:27:\"Continue with <b>Google</b>\";s:14:\"register_label\";s:26:\"Sign up with <b>Google</b>\";s:10:\"link_label\";s:31:\"Link account with <b>Google</b>\";s:12:\"unlink_label\";s:33:\"Unlink account from <b>Google</b>\";s:11:\"user_prefix\";s:0:\"\";s:13:\"user_fallback\";s:0:\"\";s:18:\"oauth_redirect_url\";s:63:\"https://www.nl.ecom-expansion.com/wp-login.php?loginSocial=google\";s:5:\"terms\";s:0:\"\";s:21:\"sync_profile/register\";i:1;s:18:\"sync_profile/login\";i:1;s:17:\"sync_profile/link\";i:1;s:16:\"sync_fields/link\";i:0;s:17:\"sync_fields/login\";i:0;s:9:\"ask_email\";s:10:\"when-empty\";s:8:\"ask_user\";s:5:\"never\";s:12:\"ask_password\";s:5:\"never\";s:9:\"auto_link\";s:5:\"email\";s:14:\"disabled_roles\";a:0:{}s:14:\"register_roles\";a:1:{i:0;s:7:\"default\";}s:33:\"sync_fields/fields/locale/enabled\";i:0;s:34:\"sync_fields/fields/locale/meta_key\";s:13:\"google_locale\";s:34:\"sync_fields/fields/genders/enabled\";i:0;s:35:\"sync_fields/fields/genders/meta_key\";s:14:\"google_genders\";s:38:\"sync_fields/fields/biographies/enabled\";i:0;s:39:\"sync_fields/fields/biographies/meta_key\";s:18:\"google_biographies\";s:36:\"sync_fields/fields/birthdays/enabled\";i:0;s:37:\"sync_fields/fields/birthdays/meta_key\";s:16:\"google_birthdays\";s:38:\"sync_fields/fields/occupations/enabled\";i:0;s:39:\"sync_fields/fields/occupations/meta_key\";s:18:\"google_occupations\";s:40:\"sync_fields/fields/organizations/enabled\";i:0;s:41:\"sync_fields/fields/organizations/meta_key\";s:20:\"google_organizations\";s:36:\"sync_fields/fields/locations/enabled\";i:0;s:37:\"sync_fields/fields/locations/meta_key\";s:16:\"google_locations\";s:36:\"sync_fields/fields/ageRanges/enabled\";i:0;s:37:\"sync_fields/fields/ageRanges/meta_key\";s:16:\"google_ageRanges\";s:36:\"sync_fields/fields/addresses/enabled\";i:0;s:37:\"sync_fields/fields/addresses/meta_key\";s:16:\"google_addresses\";s:39:\"sync_fields/fields/phoneNumbers/enabled\";i:0;s:40:\"sync_fields/fields/phoneNumbers/meta_key\";s:19:\"google_phoneNumbers\";s:9:\"client_id\";s:72:\"717434584257-3g0mg4thqeql24pa9fi2b89ckf1j7rlm.apps.googleusercontent.com\";s:13:\"client_secret\";s:35:\"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\";s:14:\"select_account\";i:1;s:4:\"skin\";s:5:\"light\";','yes'),(18630,'ewd-otp-review-ask-time','1678802594','yes'),(19946,'vi_s2w_update_data_new_version_free','1674064374','yes'),(19947,'import-shopify-to-woocommerce_start_use','1','yes'),(19981,'vi_s2w_update_data_new_version','1674065295','yes'),(19983,'s2w-import-shopify-to-woocommerce_1.1.12_dismiss_notices','1674065307','yes'),(19987,'s2w_params','a:90:{s:21:\"download_images_later\";s:1:\"1\";s:21:\"csv_if_product_exists\";s:4:\"skip\";s:22:\"webhooks_shared_secret\";s:0:\"\";s:22:\"webhooks_orders_enable\";s:0:\"\";s:31:\"webhooks_orders_create_customer\";s:0:\"\";s:23:\"webhooks_orders_options\";a:1:{i:0;s:12:\"order_status\";}s:29:\"webhooks_order_status_mapping\";b:0;s:24:\"webhooks_products_enable\";s:0:\"\";s:25:\"webhooks_products_options\";a:1:{i:0;s:9:\"inventory\";}s:25:\"webhooks_customers_enable\";s:0:\"\";s:18:\"cron_update_orders\";s:0:\"\";s:29:\"cron_update_orders_force_sync\";i:0;s:26:\"cron_update_orders_options\";a:1:{i:0;s:6:\"status\";}s:25:\"cron_update_orders_status\";a:3:{i:0;s:10:\"wc-pending\";i:1;s:10:\"wc-on-hold\";i:2;s:13:\"wc-processing\";}s:24:\"cron_update_orders_range\";i:30;s:27:\"cron_update_orders_interval\";i:5;s:23:\"cron_update_orders_hour\";i:0;s:25:\"cron_update_orders_minute\";i:0;s:25:\"cron_update_orders_second\";i:0;s:20:\"cron_update_products\";s:0:\"\";s:31:\"cron_update_products_force_sync\";i:0;s:28:\"cron_update_products_options\";a:1:{i:0;s:9:\"inventory\";}s:27:\"cron_update_products_status\";a:1:{i:0;s:7:\"publish\";}s:31:\"cron_update_products_categories\";a:0:{}s:29:\"cron_update_products_interval\";i:5;s:25:\"cron_update_products_hour\";i:0;s:27:\"cron_update_products_minute\";i:0;s:27:\"cron_update_products_second\";i:0;s:25:\"update_order_options_show\";i:1;s:20:\"update_order_options\";a:2:{i:0;s:12:\"order_status\";i:1;s:10:\"order_date\";}s:27:\"update_product_options_show\";i:1;s:22:\"update_product_options\";a:2:{i:0;s:6:\"images\";i:1;s:5:\"price\";}s:25:\"update_product_metafields\";a:0:{}s:21:\"customers_per_request\";s:3:\"100\";s:14:\"customers_role\";s:8:\"customer\";s:29:\"customers_with_purchases_only\";s:1:\"0\";s:25:\"update_existing_customers\";s:1:\"0\";s:19:\"coupons_per_request\";s:3:\"100\";s:20:\"coupon_starts_at_min\";s:0:\"\";s:20:\"coupon_starts_at_max\";s:0:\"\";s:18:\"coupon_ends_at_min\";s:0:\"\";s:18:\"coupon_ends_at_max\";s:0:\"\";s:22:\"coupon_zero_times_used\";s:1:\"1\";s:14:\"order_since_id\";s:0:\"\";s:22:\"order_processed_at_min\";s:0:\"\";s:22:\"order_processed_at_max\";s:0:\"\";s:22:\"order_financial_status\";s:3:\"any\";s:24:\"order_fulfillment_status\";s:3:\"any\";s:18:\"orders_per_request\";s:2:\"50\";s:19:\"order_tag_to_status\";a:0:{}s:20:\"order_status_mapping\";a:7:{s:7:\"pending\";s:7:\"pending\";s:10:\"authorized\";s:10:\"processing\";s:14:\"partially_paid\";s:9:\"completed\";s:4:\"paid\";s:9:\"completed\";s:8:\"refunded\";s:8:\"refunded\";s:18:\"partially_refunded\";s:8:\"refunded\";s:6:\"voided\";s:9:\"cancelled\";}s:21:\"order_import_sequence\";s:4:\"desc\";s:15:\"download_images\";s:1:\"1\";s:18:\"use_external_image\";s:0:\"\";s:26:\"disable_background_process\";s:1:\"0\";s:27:\"download_description_images\";s:1:\"1\";s:9:\"keep_slug\";s:1:\"1\";s:14:\"product_status\";s:7:\"publish\";s:22:\"product_status_mapping\";a:3:{s:6:\"active\";s:7:\"publish\";s:8:\"archived\";s:7:\"pending\";s:5:\"draft\";s:5:\"draft\";}s:18:\"product_categories\";a:0:{}s:20:\"products_per_request\";s:1:\"5\";s:23:\"product_import_sequence\";s:9:\"title asc\";s:16:\"product_since_id\";s:0:\"\";s:20:\"product_product_type\";s:0:\"\";s:21:\"product_collection_id\";s:0:\"\";s:14:\"product_vendor\";s:0:\"\";s:22:\"product_created_at_min\";s:0:\"\";s:22:\"product_created_at_max\";s:0:\"\";s:24:\"product_published_at_min\";s:0:\"\";s:24:\"product_published_at_max\";s:0:\"\";s:17:\"global_attributes\";s:1:\"0\";s:12:\"variable_sku\";s:20:\"{shopify_product_id}\";s:15:\"product_type_as\";s:0:\"\";s:17:\"product_type_meta\";s:0:\"\";s:17:\"product_vendor_as\";s:0:\"\";s:19:\"product_vendor_meta\";s:0:\"\";s:20:\"product_barcode_meta\";s:0:\"\";s:14:\"product_author\";s:0:\"\";s:24:\"update_existing_products\";s:1:\"0\";s:6:\"domain\";s:29:\"test12354fsdfef.myshopify.com\";s:12:\"access_token\";s:38:\"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\";s:7:\"api_key\";s:0:\"\";s:10:\"api_secret\";s:0:\"\";s:6:\"number\";s:0:\"\";s:8:\"validate\";i:1;s:15:\"auto_update_key\";s:0:\"\";s:15:\"request_timeout\";s:2:\"60\";s:18:\"spages_per_request\";s:2:\"10\";s:21:\"blogs_update_if_exist\";a:0:{}s:12:\"capabilities\";a:8:{s:15:\"change_settings\";s:14:\"manage_options\";s:13:\"cron_products\";s:18:\"manage_woocommerce\";s:11:\"cron_orders\";s:18:\"manage_woocommerce\";s:8:\"webhooks\";s:14:\"manage_options\";s:12:\"import_by_id\";s:18:\"manage_woocommerce\";s:10:\"import_csv\";s:18:\"manage_woocommerce\";s:13:\"failed_images\";s:18:\"manage_woocommerce\";s:11:\"access_logs\";s:18:\"manage_woocommerce\";}}','yes'),(19991,'s2w_test12354fsdfef.myshopify.com_history','a:10:{s:14:\"total_products\";i:533;s:11:\"total_pages\";d:3;s:17:\"current_import_id\";i:7818013049068;s:22:\"current_import_product\";i:32;s:19:\"current_import_page\";i:3;s:17:\"products_per_file\";i:250;s:18:\"last_product_error\";s:0:\"\";s:9:\"page_info\";s:152:\"eyJkaXJlY3Rpb24iOiJuZXh0Iiwib3JkZXIiOiJ0aXRsZSBhc2MiLCJsYXN0X2lkIjo3ODE4MDE0MDY0ODc2LCJsYXN0X3ZhbHVlIjoiVmVzdGUgQ2hpbm9pc2UgRmVtbWUgPGJyPiBWaW9sZXR0ZSJ9\";s:13:\"page_info_num\";i:3;s:4:\"time\";i:1674044440;}','yes'),(19992,'s2w_woocommerce_placeholder_img_src','2624','yes'),(22442,'s2w-import-shopify-to-woocommerce_messages','a:3:{s:7:\"message\";s:90:\"Key is being verified. You can check Auto Update Key at https://villatheme.com/my-download\";s:6:\"status\";i:0;s:6:\"update\";i:0;}','yes'),(22458,'seedprod_migration_run_once','1','yes'),(22459,'seedprod_run_activation','1','yes'),(22460,'seedprod_settings','{\"api_key\":\"\",\"enable_coming_soon_mode\":false,\"enable_maintenance_mode\":false,\"enable_login_mode\":false,\"enable_404_mode\":false}','yes'),(22461,'seedprod_over_time','a:3:{s:17:\"installed_version\";s:6:\"6.15.7\";s:14:\"installed_date\";i:1674066565;s:13:\"installed_pro\";s:4:\"lite\";}','yes'),(22462,'seedprod_token','a1e8026f-f7b2-497c-a738-bc7d625fcb18','yes'),(22466,'seedprod_notifications','a:4:{s:6:\"update\";i:1703356614;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:3:{i:0;s:2:\"35\";i:1;s:2:\"36\";i:2;s:2:\"51\";}}','yes'),(22467,'seedprod_dismiss_setup_wizard','1','yes'),(22468,'seedprod_review','a:2:{s:4:\"time\";i:1674856540;s:9:\"dismissed\";b:1;}','yes'),(22469,'seedprod_app_settings','{  \n   \"facebook_g_app_id\":\"\",\n   \"disable_seedprod_button\":false\n}','yes'),(22470,'seedprod_onetime_flush_rewrite','1','yes'),(22471,'seedprod_one_click_upgrade','6959979110ca59dc265123cce0dfbc072b8aeb6dfbe70a090459dfd2e677817a913a9df52a5909bff3bd96f92222f01fc3036ed9a6b61d15e75fe32489008141','yes'),(22477,'seedprod_coming_soon_page_id','8206','yes'),(22478,'seedprod_stripe_connect_origin','8b2b762a-9bc7-4ca9-bc0d-84fee25c041c','yes'),(22501,'seedprod_maintenance_mode_page_id','','yes'),(22502,'seedprod_login_page_id','','yes'),(22503,'seedprod_404_page_id','','yes'),(32064,'trackship_apikey','628734b70934e910d3cdf1185f0eb933','yes'),(32078,'trackship_review_notice_ignore','true','yes'),(32781,'widget_mla-text-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(32782,'mla_custom_field_mapping','a:0:{}','yes'),(32783,'mla_iptc_exif_mapping','a:3:{s:8:\"standard\";a:6:{s:10:\"post_title\";a:5:{s:4:\"name\";s:5:\"Title\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:9:\"post_name\";a:5:{s:4:\"name\";s:9:\"Name/Slug\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:9:\"image_alt\";a:5:{s:4:\"name\";s:8:\"ALT Text\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:12:\"post_excerpt\";a:5:{s:4:\"name\";s:7:\"Caption\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:12:\"post_content\";a:5:{s:4:\"name\";s:11:\"Description\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:9:\"post_date\";a:5:{s:4:\"name\";s:11:\"Uploaded on\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:0;}}s:8:\"taxonomy\";a:0:{}s:6:\"custom\";a:0:{}}','yes'),(32784,'mla_upload_mimes','a:4:{s:6:\"custom\";a:3:{s:3:\"otf\";s:13:\"font/opentype\";s:3:\"ttf\";s:24:\"application/octet-stream\";s:4:\"svgz\";s:13:\"image/svg+xml\";}s:8:\"disabled\";a:50:{s:3:\"ac3\";b:1;s:2:\"ai\";b:1;s:3:\"aif\";b:1;s:4:\"aifc\";b:1;s:4:\"aiff\";b:1;s:2:\"au\";b:1;s:3:\"bin\";b:1;s:3:\"cat\";b:1;s:3:\"cdf\";b:1;s:3:\"cgm\";b:1;s:3:\"clp\";b:1;s:3:\"crd\";b:1;s:3:\"dat\";b:1;s:3:\"dll\";b:1;s:3:\"dot\";b:1;s:3:\"dtd\";b:1;s:3:\"eps\";b:1;s:4:\"gtar\";b:1;s:3:\"ief\";b:1;s:3:\"ifb\";b:1;s:3:\"m13\";b:1;s:3:\"m14\";b:1;s:3:\"mml\";b:1;s:3:\"mny\";b:1;s:5:\"movie\";b:1;s:3:\"mp2\";b:1;s:3:\"mpa\";b:1;s:3:\"msg\";b:1;s:3:\"mvb\";b:1;s:3:\"pic\";b:1;s:4:\"pict\";b:1;s:2:\"ps\";b:1;s:3:\"pub\";b:1;s:3:\"rgb\";b:1;s:3:\"scd\";b:1;s:3:\"snd\";b:1;s:3:\"sql\";b:1;s:3:\"sst\";b:1;s:3:\"stl\";b:1;s:3:\"svg\";b:1;s:3:\"trm\";b:1;s:3:\"w6w\";b:1;s:3:\"wmf\";b:1;s:4:\"woff\";b:1;s:4:\"word\";b:1;s:3:\"xlc\";b:1;s:3:\"xlm\";b:1;s:3:\"xml\";b:1;s:3:\"xsl\";b:1;s:4:\"xslt\";b:1;}s:11:\"description\";a:0:{}s:9:\"icon_type\";a:80:{s:2:\"ai\";s:10:\"postscript\";s:4:\"aifc\";s:5:\"audio\";s:3:\"asx\";s:5:\"video\";s:2:\"au\";s:5:\"audio\";s:3:\"bin\";s:6:\"binary\";s:1:\"c\";s:8:\"source_c\";s:2:\"cc\";s:10:\"source_cpp\";s:3:\"cgm\";s:5:\"image\";s:5:\"class\";s:11:\"source_java\";s:3:\"clp\";s:6:\"knotes\";s:3:\"crd\";s:6:\"knotes\";s:3:\"css\";s:10:\"stylesheet\";s:3:\"dat\";s:6:\"binary\";s:3:\"dll\";s:8:\"exe_wine\";s:3:\"dot\";s:8:\"document\";s:4:\"dotx\";s:8:\"document\";s:3:\"dtd\";s:4:\"code\";s:3:\"eps\";s:10:\"postscript\";s:3:\"exe\";s:8:\"exe_wine\";s:4:\"gtar\";s:7:\"archive\";s:4:\"gzip\";s:7:\"archive\";s:1:\"h\";s:8:\"source_h\";s:3:\"ics\";s:8:\"calendar\";s:3:\"ief\";s:5:\"image\";s:3:\"ifb\";s:8:\"calendar\";s:2:\"js\";s:11:\"source_java\";s:3:\"mdb\";s:8:\"database\";s:3:\"mid\";s:5:\"audio\";s:4:\"midi\";s:5:\"audio\";s:3:\"mml\";s:8:\"kformula\";s:5:\"movie\";s:5:\"video\";s:3:\"mpa\";s:5:\"audio\";s:3:\"mpe\";s:5:\"video\";s:3:\"msg\";s:7:\"message\";s:3:\"odb\";s:8:\"database\";s:3:\"odc\";s:3:\"log\";s:3:\"odf\";s:8:\"kformula\";s:3:\"odg\";s:2:\"3d\";s:6:\"onepkg\";s:6:\"knotes\";s:6:\"onetmp\";s:6:\"knotes\";s:6:\"onetoc\";s:6:\"knotes\";s:7:\"onetoc2\";s:6:\"knotes\";s:3:\"pdf\";s:3:\"pdf\";s:3:\"pic\";s:5:\"image\";s:4:\"pict\";s:5:\"image\";s:3:\"pot\";s:11:\"interactive\";s:4:\"potm\";s:11:\"interactive\";s:4:\"potx\";s:11:\"interactive\";s:4:\"ppam\";s:11:\"interactive\";s:2:\"ps\";s:10:\"postscript\";s:3:\"psd\";s:5:\"image\";s:3:\"pub\";s:8:\"document\";s:2:\"qt\";s:9:\"quicktime\";s:2:\"ra\";s:5:\"audio\";s:3:\"rgb\";s:5:\"image\";s:3:\"rtx\";s:4:\"text\";s:3:\"snd\";s:5:\"audio\";s:3:\"sql\";s:8:\"database\";s:3:\"svg\";s:9:\"vectorgfx\";s:3:\"trm\";s:11:\"interactive\";s:3:\"w6w\";s:8:\"document\";s:3:\"wax\";s:5:\"audio\";s:4:\"webm\";s:5:\"video\";s:2:\"wm\";s:5:\"video\";s:3:\"wmf\";s:9:\"vectorgfx\";s:3:\"wmx\";s:5:\"video\";s:4:\"woff\";s:4:\"font\";s:4:\"word\";s:8:\"document\";s:3:\"wri\";s:8:\"document\";s:3:\"xla\";s:11:\"spreadsheet\";s:4:\"xlam\";s:11:\"spreadsheet\";s:3:\"xlc\";s:11:\"spreadsheet\";s:3:\"xlm\";s:11:\"spreadsheet\";s:3:\"xlt\";s:11:\"spreadsheet\";s:4:\"xltm\";s:11:\"spreadsheet\";s:4:\"xltx\";s:11:\"spreadsheet\";s:3:\"xlw\";s:11:\"spreadsheet\";s:3:\"xml\";s:4:\"code\";s:3:\"xsl\";s:5:\"style\";s:4:\"xslt\";s:4:\"code\";}}','yes'),(32785,'mla_current_version','3.06','yes'),(32787,'mla_post_mime_types','a:4:{s:385:\"application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.ms-word.document.macroEnabled.12,application/vnd.ms-word.template.macroEnabled.12,application/vnd.oasis.opendocument.text,application/vnd.apple.pages,application/pdf,application/vnd.ms-xpsdocument,application/oxps,application/rtf,application/wordperfect,application/octet-stream\";a:7:{s:8:\"singular\";s:8:\"Document\";s:6:\"plural\";s:9:\"Documents\";s:13:\"specification\";s:0:\"\";s:14:\"post_mime_type\";b:1;s:10:\"table_view\";b:1;s:10:\"menu_order\";i:0;s:11:\"description\";s:34:\"Copied from previous filter/plugin\";}s:268:\"application/vnd.apple.numbers,application/vnd.oasis.opendocument.spreadsheet,application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel.sheet.macroEnabled.12,application/vnd.ms-excel.sheet.binary.macroEnabled.12\";a:7:{s:8:\"singular\";s:11:\"Spreadsheet\";s:6:\"plural\";s:20:\"Feuilles de calcul\";s:13:\"specification\";s:0:\"\";s:14:\"post_mime_type\";b:1;s:10:\"table_view\";b:1;s:10:\"menu_order\";i:0;s:11:\"description\";s:34:\"Copied from previous filter/plugin\";}s:96:\"application/x-gzip,application/rar,application/x-tar,application/zip,application/x-7z-compressed\";a:7:{s:8:\"singular\";s:7:\"Archive\";s:6:\"plural\";s:8:\"Archives\";s:13:\"specification\";s:0:\"\";s:14:\"post_mime_type\";b:1;s:10:\"table_view\";b:1;s:10:\"menu_order\";i:0;s:11:\"description\";s:34:\"Copied from previous filter/plugin\";}s:6:\"avatar\";a:7:{s:8:\"singular\";s:6:\"Avatar\";s:6:\"plural\";s:6:\"Avatar\";s:13:\"specification\";s:0:\"\";s:14:\"post_mime_type\";b:1;s:10:\"table_view\";b:1;s:10:\"menu_order\";i:0;s:11:\"description\";s:34:\"Copied from previous filter/plugin\";}}','yes'),(32858,'bulky-bulk-edit-products-for-woo_start_use','1','yes'),(33008,'vi_wbe_settings','a:5:{s:11:\"edit_fields\";a:1:{i:0;s:5:\"image\";}s:19:\"exclude_edit_fields\";a:1:{i:0;s:0:\"\";}s:15:\"load_variations\";s:3:\"yes\";s:8:\"order_by\";s:2:\"ID\";s:5:\"order\";s:4:\"DESC\";}','yes'),(45303,'woocommerce_new_product_management_enabled','no','yes'),(45324,'ast_fulfillment_survay_notice_ignore','true','yes'),(45361,'ast_usage_tracker_last_send','1680294141','yes'),(45719,'parcelpanel_track_page_id','10160','yes'),(45722,'parcelpanel_orders_page_add_track_button','','yes'),(45723,'parcelpanel_email_notification_add_tracking_section','','yes'),(45724,'parcelpanel_track_button_order_status','a:7:{i:0;s:13:\"wc-processing\";i:1;s:12:\"wc-completed\";i:2;s:18:\"wc-partial-shipped\";i:3;s:12:\"wc-cancelled\";i:4;s:11:\"wc-refunded\";i:5;s:9:\"wc-failed\";i:6;s:17:\"wc-checkout-draft\";}','yes'),(45725,'parcelpanel_tracking_section_order_status','a:3:{i:0;s:13:\"wc-processing\";i:1;s:12:\"wc-completed\";i:2;s:18:\"wc-partial-shipped\";}','yes'),(45726,'woocommerce_customer_pp_in_transit_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:52:\"A delivery of the order {order_number} is in transit\";s:7:\"heading\";s:25:\"Your order is in transit.\";s:18:\"additional_content\";s:31:\"Thank you for ordering from us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45727,'woocommerce_customer_pp_out_for_delivery_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:60:\"A shipment of the order {order_number} is ready for delivery\";s:7:\"heading\";s:30:\"Your order is being delivered.\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45728,'woocommerce_customer_pp_delivered_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:52:\"A delivery of the order {order number} has been made\";s:7:\"heading\";s:29:\"Your order has been delivered\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45729,'woocommerce_customer_pp_exception_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:63:\"A shipment of the order {order_number} has a delivery exception\";s:7:\"heading\";s:35:\"Your order has a delivery exception\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45730,'woocommerce_customer_pp_failed_attempt_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:55:\"The attempt to deliver the {order_number} order failed.\";s:7:\"heading\";s:40:\"The attempt to deliver your order failed\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45731,'parcelpanel_db_version','2.8.0','yes'),(45732,'parcelpanel_admin_order_actions_add_track_order_status','a:7:{i:0;s:13:\"wc-processing\";i:1;s:12:\"wc-completed\";i:2;s:18:\"wc-partial-shipped\";i:3;s:12:\"wc-cancelled\";i:4;s:11:\"wc-refunded\";i:5;s:9:\"wc-failed\";i:6;s:17:\"wc-checkout-draft\";}','yes'),(45734,'parcelpanel_last_attempt_connect_at','1700327175','no'),(45735,'parcelpanel_free_upgrade_opened_at','1677146622','yes'),(45736,'parcelpanel_api_key','7a722c924f684ce999b2360bf514cf32','yes'),(45737,'parcelpanel_api_uid','0','yes'),(45738,'parcelpanel_api_bid','13895','yes'),(45739,'parcelpanel_plan_quota','20','yes'),(45740,'parcelpanel_plan_quota_remain','0','yes'),(45741,'parcelpanel_is_free_plan','0','no'),(45742,'parcelpanel_is_unlimited_plan','0','yes'),(45743,'parcelpanel_registered_at','1700327084','no'),(45744,'parcelpanel_connected_at','1677146623','no'),(45745,'parcelpanel_plugin_version','3.7.2','yes'),(45748,'parcelpanel_first_synced_at','1677146629','no'),(45750,'parcelpanel_selected_courier','a:1:{i:0;s:7:\"cainiao\";}','no'),(48880,'parcelpanel_admin_notice_ignore_plugins_feedback','1684337945','yes'),(55930,'parcelpanel_tracking_page_options','a:11:{s:7:\"dsp_opt\";a:6:{s:6:\"_width\";s:6:\"1200px\";s:5:\"color\";s:7:\"#df4c18\";s:8:\"ui_style\";i:1;s:11:\"_selections\";i:302;s:24:\"map_coordinates_position\";i:1;s:13:\"hide_keywords\";s:31:\"China,Aliexpress,Chinese cities\";}s:12:\"trk_pg_trans\";a:29:{s:12:\"order_number\";s:12:\"Order Number\";s:17:\"expected_delivery\";s:22:\"Expected Delivery Date\";s:2:\"or\";s:2:\"OR\";s:5:\"email\";s:5:\"Email\";s:5:\"track\";s:5:\"Track\";s:5:\"order\";s:5:\"Order\";s:15:\"tracking_number\";s:15:\"Tracking Number\";s:7:\"product\";s:7:\"Product\";s:7:\"carrier\";s:7:\"Carrier\";s:6:\"status\";s:6:\"Status\";s:15:\"order_not_found\";s:20:\"Could Not Find Order\";s:16:\"enter_your_order\";s:30:\"Please enter your order number\";s:16:\"enter_your_email\";s:23:\"Please enter your email\";s:26:\"enter_your_tracking_number\";s:33:\"Please enter your tracking number\";s:15:\"not_yet_shipped\";s:33:\"These items have not yet shipped.\";s:7:\"ordered\";s:7:\"Ordered\";s:11:\"order_ready\";s:11:\"Order Ready\";s:15:\"waiting_updated\";s:75:\"Waiting for carrier to update tracking information, please try again later.\";s:11:\"shipping_to\";s:11:\"Shipping To\";s:16:\"current_location\";s:16:\"Current Location\";s:8:\"may_like\";s:20:\"You may also like...\";s:7:\"pending\";s:7:\"Pending\";s:10:\"in_transit\";s:10:\"In Transit\";s:16:\"out_for_delivery\";s:16:\"Out for Delivery\";s:9:\"delivered\";s:9:\"Delivered\";s:7:\"expired\";s:7:\"Expired\";s:14:\"failed_attempt\";s:14:\"Failed Attempt\";s:9:\"exception\";s:9:\"Exception\";s:13:\"info_received\";s:13:\"Info Received\";}s:9:\"cst_o_sta\";a:0:{}s:11:\"cst_trk_inf\";a:2:{s:4:\"days\";i:5;s:4:\"info\";s:31:\"On the way to the next facility\";}s:10:\"est_dely_t\";a:5:{s:7:\"enabled\";b:0;s:9:\"calc_from\";i:0;s:5:\"e_d_t\";a:2:{i:0;i:10;i:1;i:20;}s:11:\"bod_enabled\";b:0;s:9:\"bod_items\";a:0:{}}s:9:\"prod_reco\";a:4:{s:7:\"enabled\";b:0;s:8:\"position\";i:0;s:8:\"advanced\";b:0;s:14:\"product_cat_id\";i:36;}s:12:\"addl_txt_set\";a:2:{s:10:\"text_above\";s:0:\"\";s:10:\"text_below\";s:0:\"\";}s:8:\"dt_t_set\";a:2:{s:11:\"date_format\";i:2;s:11:\"time_format\";i:0;}s:18:\"trans_trk_detl_inf\";a:0:{}s:12:\"cst_css_html\";a:3:{s:3:\"css\";s:0:\"\";s:8:\"html_top\";s:0:\"\";s:11:\"html_bottom\";s:0:\"\";}s:7:\"thm_lng\";a:1:{s:3:\"val\";s:2:\"en\";}}','yes'),(55979,'parcelpanel_remove_branding','1700327499','yes'),(55987,'parcelpanel_admin_notice_ignore_remove_branding','1678571601','yes'),(57118,'woocommerce_failed_order_settings','a:6:{s:7:\"enabled\";s:2:\"no\";s:9:\"recipient\";s:19:\"example@example.com\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:112:\"En savoir plus sur <a href=\"https://docs.woocommerce.com/document/managing-orders/\">les paiements échoués</a>.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57119,'woocommerce_customer_on_hold_order_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:48:\"Nous comptons exécuter votre commande sous peu.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57125,'woocommerce_customer_processing_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:45:\"Uw bestelling voor {site_title} is ontvangen!\";s:7:\"heading\";s:24:\"Bedankt voor uw aankoop!\";s:18:\"additional_content\";s:87:\"We maken je bestelling klaar voor levering. We laten je weten wanneer het is verzonden.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57138,'woocommerce_customer_completed_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:48:\"Je bestelling voor {site_title} is nu verzonden!\";s:7:\"heading\";s:25:\"Uw bestelling is onderweg\";s:18:\"additional_content\";s:179:\"Je bestelling is onderweg. Volg je zending om de afleverstatus te zien.\r\n\r\nJe kunt je bestelling volgen op onze trackingpagina: https://www.nl.ecom-expansion.com/track-your-order/\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57146,'woocommerce_customer_refunded_order_settings','a:7:{s:7:\"enabled\";s:3:\"yes\";s:12:\"subject_full\";s:59:\"Uw {site_title} bestelling #{order_number} is terugbetaald.\";s:15:\"subject_partial\";s:72:\"Uw {site_title} bestelling #{order_number} is gedeeltelijk terugbetaald.\";s:12:\"heading_full\";s:29:\"Uw bestelling is terugbetaald\";s:15:\"heading_partial\";s:42:\"Je bestelling is gedeeltelijk terugbetaald\";s:18:\"additional_content\";s:30:\"We hopen je snel weer te zien.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57153,'woocommerce_customer_invoice_settings','a:6:{s:7:\"subject\";s:36:\"Uw laatste factuur van {site_title}.\";s:7:\"heading\";s:37:\"Uw factuur voor order #{order_number}\";s:12:\"subject_paid\";s:56:\"Factuur voor bestelling #{order_number} op {site_title}.\";s:12:\"heading_paid\";s:35:\"Factuur voor orders #{order_number}\";s:18:\"additional_content\";s:42:\"Bedankt voor het gebruik van {site_title}!\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57161,'woocommerce_customer_note_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:25:\"Merci de votre attention.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57164,'woocommerce_customer_reset_password_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:45:\"Verzoek om wachtwoord reset voor {site_title}\";s:7:\"heading\";s:28:\"Wachtwoord opnieuw instellen\";s:18:\"additional_content\";s:23:\"Bedankt voor het lezen.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57170,'woocommerce_customer_new_account_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:42:\"Je account bij {site_title} is aangemaakt!\";s:7:\"heading\";s:23:\"Welkom bij {site_title}\";s:18:\"additional_content\";s:37:\"We kijken ernaar uit je te ontmoeten.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57200,'woocommerce_customer_pp_partial_shipped_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:46:\"Your Teng Shop order is now partially shipped.\";s:7:\"heading\";s:31:\"Your order is partially shipped\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57210,'woocommerce_failed_renewal_authentication_settings','a:4:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:82:\"Betalingsautorisatie vereist voor verlenging van {site_title} order {order_number}\";s:7:\"heading\";s:65:\"Betalingsautorisatie vereist voor ordervernieuwing {order_number}\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57216,'woocommerce_failed_preorder_sca_authentication_settings','a:4:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:63:\"Betalingsautorisatie vereist voor voorbestelling {order_number}\";s:7:\"heading\";s:63:\"Betalingsautorisatie vereist voor voorbestelling {order_number}\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57220,'woocommerce_failed_authentication_requested_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:0:\"\";s:7:\"subject\";s:110:\"{site_title} Automatische betaling mislukt voor {order_number}. De klant vroeg om verificatie van de betaling.\";s:7:\"heading\";s:71:\"Automatische betaling voor verlenging mislukt door verificatievereisten\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','yes'),(59356,'googlesitekit_db_version','1.8.1','yes'),(59361,'_transient_googlesitekit_verification_meta_tags','a:0:{}','yes'),(59366,'googlesitekit_active_modules','a:4:{i:0;s:18:\"pagespeed-insights\";i:1;s:9:\"analytics\";i:3;s:7:\"adsense\";i:5;s:10:\"tagmanager\";}','yes'),(59369,'googlesitekit_credentials','TQKchkrpJ1JG7NOe29erPThPRXM5cFVGUEgyc2kvQVZSckcyM3FMcFpVL25CNVV3MnlnNWtpclA5M2REa2tucjNKWkhDaDdhNDVqeEc5dWVOTVZTSkhwdmpvRzdYWXFEQzMybXBzdWtvdnRmT2tGekphUjhVY3Bqa1hnR3NhenhoTmxxbUZ6SE44Q2ZENlhyVktIOVl2dUpBTEpOM1RXWXFFVDFnWjRUQnNaTUVKaWZHTC90WUJodUhvRFNWZG9Lbm1Ya0RMMXJxVjkyY0F4SWNmNklJYkkyaFRSd1V6ajNKZVRyUDVnNE82UGU4bXNQZ01EeFJ0aENEc2dGQVdkek9ibjk5N1dPQ0lLS2NOMkpUNDlZam1qWXdvZ1ROSy9JMGNoZVVCRjdQZjN5RThmQzYvMXpIeUxMM3hBb2Qvc1lRbHdDS011VXVRPT0=','yes'),(59370,'googlesitekitpersistent_remote_features','a:15:{s:18:\"adBlockerDetection\";a:1:{s:7:\"enabled\";b:1;}s:14:\"adsenseSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:16:\"dashboardSharing\";a:1:{s:7:\"enabled\";b:1;}s:19:\"ga4ActivationBanner\";a:1:{s:7:\"enabled\";b:0;}s:12:\"ga4Reporting\";a:1:{s:7:\"enabled\";b:1;}s:8:\"ga4setup\";a:1:{s:7:\"enabled\";b:1;}s:10:\"gteSupport\";a:1:{s:7:\"enabled\";b:1;}s:14:\"helpVisibility\";a:1:{s:7:\"enabled\";b:1;}s:13:\"ideaHubModule\";a:1:{s:7:\"enabled\";b:0;}s:14:\"serviceSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:16:\"unifiedDashboard\";a:1:{s:7:\"enabled\";b:1;}s:12:\"userFeedback\";a:1:{s:7:\"enabled\";b:1;}s:17:\"widgets.dashboard\";a:1:{s:7:\"enabled\";b:1;}s:21:\"widgets.pageDashboard\";a:1:{s:7:\"enabled\";b:1;}s:14:\"zeroDataStates\";a:1:{s:7:\"enabled\";b:1;}}','yes'),(59372,'googlesitekit_connected_proxy_url','https://www.nl.ecom-expansion.com/','yes'),(59373,'googlesitekit_search-console_settings','a:2:{s:10:\"propertyID\";s:34:\"https://www.nl.ecom-expansion.com/\";s:7:\"ownerID\";i:5;}','yes'),(59374,'googlesitekit_owner_id','5','yes'),(59382,'googlesitekit_analytics_settings','a:12:{s:7:\"ownerID\";i:5;s:9:\"accountID\";s:9:\"279214306\";s:13:\"adsenseLinked\";b:0;s:15:\"adsConversionID\";s:0:\"\";s:11:\"anonymizeIP\";b:1;s:21:\"internalWebPropertyID\";s:9:\"357948389\";s:9:\"profileID\";s:9:\"286482700\";s:10:\"propertyID\";s:14:\"UA-260354945-1\";s:16:\"trackingDisabled\";a:1:{i:0;s:13:\"loggedinUsers\";}s:10:\"useSnippet\";b:1;s:13:\"canUseSnippet\";b:1;s:13:\"dashboardView\";s:18:\"google-analytics-4\";}','yes'),(59383,'googlesitekit_analytics-4_settings','a:9:{s:7:\"ownerID\";i:5;s:10:\"propertyID\";s:9:\"399008585\";s:15:\"webDataStreamID\";s:10:\"5892329012\";s:13:\"measurementID\";s:12:\"G-8PGCPVRVL2\";s:10:\"useSnippet\";b:1;s:11:\"googleTagID\";s:10:\"GT-NGB7SDH\";s:18:\"googleTagAccountID\";s:10:\"6137411567\";s:20:\"googleTagContainerID\";s:9:\"136115931\";s:23:\"googleTagLastSyncedAtMs\";i:1690243273265;}','yes'),(59391,'googlesitekit_adsense_settings','a:10:{s:7:\"ownerID\";i:3;s:9:\"accountID\";s:0:\"\";s:15:\"autoAdsDisabled\";a:0:{}s:8:\"clientID\";s:0:\"\";s:13:\"accountStatus\";s:4:\"none\";s:10:\"siteStatus\";s:0:\"\";s:20:\"accountSetupComplete\";b:0;s:17:\"siteSetupComplete\";b:0;s:10:\"useSnippet\";b:1;s:16:\"webStoriesAdUnit\";s:0:\"\";}','yes'),(59418,'gtm4wp-options','a:77:{s:8:\"gtm-code\";s:12:\"GTM-KKGLDB6L\";s:27:\"gtm-datalayer-variable-name\";s:0:\"\";s:18:\"gtm-code-placement\";i:0;s:16:\"gtm-env-gtm-auth\";s:0:\"\";s:19:\"gtm-env-gtm-preview\";s:0:\"\";s:24:\"gtm-browser-do-not-track\";b:0;s:18:\"gtm-load-gtm-early\";b:0;s:15:\"gtm-domain-name\";s:0:\"\";s:24:\"gtm-no-gtm-for-logged-in\";s:0:\"\";s:16:\"include-loggedin\";b:0;s:16:\"include-userrole\";b:0;s:14:\"include-userid\";b:0;s:17:\"include-useremail\";b:0;s:19:\"include-userregdate\";b:0;s:16:\"include-username\";b:0;s:18:\"include-visitor-ip\";b:0;s:16:\"include-posttype\";b:1;s:18:\"include-categories\";b:1;s:12:\"include-tags\";b:1;s:14:\"include-author\";b:1;s:16:\"include-authorid\";b:0;s:16:\"include-postdate\";b:0;s:17:\"include-posttitle\";b:0;s:17:\"include-postcount\";b:0;s:14:\"include-postid\";b:0;s:18:\"include-postformat\";b:0;s:17:\"include-postterms\";b:0;s:18:\"include-searchdata\";b:0;s:19:\"include-browserdata\";b:0;s:14:\"include-osdata\";b:0;s:18:\"include-devicedata\";b:0;s:15:\"include-miscgeo\";b:0;s:10:\"geo-apikey\";s:0:\"\";s:26:\"include-miscgeo-cloudflare\";b:0;s:15:\"include-weather\";b:0;s:20:\"weather-weatherunits\";i:0;s:29:\"weather-openweathermap-apikey\";s:0:\"\";s:14:\"include-siteid\";b:0;s:16:\"include-sitename\";b:0;s:15:\"event-form-move\";b:0;s:27:\"event-new-user-registration\";b:0;s:20:\"event-user-logged-in\";b:0;s:13:\"event-youtube\";b:0;s:11:\"event-vimeo\";b:0;s:16:\"event-soundcloud\";b:0;s:16:\"scroller-enabled\";b:0;s:19:\"scroller-debug-mode\";b:0;s:22:\"scroller-callback-time\";i:100;s:17:\"scroller-distance\";i:150;s:18:\"scroller-contentid\";s:7:\"content\";s:19:\"scroller-readertime\";i:60;s:16:\"blacklist-enable\";i:0;s:19:\"blacklist-sandboxed\";b:0;s:16:\"blacklist-status\";s:0:\"\";s:15:\"integrate-wpcf7\";b:0;s:45:\"integrate-woocommerce-track-classic-ecommerce\";b:0;s:46:\"integrate-woocommerce-track-enhanced-ecommerce\";b:1;s:44:\"integrate-woocommerce-product-per-impression\";i:10;s:40:\"integrate-woocommerce-cart-as-first-step\";b:0;s:47:\"integrate-woocommerce-cart-content-in-datalayer\";b:0;s:36:\"integrate-woocommerce-brand-taxonomy\";s:0:\"\";s:33:\"integrate-woocommerce-remarketing\";b:0;s:39:\"integrate-woocommerce-business-vertical\";s:6:\"retail\";s:40:\"integrate-woocommerce-remarketing-usesku\";b:0;s:44:\"integrate-woocommerce-use-full-category-path\";b:0;s:49:\"integrate-woocommerce-remarketing-productidprefix\";s:0:\"\";s:35:\"integrate-woocommerce-customer-data\";b:0;s:32:\"integrate-woocommerce-order-data\";b:0;s:35:\"integrate-woocommerce-order-max-age\";i:30;s:33:\"integrate-woocommerce-exclude-tax\";b:0;s:38:\"integrate-woocommerce-exclude-shipping\";b:0;s:51:\"integrate-woocommerce-do-not-use-order-tracked-flag\";b:0;s:32:\"integrate-google-optimize-idlist\";s:0:\"\";s:33:\"integrate-google-optimize-timeout\";i:4000;s:23:\"integrate-wp-e-commerce\";b:0;s:16:\"integrate-amp-id\";s:0:\"\";s:19:\"integrate-cookiebot\";b:0;}','yes'),(59473,'channel_statics','a:201:{s:13:\"All countries\";a:16:{s:15:\"Google Shopping\";a:6:{s:12:\"channel_hash\";s:32:\"d4cb75caae5a73ac6b01171816b33bfb\";s:4:\"name\";s:15:\"Google Shopping\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:15:\"Google Shopping\";s:4:\"type\";s:11:\"Advertising\";}s:31:\"Google Merchant Promotions Feed\";a:6:{s:12:\"channel_hash\";s:32:\"b139f056f1c86e71d11d0ebbd3bdd948\";s:4:\"name\";s:31:\"Google Merchant Promotions Feed\";s:6:\"fields\";s:26:\"google_shopping_promotions\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Google Shopping\";s:4:\"type\";s:11:\"Advertising\";}s:24:\"Google Remarketing - DRM\";a:6:{s:12:\"channel_hash\";s:32:\"5dd24aca187e3a6b5820868e57043428\";s:4:\"name\";s:24:\"Google Remarketing - DRM\";s:6:\"fields\";s:10:\"google_drm\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:18:\"Google Remarketing\";s:4:\"type\";s:11:\"Advertising\";}s:15:\"Google DSA Feed\";a:6:{s:12:\"channel_hash\";s:32:\"008e1fda379835ba11512429631a792e\";s:4:\"name\";s:12:\"Google - DSA\";s:6:\"fields\";s:10:\"google_dsa\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Google DSA\";s:4:\"type\";s:11:\"Advertising\";}s:26:\"Google Local Products Feed\";a:6:{s:12:\"channel_hash\";s:32:\"26e3e513a3ee25a114910f1e8c619c48\";s:4:\"name\";s:21:\"Google Local Products\";s:6:\"fields\";s:21:\"google_local_products\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:21:\"Google Local Products\";s:4:\"type\";s:11:\"Advertising\";}s:36:\"Google Local Products Inventory Feed\";a:6:{s:12:\"channel_hash\";s:32:\"8e2d11264b29ea626889c6ae07d1858b\";s:4:\"name\";s:31:\"Google Local Products Inventory\";s:6:\"fields\";s:12:\"google_local\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:30:\"Google Local Product Inventory\";s:4:\"type\";s:11:\"Advertising\";}s:26:\"Google Product Review Feed\";a:6:{s:12:\"channel_hash\";s:32:\"338250275238e84c070b18fb7ef5067e\";s:4:\"name\";s:21:\"Google Product Review\";s:6:\"fields\";s:21:\"google_product_review\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:21:\"Google Product Review\";s:4:\"type\";s:11:\"Advertising\";}s:13:\"Bing Shopping\";a:6:{s:12:\"channel_hash\";s:32:\"db9030c52a0642cf6e47df03541dec1c\";s:4:\"name\";s:13:\"Bing Shopping\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:13:\"Bing Shopping\";s:4:\"type\";s:11:\"Advertising\";}s:24:\"Bing Shopping Promotions\";a:6:{s:12:\"channel_hash\";s:32:\"b6a2e990e44fd2882d860d36e033161a\";s:4:\"name\";s:24:\"Bing Shopping Promotions\";s:6:\"fields\";s:26:\"google_shopping_promotions\";s:8:\"taxonomy\";s:26:\"google_shopping_promotions\";s:10:\"utm_source\";s:24:\"Bing Shopping Promotions\";s:4:\"type\";s:11:\"Advertising\";}s:33:\"Facebook Catalog Feed / Instagram\";a:6:{s:12:\"channel_hash\";s:32:\"a80023c048bcf50aa70821992617d970\";s:4:\"name\";s:40:\"Meta / Facebook Catalog Feed / Instagram\";s:6:\"fields\";s:12:\"facebook_drm\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:21:\"Facebook Catalog Feed\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Pinterest\";a:6:{s:12:\"channel_hash\";s:32:\"86709a608bd914b28221164e6680ebf7\";s:4:\"name\";s:9:\"Pinterest\";s:6:\"fields\";s:9:\"pinterest\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:9:\"Pinterest\";s:4:\"type\";s:11:\"Advertising\";}s:7:\"Twitter\";a:6:{s:12:\"channel_hash\";s:32:\"2491bc9c7d8731e1ae33124093bc7026\";s:4:\"name\";s:7:\"Twitter\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:7:\"Twitter\";s:4:\"type\";s:11:\"Advertising\";}s:19:\"Pinterest RSS Board\";a:6:{s:12:\"channel_hash\";s:32:\"6150bd7ad3e007709de90f035ef1615c\";s:4:\"name\";s:19:\"Pinterest RSS Board\";s:6:\"fields\";s:13:\"pinterest_rss\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:19:\"Pinterest RSS Board\";s:4:\"type\";s:11:\"Advertising\";}s:24:\"Snapchat Product Catalog\";a:6:{s:12:\"channel_hash\";s:32:\"b0c642f1d81e0d8e359c6efae6d23007\";s:4:\"name\";s:24:\"Snapchat Product Catalog\";s:6:\"fields\";s:8:\"snapchat\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:8:\"snapchat\";s:4:\"type\";s:11:\"Advertising\";}s:22:\"TikTok Product Catalog\";a:6:{s:12:\"channel_hash\";s:32:\"c18b6f285f37a8f4106611c9a247dffc\";s:4:\"name\";s:22:\"TikTok Product Catalog\";s:6:\"fields\";s:6:\"tiktok\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:6:\"tiktok\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"Vivino\";a:6:{s:12:\"channel_hash\";s:32:\"4f4d30ea9fef64d166fe50c577e7f312\";s:4:\"name\";s:6:\"Vivino\";s:6:\"fields\";s:6:\"vivino\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:6:\"Vivino\";s:4:\"type\";s:11:\"Advertising\";}}s:11:\"Custom Feed\";a:1:{s:11:\"Custom Feed\";a:6:{s:12:\"channel_hash\";s:32:\"b0c1fa7a7dd12cadb7d8be768ce91315\";s:4:\"name\";s:11:\"Custom Feed\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Custom Feed\";s:4:\"type\";s:11:\"Custom Feed\";}}s:11:\"Afghanistan\";a:0:{}s:7:\"Albania\";a:0:{}s:7:\"Algeria\";a:0:{}s:7:\"Andorra\";a:0:{}s:6:\"Angola\";a:0:{}s:14:\"Antigua & Deps\";a:0:{}s:9:\"Argentina\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"6efc3cdaf65f3da218c65281fcfe1bc3\";s:4:\"name\";s:16:\"Shopmania.com.ar\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Shopmania.com.ar\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:7:\"Armenia\";a:0:{}s:9:\"Australia\";a:8:{s:12:\"Catch.com.au\";a:6:{s:12:\"channel_hash\";s:32:\"7116d4b51bb0bdf631df9becc635e8c2\";s:4:\"name\";s:12:\"Catch.com.au\";s:6:\"fields\";s:10:\"catchcomau\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Catch.com.au\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}s:9:\"Kogan.com\";a:6:{s:12:\"channel_hash\";s:32:\"0167abe8de113cca248094c9abdfa9ba\";s:4:\"name\";s:9:\"Kogan.com\";s:6:\"fields\";s:5:\"kogan\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kogan.com\";s:4:\"type\";s:11:\"Marketplace\";}s:15:\"Fruugoaustralia\";a:6:{s:12:\"channel_hash\";s:32:\"b7cb6aa0f80b909311ae54a6230c78f7\";s:4:\"name\";s:19:\"Fruugoaustralia.com\";s:6:\"fields\";s:9:\"fruugoaus\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:19:\"Fruugoaustralia.com\";s:4:\"type\";s:11:\"Marketplace\";}s:12:\"Shopping.com\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Myshopping\";a:6:{s:12:\"channel_hash\";s:32:\"77a755aef80d6b6357f42ca4c298500a\";s:4:\"name\";s:17:\"Myshopping.com.au\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:17:\"Myshopping.com.au\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"a0ddcc639228faef4a9e14d9cb23c809\";s:4:\"name\";s:16:\"Shopmania.com.au\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Shopmania.com.au\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Polyvore.com\";a:6:{s:12:\"channel_hash\";s:32:\"9a9abd8532878629e2b3487c1ad157eb\";s:4:\"name\";s:12:\"Polyvore.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Polyvore.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Austria\";a:0:{}s:10:\"Azerbaijan\";a:0:{}s:7:\"Bahamas\";a:0:{}s:7:\"Bahrain\";a:0:{}s:10:\"Bangladesh\";a:0:{}s:8:\"Barbados\";a:0:{}s:7:\"Belarus\";a:0:{}s:7:\"Belgium\";a:5:{s:12:\"Vergelijk.be\";a:6:{s:12:\"channel_hash\";s:32:\"b14cc501a3a39111ada7d135eecaf1c8\";s:4:\"name\";s:12:\"Vergelijk.be\";s:6:\"fields\";s:11:\"vergelijkbe\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Vergelijk.be\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Comparer.be\";a:6:{s:12:\"channel_hash\";s:32:\"94e9e3ebc8c4d09cf6d5678db730d312\";s:4:\"name\";s:11:\"Comparer.be\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Comparer.be\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Kieskeurig.be\";a:6:{s:12:\"channel_hash\";s:32:\"2775af9e954da0528a1e9e7520d74cd4\";s:4:\"name\";s:13:\"Kieskeurig.be\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Kieskeurig.be\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Beslist.be\";a:6:{s:12:\"channel_hash\";s:32:\"04e1cd6fae01b2a7f92cf228192955c7\";s:4:\"name\";s:10:\"Beslist.be\";s:6:\"fields\";s:7:\"beslist\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Beslist.be\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Bol.com\";a:6:{s:12:\"channel_hash\";s:32:\"304953957ace01b0632a659b05c976fa\";s:4:\"name\";s:7:\"Bol.com\";s:6:\"fields\";s:3:\"bol\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Bol.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:6:\"Belize\";a:0:{}s:5:\"Benin\";a:0:{}s:6:\"Bhutan\";a:0:{}s:7:\"Bolivia\";a:0:{}s:18:\"Bosnia Herzegovina\";a:0:{}s:8:\"Botswana\";a:0:{}s:6:\"Brazil\";a:2:{s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"37071bd1527b16cea909bf9efba4677c\";s:4:\"name\";s:15:\"Stylight.com.br\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Stylight.com.br\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Shopmania\";a:6:{s:12:\"channel_hash\";s:32:\"f106585b820c3ef031c5a4429d84658b\";s:4:\"name\";s:16:\"Shopmania.com.br\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Shopmanie.com.br\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:6:\"Brunei\";a:0:{}s:8:\"Bulgaria\";a:1:{s:9:\"Shopmania\";a:6:{s:12:\"channel_hash\";s:32:\"fb595d74de3599b73a7e2463873db035\";s:4:\"name\";s:12:\"Shopmania.bg\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopmanie.bg\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Burkina\";a:0:{}s:7:\"Burundi\";a:0:{}s:8:\"Cambodia\";a:0:{}s:8:\"Cameroon\";a:0:{}s:6:\"Canada\";a:4:{s:7:\"Incurvy\";a:6:{s:12:\"channel_hash\";s:32:\"b9c15c9c8b92b028ece8171dc10a1dcc\";s:4:\"name\";s:11:\"Incurvy.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Incurvy.com\";s:4:\"type\";s:11:\"Marketplace\";}s:6:\"Kijiji\";a:6:{s:12:\"channel_hash\";s:32:\"9c050ba1834dbd534f2dcf58341bdb49\";s:4:\"name\";s:9:\"Kijiji.ca\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kijiji.ca\";s:4:\"type\";s:11:\"Advertising\";}s:12:\"Polyvore.com\";a:6:{s:12:\"channel_hash\";s:32:\"9a9abd8532878629e2b3487c1ad157eb\";s:4:\"name\";s:12:\"Polyvore.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Polyvore.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Stylight.ca\";a:6:{s:12:\"channel_hash\";s:32:\"25722c8eecf57e6be5d90a7074617dce\";s:4:\"name\";s:11:\"Stylight.ca\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.ca\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:11:\"Cape Verder\";a:0:{}s:19:\"Central African Rep\";a:0:{}s:4:\"Chad\";a:0:{}s:5:\"Chile\";a:1:{s:12:\"Shopmania.cl\";a:6:{s:12:\"channel_hash\";s:32:\"c7b6ca35fa8657536447d821629d883c\";s:4:\"name\";s:12:\"Shopmania.cl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopmania.cl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:5:\"China\";a:0:{}s:8:\"Colombia\";a:0:{}s:7:\"Comoros\";a:0:{}s:5:\"Congo\";a:0:{}s:10:\"Costa Rica\";a:0:{}s:7:\"Croatia\";a:0:{}s:4:\"Cuba\";a:0:{}s:6:\"Cyprus\";a:0:{}s:14:\"Czech Republic\";a:6:{s:13:\"Shop-mania.cz\";a:6:{s:12:\"channel_hash\";s:32:\"8f9ebbc4890cad87750226f60e072f16\";s:4:\"name\";s:13:\"Shop-mania.cz\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Shop-mania.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Kelkoo.cz\";a:6:{s:12:\"channel_hash\";s:32:\"5ea8c05e549f9a84334ac21667ad8348\";s:4:\"name\";s:9:\"Kelkoo.cz\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:5:\"Glami\";a:6:{s:12:\"channel_hash\";s:32:\"374cd7095ff1ddac2b22862387012c79\";s:4:\"name\";s:8:\"Glami.cz\";s:6:\"fields\";s:5:\"glami\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Glami.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Zbozi.cz\";a:6:{s:12:\"channel_hash\";s:32:\"3dc562578553be9862881159004f0017\";s:4:\"name\";s:8:\"Zbozi.cz\";s:6:\"fields\";s:5:\"zbozi\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Zbozi.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopalike.cz\";a:6:{s:12:\"channel_hash\";s:32:\"305720fe0a9ecd993dbf4fa62319f314\";s:4:\"name\";s:12:\"Shopalike.cz\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopalike.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Heureka.cz\";a:6:{s:12:\"channel_hash\";s:32:\"58f2a2d37c2437078ac08e3ea1771673\";s:4:\"name\";s:10:\"Heureka.cz\";s:6:\"fields\";s:7:\"heureka\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Heureka.cz\";s:4:\"type\";s:11:\"Marketplace\";}}s:7:\"Denmark\";a:6:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"15602bd34e4d3e8a319b24328f5e1629\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adform.com\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:11:\"Pricerunner\";a:6:{s:12:\"channel_hash\";s:32:\"543d00bd13951a8155e712c12ac96e99\";s:4:\"name\";s:14:\"Pricerunner.dk\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:14:\"Pricerunner.dk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Shopalike\";a:6:{s:12:\"channel_hash\";s:32:\"d46c69236087665b5439092b3db4af0e\";s:4:\"name\";s:12:\"ShopAlike.dk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopAlike.dk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"f4d56ea28a3b6903c484ec6dfc15fd4b\";s:4:\"name\";s:9:\"Miinto.dk\";s:6:\"fields\";s:9:\"miinto_dk\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.dk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Katoni\";a:6:{s:12:\"channel_hash\";s:32:\"77aae8def5af3ac1136b5977e3f3894f\";s:4:\"name\";s:9:\"Katoni.dk\";s:6:\"fields\";s:6:\"katoni\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Katoni.dk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:8:\"Djibouti\";a:0:{}s:8:\"Dominica\";a:0:{}s:18:\"Dominican Republic\";a:0:{}s:10:\"East Timor\";a:0:{}s:7:\"Ecuador\";a:0:{}s:5:\"Egypt\";a:0:{}s:11:\"El Salvador\";a:0:{}s:17:\"Equatorial Guinea\";a:0:{}s:7:\"Eritrea\";a:0:{}s:7:\"Estonia\";a:0:{}s:8:\"Ethiopia\";a:0:{}s:4:\"Fiji\";a:0:{}s:7:\"Finland\";a:5:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"15602bd34e4d3e8a319b24328f5e1629\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adform.com\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Vertaa.fi\";a:6:{s:12:\"channel_hash\";s:32:\"8eb68a68e5f26a54a96274cf535fdcdf\";s:4:\"name\";s:9:\"Vertaa.fi\";s:6:\"fields\";s:8:\"vertaafi\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Vertaa.fi\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Prisjakt\";a:6:{s:12:\"channel_hash\";s:32:\"a7c74fa1a6dab18191ba2da46450b4d4\";s:4:\"name\";s:8:\"Prisjakt\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:8:\"Prisjakt\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Hintaseuranta\";a:6:{s:12:\"channel_hash\";s:32:\"156bc501056b152b57baed207b1a13b7\";s:4:\"name\";s:16:\"Hintaseuranta.fi\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Hintaseuranta.fi\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:6:\"France\";a:21:{s:9:\"Connexity\";a:6:{s:12:\"channel_hash\";s:32:\"e8ce03e3f24a932e7ac633d37fef1654\";s:4:\"name\";s:9:\"Connexity\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Connexity.com\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"ManoMano\";a:6:{s:12:\"channel_hash\";s:32:\"96cf4957b22a5a4844ae6eeaecdd914e\";s:4:\"name\";s:11:\"ManoMano.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ManoMano.fr\";s:4:\"type\";s:11:\"Marketplace\";}s:7:\"Incurvy\";a:6:{s:12:\"channel_hash\";s:32:\"8f5a5256a7f6fb954be381327445440b\";s:4:\"name\";s:7:\"Incurvy\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Incurvy\";s:4:\"type\";s:11:\"Marketplace\";}s:13:\"Cherchons.com\";a:6:{s:12:\"channel_hash\";s:32:\"6a9697f23060d90ac2d090c6e59fe22d\";s:4:\"name\";s:13:\"Cherchons.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Cherchons.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Choozen.fr\";a:6:{s:12:\"channel_hash\";s:32:\"19041edf315d34d799f1f1608a9baa4d\";s:4:\"name\";s:10:\"Choozen.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Choozen.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Ciao.fr\";a:6:{s:12:\"channel_hash\";s:32:\"dd98d44d496bfb11717dbef588c32a67\";s:4:\"name\";s:7:\"Ciao.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Ciao.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Comparer.fr\";a:6:{s:12:\"channel_hash\";s:32:\"dd6f55470c8b1b90a099d2669befb132\";s:4:\"name\";s:11:\"Comparer.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Comparer.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Idealo.fr\";a:6:{s:12:\"channel_hash\";s:32:\"dfec07026d2a6724bb609bbb9ad1028a\";s:4:\"name\";s:9:\"Idealo.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Idealo.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Kelkoo.fr\";a:6:{s:12:\"channel_hash\";s:32:\"d3f1473a0f4eb16743e7d496a15c0af3\";s:4:\"name\";s:9:\"Kelkoo.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"LeGuide.fr\";a:6:{s:12:\"channel_hash\";s:32:\"598ec5697697e716d95e7a7f12e029d5\";s:4:\"name\";s:10:\"LeGuide.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"LeGuide.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"38ee6eeeb2c68f39c3d0b5759db8ffca\";s:4:\"name\";s:9:\"Miinto.fr\";s:6:\"fields\";s:9:\"miinto_fr\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:16:\"Priceminister.fr\";a:6:{s:12:\"channel_hash\";s:32:\"3b5483411970132dd1ac20a5d080162e\";s:4:\"name\";s:16:\"Priceminister.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Priceminister.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Pricerunner.fr\";a:6:{s:12:\"channel_hash\";s:32:\"cdd7a67023b9761e66d22818731ded4e\";s:4:\"name\";s:14:\"Pricerunner.fr\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:14:\"Pricerunner.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"ShopAlike.fr\";a:6:{s:12:\"channel_hash\";s:32:\"a8a47c7477ab85d695dfbe59c02a9110\";s:4:\"name\";s:12:\"ShopAlike.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopAlike.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"ShopMania.fr\";a:6:{s:12:\"channel_hash\";s:32:\"dc4d5c1673ce330ccd3250236f74974b\";s:4:\"name\";s:12:\"ShopMania.fr\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopping.com\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopzilla.fr\";a:6:{s:12:\"channel_hash\";s:32:\"26347f8580ca8411762c47ba4980642b\";s:4:\"name\";s:12:\"Shopzilla.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopzilla.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Stylefruits.fr\";a:6:{s:12:\"channel_hash\";s:32:\"6e583ed7574776a8e14234fbba0cb5c6\";s:4:\"name\";s:14:\"Stylefruits.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Stylefruits.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Stylight.fr\";a:6:{s:12:\"channel_hash\";s:32:\"4297f0a03b3eb2c1f287788603294543\";s:4:\"name\";s:11:\"Stylight.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Twenga.fr\";a:6:{s:12:\"channel_hash\";s:32:\"b1fd34002f837eaf30af24abdc75f3cb\";s:4:\"name\";s:9:\"Twenga.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Twenga.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:15:\"Webmarchand.com\";a:6:{s:12:\"channel_hash\";s:32:\"5aee3b77e05409685dc54772210c89fa\";s:4:\"name\";s:15:\"Webmarchand.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Webmarchand.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:13:\"French Guiana\";a:0:{}s:5:\"Gabon\";a:0:{}s:6:\"Gambia\";a:0:{}s:7:\"Georgia\";a:0:{}s:7:\"Germany\";a:41:{s:9:\"Connexity\";a:6:{s:12:\"channel_hash\";s:32:\"e8ce03e3f24a932e7ac633d37fef1654\";s:4:\"name\";s:9:\"Connexity\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Connexity.com\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"1f8fd79bdc962ff2bd707095cb9b998e\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:6:\"Adform\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"AdRoll\";a:6:{s:12:\"channel_hash\";s:32:\"66bb51c1b1beb93d13b3232548cd06c1\";s:4:\"name\";s:9:\"AdRoll.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"AdRoll.de\";s:4:\"type\";s:11:\"Advertising\";}s:11:\"ElCheapo.de\";a:6:{s:12:\"channel_hash\";s:32:\"3158228c1b0ef249aa27f74879234938\";s:4:\"name\";s:11:\"ElCheapo.de\";s:6:\"fields\";s:11:\"vergelijknl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ElCheapo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"TheNextAd\";a:6:{s:12:\"channel_hash\";s:32:\"313e53991d222faa60c8654d157adf91\";s:4:\"name\";s:9:\"TheNextAd\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"TheNextAd\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Webgains\";a:6:{s:12:\"channel_hash\";s:32:\"0f30f50891d0306a7560532e75f8d972\";s:4:\"name\";s:11:\"Webgains.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Webgains.de\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Crowdfox\";a:6:{s:12:\"channel_hash\";s:32:\"84536c34ee3130d6bc3cb8a2aca1af65\";s:4:\"name\";s:12:\"Crowdfox.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Crowdfox.com\";s:4:\"type\";s:11:\"Marketplace\";}s:7:\"Real.de\";a:6:{s:12:\"channel_hash\";s:32:\"e014d0bb084768f36664c749a1074631\";s:4:\"name\";s:7:\"Real.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Real.de\";s:4:\"type\";s:11:\"Marketplace\";}s:10:\"Incurvy.de\";a:6:{s:12:\"channel_hash\";s:32:\"a7ebc5d86ba15fe717ce8c53c97ed46f\";s:4:\"name\";s:10:\"Incurvy.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Incurvy.de\";s:4:\"type\";s:11:\"Marketplace\";}s:10:\"Allyouneed\";a:6:{s:12:\"channel_hash\";s:32:\"049fb486d3893e0d6ad644e5860d105d\";s:4:\"name\";s:13:\"Allyouneed.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Allyouneed.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Apomio\";a:6:{s:12:\"channel_hash\";s:32:\"ffc2c824a3baba59aef78fb2aa527778\";s:4:\"name\";s:9:\"Apomio.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Apomio.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Billiger\";a:6:{s:12:\"channel_hash\";s:32:\"960855afe1068c4577ffeea7c14d56f4\";s:4:\"name\";s:11:\"Billiger.de\";s:6:\"fields\";s:8:\"billiger\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Billiger.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Choozen\";a:6:{s:12:\"channel_hash\";s:32:\"7aa805f40ae37f794a1336fe9543a74e\";s:4:\"name\";s:10:\"Choozen.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Choozen.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:4:\"Ciao\";a:6:{s:12:\"channel_hash\";s:32:\"7af3a673866f2ab7525b721549d8d460\";s:4:\"name\";s:7:\"Ciao.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Ciao.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Domodi\";a:6:{s:12:\"channel_hash\";s:32:\"6ec9a3eeb4f64c3d5aaf5e96710178b0\";s:4:\"name\";s:9:\"Domodi.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Domodi.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Fashiola\";a:6:{s:12:\"channel_hash\";s:32:\"1936afcd82ebd5e3545e9fc11ccc353b\";s:4:\"name\";s:11:\"Fashiola.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Fashiola.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Geizhals\";a:6:{s:12:\"channel_hash\";s:32:\"cd92901262dc9fec50419741d2967df9\";s:4:\"name\";s:11:\"Geizhals.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Geishals.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Guenstiger\";a:6:{s:12:\"channel_hash\";s:32:\"91274396f50a1d0bbeb85cacaaa7b128\";s:4:\"name\";s:13:\"Guenstiger.de\";s:6:\"fields\";s:10:\"guenstiger\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Guenstiger.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Hood.de\";a:6:{s:12:\"channel_hash\";s:32:\"5db45e968ba43c2bd407d45b032eed8c\";s:4:\"name\";s:7:\"Hood.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Hood.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Idealo.de\";a:6:{s:12:\"channel_hash\";s:32:\"2ee3561d8c79d18f53203ca765482201\";s:4:\"name\";s:9:\"Idealo.de\";s:6:\"fields\";s:6:\"idealo\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Idealo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Kelkoo.de\";a:6:{s:12:\"channel_hash\";s:32:\"4d910564613d32784060cc2f1a9fd151\";s:4:\"name\";s:9:\"Kelkoo.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Ladenzeile.de\";a:6:{s:12:\"channel_hash\";s:32:\"223d4ab99245b88158fe5baef97bd0a8\";s:4:\"name\";s:13:\"Ladenzeile.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Ladenzeile.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Livingo.de\";a:6:{s:12:\"channel_hash\";s:32:\"79a3d6a445837ab2ec62c291a9c0a8c2\";s:4:\"name\";s:10:\"Livingo.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Livingo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:15:\"Medizinfuchs.de\";a:6:{s:12:\"channel_hash\";s:32:\"182dc45ca30116e3216f82759cc015ee\";s:4:\"name\";s:15:\"Medizinfuchs.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Medizinfuchs.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Miinto.de\";a:6:{s:12:\"channel_hash\";s:32:\"fab6e42f1657ed83bb21f7111a5a7c7d\";s:4:\"name\";s:9:\"Miinto.de\";s:6:\"fields\";s:9:\"miinto_de\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Moebel.de\";a:6:{s:12:\"channel_hash\";s:32:\"490f766df6fc7e0af4330da9894deb4d\";s:4:\"name\";s:9:\"Moebel.de\";s:6:\"fields\";s:6:\"moebel\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Moebel.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"My Best Brands\";a:6:{s:12:\"channel_hash\";s:32:\"453ca2dddfe68601d8cfcb0e98c76a89\";s:4:\"name\";s:15:\"Mybestbrands.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Mybestbrands.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Preis.de\";a:6:{s:12:\"channel_hash\";s:32:\"045f1a0c057d99ce462ae97ac89aa5ca\";s:4:\"name\";s:8:\"Preis.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Preis.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Pricerunner.de\";a:6:{s:12:\"channel_hash\";s:32:\"ea3b639b7af05673e1800526f24d5a1a\";s:4:\"name\";s:14:\"Pricerunner.de\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:14:\"Pricerunner.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Rakuten.de\";a:6:{s:12:\"channel_hash\";s:32:\"de56d454b94ed12c1ef320321a748531\";s:4:\"name\";s:10:\"Rakuten.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Rakuten.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Restposten.de\";a:6:{s:12:\"channel_hash\";s:32:\"d8ace963800514a43bbecdc39080ac10\";s:4:\"name\";s:13:\"Restposten.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Restposten.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopmania.de\";a:6:{s:12:\"channel_hash\";s:32:\"bd851db4983a92fd0964aec473011294\";s:4:\"name\";s:12:\"Shopmania.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopmania.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopping.com\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopzilla.de\";a:6:{s:12:\"channel_hash\";s:32:\"7a63803182a008ed3601eb064778c14e\";s:4:\"name\";s:12:\"Shopzilla.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopzilla.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Sparmedo.de\";a:6:{s:12:\"channel_hash\";s:32:\"226c5d6ef522a955723e39e41d790c95\";s:4:\"name\";s:11:\"Sparmedo.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Sparmedo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Stylefruits.de\";a:6:{s:12:\"channel_hash\";s:32:\"8adce1fb4e054d16a3b808cc2728db5e\";s:4:\"name\";s:14:\"Stylefruits.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Stylefruits.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Stylelounge.de\";a:6:{s:12:\"channel_hash\";s:32:\"b3be5fb5526c2a214a9e2ef33518fe4a\";s:4:\"name\";s:14:\"Stylelounge.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Stylelounge.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Stylight.de\";a:6:{s:12:\"channel_hash\";s:32:\"ad0e620da1822d19bd857d91f58b8c3d\";s:4:\"name\";s:11:\"Stylight.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Twenga.de\";a:6:{s:12:\"channel_hash\";s:32:\"9a43d51ce80705fe2b3ef11e35effc85\";s:4:\"name\";s:9:\"Twenga.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Twenga.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:5:\"Ghana\";a:0:{}s:6:\"Greece\";a:4:{s:7:\"Incurvy\";a:6:{s:12:\"channel_hash\";s:32:\"b9c15c9c8b92b028ece8171dc10a1dcc\";s:4:\"name\";s:7:\"Incurvy\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Incurvy.com\";s:4:\"type\";s:11:\"Marketplace\";}s:7:\"Skroutz\";a:6:{s:12:\"channel_hash\";s:32:\"d4e5a1ae056299a65ce0d2b72b83ac00\";s:4:\"name\";s:7:\"Skroutz\";s:6:\"fields\";s:7:\"skroutz\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Skroutz.gr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Bestprice\";a:6:{s:12:\"channel_hash\";s:32:\"3678b92a2e469b2d32d2918275b54f1b\";s:4:\"name\";s:9:\"Bestprice\";s:6:\"fields\";s:9:\"bestprice\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Bestprice.gr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:5:\"Glami\";a:6:{s:12:\"channel_hash\";s:32:\"5eb6e7e39596930e78c653c83699ef04\";s:4:\"name\";s:8:\"Glami.gr\";s:6:\"fields\";s:5:\"glami\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Glami.gr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Grenada\";a:0:{}s:10:\"Guadeloupe\";a:0:{}s:9:\"Guatemala\";a:0:{}s:6:\"Guinea\";a:0:{}s:13:\"Guinea-Bissau\";a:0:{}s:6:\"Guyana\";a:0:{}s:5:\"Haiti\";a:0:{}s:8:\"Honduras\";a:0:{}s:9:\"Hong Kong\";a:0:{}s:7:\"Hungary\";a:1:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"a4add996b9580ee7f1d08832c974cb0a\";s:4:\"name\";s:12:\"ShopMania.hu\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.hu\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Iceland\";a:0:{}s:5:\"India\";a:1:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"b871141a936ff750db71bd3dfc3b1924\";s:4:\"name\";s:12:\"ShopMania.in\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.in\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:9:\"Indonesia\";a:0:{}s:4:\"Iran\";a:0:{}s:4:\"Iraq\";a:0:{}s:7:\"Ireland\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"3f4759c9332fedd2fa7182d7953793b6\";s:4:\"name\";s:12:\"ShopMania.ie\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.ie\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"7393cbc85411aba928c7443420a65eb1\";s:4:\"name\";s:11:\"Stylight.ie\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.ie\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:6:\"Israel\";a:1:{s:9:\"Zap.co.il\";a:6:{s:12:\"channel_hash\";s:32:\"173421ab95332639b860baf534501a35\";s:4:\"name\";s:9:\"Zap.co.il\";s:6:\"fields\";s:3:\"zap\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Zap.co.il\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:5:\"Italy\";a:7:{s:9:\"ShopAlike\";a:6:{s:12:\"channel_hash\";s:32:\"d5b85ea8d340869b82e98a6ccfb4162d\";s:4:\"name\";s:12:\"ShopAlike.it\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopAlike.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Idealo.it\";a:6:{s:12:\"channel_hash\";s:32:\"0362057dfeec1227d736e028b8f96d87\";s:4:\"name\";s:9:\"Idealo.it\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Idealo.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"03984d720f798a8278f72c4de8b9d13e\";s:4:\"name\";s:12:\"ShopMania.it\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Trovaprezzi\";a:6:{s:12:\"channel_hash\";s:32:\"704d5085f0631c2819207d73bc42324a\";s:4:\"name\";s:14:\"Trovaprezzi.it\";s:6:\"fields\";s:11:\"trovaprezzi\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Trovaprezzi.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"45bcc322af1565f20c6aa534b0b90986\";s:4:\"name\";s:11:\"Stylight.it\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Kijiji\";a:6:{s:12:\"channel_hash\";s:32:\"da45d6e36e7d20a274a4165cc79aebdb\";s:4:\"name\";s:9:\"Kijiji.it\";s:6:\"fields\";s:6:\"kijiji\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kijiji.it\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:11:\"Ivory Coast\";a:0:{}s:7:\"Jamaica\";a:0:{}s:5:\"Japan\";a:1:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"d88609f76a0e1f87c7afd03c839c7cb7\";s:4:\"name\";s:12:\"ShopMania.jp\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.jp\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:6:\"Jordan\";a:0:{}s:10:\"Kazakhstan\";a:0:{}s:5:\"Kenya\";a:0:{}s:8:\"Kiribati\";a:0:{}s:11:\"Korea North\";a:0:{}s:11:\"Korea South\";a:0:{}s:6:\"Kosovo\";a:0:{}s:6:\"Kuwait\";a:0:{}s:10:\"Kyrgyzstan\";a:0:{}s:4:\"Laos\";a:0:{}s:6:\"Latvia\";a:1:{s:12:\"Salidzini.lv\";a:6:{s:12:\"channel_hash\";s:32:\"a935d1752ae3a0636a9e746e64fd3d77\";s:4:\"name\";s:12:\"Salidzini.lv\";s:6:\"fields\";s:9:\"salidzini\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Salidzini.lv\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Lebanon\";a:0:{}s:7:\"Lesotho\";a:0:{}s:7:\"Liberia\";a:0:{}s:5:\"Libya\";a:0:{}s:12:\"Lichtenstein\";a:0:{}s:9:\"Lithuania\";a:0:{}s:10:\"Luxembourg\";a:0:{}s:9:\"Macedonia\";a:0:{}s:10:\"Madagascar\";a:0:{}s:6:\"Malawi\";a:0:{}s:8:\"Malaysia\";a:0:{}s:8:\"Maldives\";a:0:{}s:4:\"Mali\";a:0:{}s:5:\"Malta\";a:0:{}s:16:\"Marshall Islands\";a:0:{}s:10:\"Martinique\";a:0:{}s:10:\"Mauritania\";a:0:{}s:9:\"Mauritius\";a:0:{}s:6:\"Mexico\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"065f36bd06d8a8aedaf3b769c003a320\";s:4:\"name\";s:16:\"ShopMania.com.mx\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"ShopMania.com.mx\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"8d71e67b84160c2dd655c9eb9fa100f3\";s:4:\"name\";s:15:\"Stylight.com.mx\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Stylight.com.mx\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:10:\"Micronesia\";a:0:{}s:7:\"Moldova\";a:0:{}s:6:\"Monaco\";a:0:{}s:8:\"Mongolia\";a:0:{}s:10:\"Montenegro\";a:0:{}s:7:\"Morocco\";a:0:{}s:10:\"Mozambiqua\";a:0:{}s:7:\"Myanmar\";a:0:{}s:7:\"Namibia\";a:0:{}s:5:\"Nauru\";a:0:{}s:5:\"Nepal\";a:0:{}s:11:\"Netherlands\";a:19:{s:12:\"Vergelijk.nl\";a:6:{s:12:\"channel_hash\";s:32:\"7c65ce50e8175aef25d8a8946c0b1368\";s:4:\"name\";s:12:\"Vergelijk.nl\";s:6:\"fields\";s:11:\"vergelijknl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Vergelijk.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Kieskeurig.nl\";a:6:{s:12:\"channel_hash\";s:32:\"15e8f034cbbbc39d612225a650782f2b\";s:4:\"name\";s:13:\"Kieskeurig.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Kieskeurig.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Tweakers.nl\";a:6:{s:12:\"channel_hash\";s:32:\"873e1e4b39d951b129dee8e277319696\";s:4:\"name\";s:11:\"Tweakers.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Tweakers.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Boetiek.nl\";a:6:{s:12:\"channel_hash\";s:32:\"432a39d14c7d8e7fd362027a9a111512\";s:4:\"name\";s:10:\"Boetiek.nl\";s:6:\"fields\";s:7:\"boetiek\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Boetiek.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:15:\"Fashionchick.nl\";a:6:{s:12:\"channel_hash\";s:32:\"4e943c208f8a5c17ba7743cd355cb335\";s:4:\"name\";s:15:\"Fashionchick.nl\";s:6:\"fields\";s:12:\"fashionchick\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Fashionchick.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Kleding.nl\";a:6:{s:12:\"channel_hash\";s:32:\"a87809b5d8a28c0c1928c8b4a74a5aaf\";s:4:\"name\";s:10:\"Kleding.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Kleding.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Hardware.info\";a:6:{s:12:\"channel_hash\";s:32:\"e29f2c729fe2ac1a65e6cff2bc137401\";s:4:\"name\";s:13:\"Hardware.info\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Hardware.info\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Kelkoo.nl\";a:6:{s:12:\"channel_hash\";s:32:\"255bfbafa81ea4f6543f0b0b4d84b3c8\";s:4:\"name\";s:9:\"Kelkoo.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:16:\"Ciao-shopping.nl\";a:6:{s:12:\"channel_hash\";s:32:\"3f89f2f63b515336f47bb15960da3e3b\";s:4:\"name\";s:15:\"Cia-shopping.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Ciao-shopping.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Beslist.nl\";a:6:{s:12:\"channel_hash\";s:32:\"c1dffa4aec7858719db7d59af8e3d1c9\";s:4:\"name\";s:10:\"Beslist.nl\";s:6:\"fields\";s:7:\"beslist\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Beslist.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"47fe5a9cd14e2d763213711ab191138e\";s:4:\"name\";s:9:\"Miinto.nl\";s:6:\"fields\";s:9:\"miinto_nl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Bol.com\";a:6:{s:12:\"channel_hash\";s:32:\"304953957ace01b0632a659b05c976fa\";s:4:\"name\";s:7:\"Bol.com\";s:6:\"fields\";s:3:\"bol\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Bol.com\";s:4:\"type\";s:11:\"Marketplace\";}s:9:\"Fruugo.nl\";a:6:{s:12:\"channel_hash\";s:32:\"59cfba15aef47e3743cdf4e388c6ef6a\";s:4:\"name\";s:9:\"Fruugo.nl\";s:6:\"fields\";s:8:\"fruugonl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Fruugo.nl\";s:4:\"type\";s:11:\"Marketplace\";}s:13:\"Ooshopping.nl\";a:6:{s:12:\"channel_hash\";s:32:\"c4d493daf417220eac8552b1fc1b18b3\";s:4:\"name\";s:13:\"Ooshopping.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Ooshopping.nl\";s:4:\"type\";s:11:\"Marketplace\";}s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"35a45b9c25f457dae6cc6fa782a05ed5\";s:4:\"name\";s:9:\"Adform.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Adform.nl\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"AdRoll\";a:6:{s:12:\"channel_hash\";s:32:\"8e9e4e6cd88fe800934d15a19cfdae90\";s:4:\"name\";s:9:\"AdRoll.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"AdRoll.nl\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"TheNextAd\";a:6:{s:12:\"channel_hash\";s:32:\"313e53991d222faa60c8654d157adf91\";s:4:\"name\";s:9:\"TheNextAd\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"TheNextAd\";s:4:\"type\";s:11:\"Advertising\";}s:20:\"Daisycon huis & tuin\";a:6:{s:12:\"channel_hash\";s:32:\"ee514045c14c37216a57fc50f51ef89d\";s:4:\"name\";s:20:\"Daisycon huis & tuin\";s:6:\"fields\";s:18:\"daisyconhuisentuin\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:8:\"Daisycon\";s:4:\"type\";s:11:\"Advertising\";}}s:11:\"New Zealand\";a:0:{}s:9:\"Nicaragua\";a:0:{}s:5:\"Niger\";a:0:{}s:7:\"Nigeria\";a:0:{}s:6:\"Norway\";a:1:{s:8:\"Prisjakt\";a:6:{s:12:\"channel_hash\";s:32:\"562c39b5a9bce897a6ccf60f8ac5f17f\";s:4:\"name\";s:11:\"Prisjakt.no\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:11:\"Prisjakt.no\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:4:\"Oman\";a:0:{}s:8:\"Pakistan\";a:0:{}s:5:\"Palau\";a:0:{}s:6:\"Panama\";a:0:{}s:16:\"Papua New Guinea\";a:0:{}s:8:\"Paraguay\";a:0:{}s:4:\"Peru\";a:0:{}s:11:\"Philippines\";a:0:{}s:6:\"Poland\";a:6:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"ad2a7c40fe2b4c7b149f4842216ebd35\";s:4:\"name\";s:9:\"Adform.pl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Adform.pl\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Cenowarka\";a:6:{s:12:\"channel_hash\";s:32:\"f99a2427e9fca097e8b082d17cea0ea2\";s:4:\"name\";s:12:\"Cenowarka.pl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Cenowarka.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"0a0431594fd6db28ce32304229ec6c03\";s:4:\"name\";s:9:\"Miinto.pl\";s:6:\"fields\";s:9:\"miinto_pl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopAlike\";a:6:{s:12:\"channel_hash\";s:32:\"8025b4e98abe3a174a6be42c079e184a\";s:4:\"name\";s:12:\"ShopAlike.pl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopAlike.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"d175e3586053ac0807560de4a79cd4a8\";s:4:\"name\";s:12:\"ShopMania.pl\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ShoMania.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Skapiec\";a:6:{s:12:\"channel_hash\";s:32:\"e3beaee26297764b2a1d1520837750fa\";s:4:\"name\";s:10:\"Skapiec.pl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Skapiec.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:8:\"Portugal\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"b8efb0dc3ca9f99f004cbfe5c8b101ad\";s:4:\"name\";s:12:\"ShopMania.pt\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ShoMania.pt\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Kuantokusta\";a:6:{s:12:\"channel_hash\";s:32:\"a1acc82aa0cdecd85c1a4e002492e912\";s:4:\"name\";s:14:\"Kuantokusta.pt\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Kuantokusta.pt\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:5:\"Qatar\";a:0:{}s:7:\"Reunion\";a:0:{}s:7:\"Romania\";a:3:{s:6:\"Okazzi\";a:6:{s:12:\"channel_hash\";s:32:\"21a027b99bad4b38aecc8adbfbc216c0\";s:4:\"name\";s:9:\"Okazzi.ro\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Okazzi.ro\";s:4:\"type\";s:11:\"Marketplace\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"44c4964ed5543059adc680399bf058bc\";s:4:\"name\";s:12:\"ShopMania.ro\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ShoMania.ro\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Compari\";a:6:{s:12:\"channel_hash\";s:32:\"79c8b98c255cea061a47abe5fcac7da4\";s:4:\"name\";s:10:\"Compari.ro\";s:6:\"fields\";s:10:\"compari_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Compari.ro\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:18:\"Russian Federation\";a:1:{s:6:\"Yandex\";a:6:{s:12:\"channel_hash\";s:32:\"62909b17dbeb21fb278c53dfaab9b5b4\";s:4:\"name\";s:6:\"Yandex\";s:6:\"fields\";s:6:\"yandex\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Yandex.com\";s:4:\"type\";s:11:\"Advertising\";}}s:6:\"Rwanda\";a:0:{}s:16:\"St Kitts & Nevis\";a:0:{}s:8:\"St Lucia\";a:0:{}s:27:\"St Vincent & the Grenadines\";a:0:{}s:5:\"Samoa\";a:0:{}s:10:\"San Marino\";a:0:{}s:19:\"Sao Tome & Principe\";a:0:{}s:12:\"Saudi Arabia\";a:0:{}s:7:\"Senegal\";a:0:{}s:6:\"Serbia\";a:1:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"4cace348da378bc016757f6d8c0adda7\";s:4:\"name\";s:12:\"ShopMania.rs\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.rs\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:10:\"Seychelles\";a:0:{}s:12:\"Sierra Leone\";a:0:{}s:9:\"Singapore\";a:0:{}s:8:\"Slovakia\";a:5:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"c8edd9bf39b7345dcccc31d6e1f36c6b\";s:4:\"name\";s:12:\"ShopMania.sk\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.sk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:5:\"Glami\";a:6:{s:12:\"channel_hash\";s:32:\"7a9baabfe9de72bb67c1c3e6a07ecf4f\";s:4:\"name\";s:8:\"Glami.sk\";s:6:\"fields\";s:5:\"glami\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Glami.sk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Heureka.sk\";a:6:{s:12:\"channel_hash\";s:32:\"b40e8dfa2e24d54731805e54b2786af2\";s:4:\"name\";s:10:\"Heureka.sk\";s:6:\"fields\";s:7:\"heureka\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Heureka.sk\";s:4:\"type\";s:11:\"Marketplace\";}s:20:\"Mall.sk availability\";a:6:{s:12:\"channel_hash\";s:32:\"219a77b28af9cdf0e2971172e3b0cb79\";s:4:\"name\";s:20:\"Mall.sk availability\";s:6:\"fields\";s:17:\"mall_availability\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:20:\"Mall.sk availability\";s:4:\"type\";s:11:\"Marketplace\";}s:17:\"Mall.sk main feed\";a:6:{s:12:\"channel_hash\";s:32:\"37c5133028c11d1fabb1fd8c3cad24ce\";s:4:\"name\";s:7:\"Mall.sk\";s:6:\"fields\";s:4:\"mall\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Mall.sk\";s:4:\"type\";s:11:\"Marketplace\";}}s:8:\"Slovenia\";a:0:{}s:15:\"Solomon Islands\";a:0:{}s:12:\"South Africa\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"5984c2f6e246266d4b88f80d3ff9210a\";s:4:\"name\";s:15:\"ShopMania.co.za\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"ShopMania.co.za\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Pricecheck\";a:6:{s:12:\"channel_hash\";s:32:\"b4fe8c3f2868abb8bb89569c95f314d4\";s:4:\"name\";s:16:\"Pricecheck.co.za\";s:6:\"fields\";s:10:\"pricecheck\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Pricecheck.co.za\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:11:\"South Sudan\";a:0:{}s:5:\"Spain\";a:3:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"1f8fd79bdc962ff2bd707095cb9b998e\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:6:\"Adform\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Fruugoes\";a:6:{s:12:\"channel_hash\";s:32:\"19e52a8d2cb905e967e231022ffc8b68\";s:4:\"name\";s:9:\"Fruugo.es\";s:6:\"fields\";s:8:\"fruugoes\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Fruugo.es\";s:4:\"type\";s:11:\"Marketplace\";}s:6:\"Kelkoo\";a:6:{s:12:\"channel_hash\";s:32:\"169ef51d74066baa613278db8df0c094\";s:4:\"name\";s:9:\"Kelkoo.es\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.es\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:9:\"Sri Lanka\";a:0:{}s:5:\"Sudan\";a:0:{}s:8:\"Suriname\";a:0:{}s:9:\"Swaziland\";a:0:{}s:6:\"Sweden\";a:6:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"1f8fd79bdc962ff2bd707095cb9b998e\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:6:\"Adform\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"Kelkoo\";a:6:{s:12:\"channel_hash\";s:32:\"91fca891b978f27aaf7d5720f536c574\";s:4:\"name\";s:9:\"Kelkoo.se\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Fyndiq\";a:6:{s:12:\"channel_hash\";s:32:\"f35224b877d2273ba263ac2840bf2bea\";s:4:\"name\";s:9:\"Fyndiq.se\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Fyndiq.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Pricerunner\";a:6:{s:12:\"channel_hash\";s:32:\"26945ba0952a27dd18bc50e82af2129d\";s:4:\"name\";s:14:\"Pricerunner.se\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:14:\"Pricerunner.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"7f0b78dceb15aafbe3165d830b19212b\";s:4:\"name\";s:9:\"Miinto.se\";s:6:\"fields\";s:9:\"miinto_se\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Prisjakt\";a:6:{s:12:\"channel_hash\";s:32:\"7eec67ad2626bb55796b9d2fe989f88a\";s:4:\"name\";s:11:\"Prisjakt.se\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:11:\"Prisjakt.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:11:\"Switzerland\";a:2:{s:8:\"Kauftipp\";a:6:{s:12:\"channel_hash\";s:32:\"426be23b8b34568dec4c165980bcab1c\";s:4:\"name\";s:11:\"Kauftipp.ch\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Kauftipp.ch\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Ricardo\";a:6:{s:12:\"channel_hash\";s:32:\"8ee69ba8d4af2a3784c4a89b6ccc008b\";s:4:\"name\";s:10:\"Ricardo.ch\";s:6:\"fields\";s:7:\"ricardo\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Ricardo.ch\";s:4:\"type\";s:11:\"Marketplace\";}}s:5:\"Syria\";a:0:{}s:6:\"Taiwan\";a:0:{}s:10:\"Tajikistan\";a:0:{}s:8:\"Tanzania\";a:0:{}s:8:\"Thailand\";a:0:{}s:4:\"Togo\";a:0:{}s:5:\"Tonga\";a:0:{}s:17:\"Trinidad & Tobago\";a:0:{}s:7:\"Tunesia\";a:0:{}s:6:\"Turkey\";a:0:{}s:12:\"Turkmenistan\";a:0:{}s:6:\"Tuvalu\";a:0:{}s:6:\"Uganda\";a:0:{}s:7:\"Ukraine\";a:1:{s:6:\"Yandex\";a:6:{s:12:\"channel_hash\";s:32:\"62909b17dbeb21fb278c53dfaab9b5b4\";s:4:\"name\";s:6:\"Yandex\";s:6:\"fields\";s:6:\"yandex\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Yandex.com\";s:4:\"type\";s:11:\"Advertising\";}}s:20:\"United Arab Emirates\";a:0:{}s:14:\"United Kingdom\";a:24:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"15602bd34e4d3e8a319b24328f5e1629\";s:4:\"name\";s:10:\"Adform.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adform.com\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"AdRoll\";a:6:{s:12:\"channel_hash\";s:32:\"9c53b1f00d16db52f75c54a886cb256d\";s:4:\"name\";s:10:\"AdRoll.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"AdRoll.com\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Connexity\";a:6:{s:12:\"channel_hash\";s:32:\"e8ce03e3f24a932e7ac633d37fef1654\";s:4:\"name\";s:13:\"Connexity.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Connexity.com\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"TheNextAd\";a:6:{s:12:\"channel_hash\";s:32:\"556cd1fe29e03ee70606df062aa10bb1\";s:4:\"name\";s:9:\"TheNextAd\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"TheNextAd.com\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Fruugouk\";a:6:{s:12:\"channel_hash\";s:32:\"7488cf7f3b5a112308b5d2f6851dd9ad\";s:4:\"name\";s:12:\"Fruugo.co.uk\";s:6:\"fields\";s:8:\"fruugouk\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Fruugo.co.uk\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"ManoMano\";a:6:{s:12:\"channel_hash\";s:32:\"d2a2f51263047e14c773b25b44c66cc8\";s:4:\"name\";s:14:\"ManoMano.co.uk\";s:6:\"fields\";s:8:\"manomano\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"ManoMano.co.uk\";s:4:\"type\";s:11:\"Marketplace\";}s:7:\"Choozen\";a:6:{s:12:\"channel_hash\";s:32:\"f7bef404d973147066d95b8c809f5bc7\";s:4:\"name\";s:13:\"Choozen.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Choozen.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:4:\"Ciao\";a:6:{s:12:\"channel_hash\";s:32:\"f0f5e767cd40f159986b57fc4d7a7a64\";s:4:\"name\";s:10:\"Ciao.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Ciao.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Dooyoo\";a:6:{s:12:\"channel_hash\";s:32:\"0a1dca5316beebc521923df1dafde621\";s:4:\"name\";s:12:\"Dooyoo.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Dooyoo.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Idealo\";a:6:{s:12:\"channel_hash\";s:32:\"ba5724e97b78754cb4606754ff21ed54\";s:4:\"name\";s:12:\"Idealo.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Idealo.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Kelkoo\";a:6:{s:12:\"channel_hash\";s:32:\"bc5b6aa38b73d892e63ecd6f0bf01dd1\";s:4:\"name\";s:12:\"Kelkoo.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Kelkoo.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Pricegrabber\";a:6:{s:12:\"channel_hash\";s:32:\"19b0196034fbc680856cd8f1e2636be5\";s:4:\"name\";s:18:\"Pricegrabber.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:18:\"Pricegrabber.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Priceminister\";a:6:{s:12:\"channel_hash\";s:32:\"409626c96e7581f6e4021c2a7b1ed5d6\";s:4:\"name\";s:17:\"Priceminister.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:17:\"Priceminister.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Pricerunner\";a:6:{s:12:\"channel_hash\";s:32:\"1d289e47be23e15e62dc8c32b21f35bb\";s:4:\"name\";s:17:\"Pricerunner.co.uk\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:17:\"Pricerunner.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Pricespy\";a:6:{s:12:\"channel_hash\";s:32:\"333dd17eef54033cfbfe71b4fad7561b\";s:4:\"name\";s:14:\"Pricespy.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Pricespy.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Rakuten\";a:6:{s:12:\"channel_hash\";s:32:\"eb015c280c201c7fd4c82814f494081c\";s:4:\"name\";s:11:\"Rakuten.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Rakuten.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"04c3d36f8931862316f0b7566d618ad2\";s:4:\"name\";s:15:\"ShapMania.co.uk\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"ShopMania.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopping.com\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Shopzilla\";a:6:{s:12:\"channel_hash\";s:32:\"949dd6b0b76423daad4135f4d25f41bd\";s:4:\"name\";s:15:\"Shopzilla.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Shopzilla.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Skinflint\";a:6:{s:12:\"channel_hash\";s:32:\"d103e9a8fbd63eaad89195540b8a49ce\";s:4:\"name\";s:15:\"Skinflint.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Skinflint.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"a9ae78bf41067eefedfcfdc2c2a31cce\";s:4:\"name\";s:14:\"Stylight.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Stylight.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Twenga\";a:6:{s:12:\"channel_hash\";s:32:\"68d4e9f5d94b048f613cd975f59e6429\";s:4:\"name\";s:12:\"Twenga.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Twenga.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:13:\"United States\";a:16:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"15602bd34e4d3e8a319b24328f5e1629\";s:4:\"name\";s:10:\"Adform.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adform.com\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"AdRoll\";a:6:{s:12:\"channel_hash\";s:32:\"9c53b1f00d16db52f75c54a886cb256d\";s:4:\"name\";s:10:\"Adroll.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adroll.com\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Connexity\";a:6:{s:12:\"channel_hash\";s:32:\"e8ce03e3f24a932e7ac633d37fef1654\";s:4:\"name\";s:13:\"Connexity.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Connexity.com\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"ShareASale\";a:6:{s:12:\"channel_hash\";s:32:\"d9f4300c517acf7fcd76a4008dc36d05\";s:4:\"name\";s:10:\"ShareASale\";s:6:\"fields\";s:10:\"shareasale\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"ShareASale\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"TheNextAd\";a:6:{s:12:\"channel_hash\";s:32:\"313e53991d222faa60c8654d157adf91\";s:4:\"name\";s:9:\"TheNextAd\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"TheNextAd\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"Fruugo\";a:6:{s:12:\"channel_hash\";s:32:\"bfd48c235251bf2078a514a7520d6e10\";s:4:\"name\";s:9:\"Fruugo.us\";s:6:\"fields\";s:8:\"fruugous\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Fruugo.us\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"Polyvore\";a:6:{s:12:\"channel_hash\";s:32:\"88cece5a7ed3b6ce7e0f5679d1e2df89\";s:4:\"name\";s:12:\"Polyvore.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Polyvore.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Pricegrabber\";a:6:{s:12:\"channel_hash\";s:32:\"90a65c65552866697ff71feb202bdf35\";s:4:\"name\";s:16:\"Pricegrabber.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Pricegrabber.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"2b3f8be1c51261db7cec1f6ce324b720\";s:4:\"name\";s:13:\"ShopMania.com\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"ShopMania.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Shopping\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Shopzilla\";a:6:{s:12:\"channel_hash\";s:32:\"3de19c070f475cb55abe83e65fe97ee6\";s:4:\"name\";s:13:\"Shopzilla.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Shopzilla.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"f8ee4c4dd073862740839b37b5eecbd3\";s:4:\"name\";s:12:\"Stylight.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Stylight.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Twenga\";a:6:{s:12:\"channel_hash\";s:32:\"db8273f5de4d66493cb0d1b804b88564\";s:4:\"name\";s:10:\"Twenga.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Twenga.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Yandex\";a:6:{s:12:\"channel_hash\";s:32:\"62909b17dbeb21fb278c53dfaab9b5b4\";s:4:\"name\";s:6:\"Yandex\";s:6:\"fields\";s:6:\"yandex\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Yandex.com\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:7:\"Uraguay\";a:0:{}s:10:\"Uzbekistan\";a:0:{}s:7:\"Vanuatu\";a:0:{}s:12:\"Vatican City\";a:0:{}s:9:\"Venezuela\";a:0:{}s:7:\"Vietnam\";a:0:{}s:5:\"Yemen\";a:0:{}s:6:\"Zambia\";a:0:{}s:8:\"Zimbabwe\";a:0:{}}','no'),(59474,'woosea_extra_attributes','a:4:{s:29:\"custom_attributes__woosea_mpn\";s:10:\"woosea mpn\";s:30:\"custom_attributes__woosea_gtin\";s:11:\"woosea gtin\";s:29:\"custom_attributes__woosea_ean\";s:10:\"woosea ean\";s:31:\"custom_attributes__woosea_brand\";s:12:\"woosea brand\";}','yes'),(59475,'structured_data_fix','no','yes'),(59476,'woosea_first_activation','1678667432','yes'),(59477,'woosea_count_activation','1','yes'),(59491,'cron_projects','a:1:{i:0;a:37:{s:12:\"channel_hash\";s:32:\"d4cb75caae5a73ac6b01171816b33bfb\";s:4:\"name\";s:15:\"Google Shopping\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:15:\"Google Shopping\";s:4:\"type\";s:11:\"Advertising\";s:11:\"projectname\";s:10:\"Flux TS US\";s:9:\"countries\";s:13:\"United States\";s:18:\"product_variations\";s:2:\"on\";s:10:\"fileformat\";s:3:\"xml\";s:4:\"cron\";s:5:\"daily\";s:4:\"step\";s:3:\"100\";s:12:\"project_hash\";s:32:\"2TiKGw3JRcNw7r4ddfi8JVpCTsAVzMqU\";s:8:\"filename\";s:32:\"2TiKGw3JRcNw7r4ddfi8JVpCTsAVzMqU\";s:13:\"external_file\";s:114:\"https://www.nl.ecom-expansion.com/wp-content/uploads/woo-product-feed-pro/xml/2TiKGw3JRcNw7r4ddfi8JVpCTsAVzMqU.xml\";s:9:\"query_log\";s:88:\"https://www.nl.ecom-expansion.com/wp-content/uploads/woo-product-feed-pro/logs/query.log\";s:16:\"query_output_log\";s:95:\"https://www.nl.ecom-expansion.com/wp-content/uploads/woo-product-feed-pro/logs/query_output.log\";s:19:\"nonce_field_mapping\";s:10:\"86c926c0d4\";s:10:\"attributes\";a:15:{i:0;a:5:{s:8:\"rowCount\";s:1:\"0\";s:9:\"attribute\";s:4:\"g:id\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:2:\"id\";s:6:\"suffix\";s:0:\"\";}i:1;a:5:{s:8:\"rowCount\";s:1:\"1\";s:9:\"attribute\";s:7:\"g:title\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:5:\"title\";s:6:\"suffix\";s:0:\"\";}i:2;a:5:{s:8:\"rowCount\";s:1:\"2\";s:9:\"attribute\";s:13:\"g:description\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:11:\"description\";s:6:\"suffix\";s:0:\"\";}i:3;a:5:{s:8:\"rowCount\";s:1:\"3\";s:9:\"attribute\";s:6:\"g:link\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:4:\"link\";s:6:\"suffix\";s:0:\"\";}i:4;a:5:{s:8:\"rowCount\";s:1:\"4\";s:9:\"attribute\";s:12:\"g:image_link\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:5:\"image\";s:6:\"suffix\";s:0:\"\";}i:5;a:5:{s:8:\"rowCount\";s:1:\"5\";s:9:\"attribute\";s:14:\"g:availability\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:12:\"availability\";s:6:\"suffix\";s:0:\"\";}i:6;a:5:{s:8:\"rowCount\";s:1:\"6\";s:9:\"attribute\";s:7:\"g:price\";s:6:\"prefix\";s:3:\"USD\";s:7:\"mapfrom\";s:5:\"price\";s:6:\"suffix\";s:0:\"\";}i:7;a:5:{s:8:\"rowCount\";s:1:\"7\";s:9:\"attribute\";s:25:\"g:google_product_category\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:10:\"categories\";s:6:\"suffix\";s:0:\"\";}i:8;a:5:{s:8:\"rowCount\";s:1:\"8\";s:9:\"attribute\";s:14:\"g:product_type\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:14:\"raw_categories\";s:6:\"suffix\";s:0:\"\";}i:9;a:5:{s:8:\"rowCount\";s:1:\"9\";s:9:\"attribute\";s:7:\"g:brand\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:0:\"\";s:6:\"suffix\";s:0:\"\";}i:10;a:5:{s:8:\"rowCount\";s:2:\"10\";s:9:\"attribute\";s:6:\"g:gtin\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:3:\"sku\";s:6:\"suffix\";s:0:\"\";}i:11;a:5:{s:8:\"rowCount\";s:2:\"11\";s:9:\"attribute\";s:5:\"g:mpn\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:0:\"\";s:6:\"suffix\";s:0:\"\";}i:12;a:6:{s:8:\"rowCount\";s:2:\"12\";s:9:\"attribute\";s:19:\"g:identifier_exists\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:5:\"FALSE\";s:12:\"static_value\";s:4:\"true\";s:6:\"suffix\";s:0:\"\";}i:13;a:5:{s:8:\"rowCount\";s:2:\"13\";s:9:\"attribute\";s:11:\"g:condition\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:9:\"condition\";s:6:\"suffix\";s:0:\"\";}i:14;a:5:{s:8:\"rowCount\";s:2:\"14\";s:9:\"attribute\";s:15:\"g:item_group_id\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:13:\"item_group_id\";s:6:\"suffix\";s:0:\"\";}}s:6:\"addrow\";s:1:\"1\";s:22:\"nonce_category_mapping\";s:10:\"a3f21e1c84\";s:21:\"nonce_filters_mapping\";s:10:\"a3f21e1c84\";s:20:\"nonce_google_mapping\";s:10:\"a3f21e1c84\";s:6:\"utm_on\";s:2:\"on\";s:10:\"utm_medium\";s:3:\"cpc\";s:12:\"utm_campaign\";s:10:\"Flux TS US\";s:8:\"utm_term\";s:2:\"id\";s:11:\"utm_content\";s:0:\"\";s:29:\"total_product_orders_lookback\";s:0:\"\";s:11:\"woosea_page\";s:9:\"analytics\";s:6:\"active\";b:1;s:12:\"last_updated\";s:17:\"16 Mar 2023 08:56\";s:7:\"running\";s:5:\"ready\";s:11:\"nr_products\";i:3420;s:21:\"nr_products_processed\";i:0;s:14:\"project_update\";s:3:\"yes\";s:16:\"history_products\";a:3:{s:17:\"13 Mar 2023 11:55\";i:603;s:17:\"15 Mar 2023 08:30\";i:406;s:17:\"16 Mar 2023 09:40\";i:603;}}}','no'),(66188,'mwp_service_key','a83a4bff-12e9-4de5-b305-bc5dbebe139e','yes'),(66191,'mwp_openssl_parameters','a:2:{s:4:\"time\";i:1700751052;s:7:\"working\";b:1;}','yes'),(66192,'mwp_incremental_update_active','','yes'),(66199,'worker_migration_version','2','yes'),(66204,'mwp_public_keys_refresh_time','1700410197','yes'),(66205,'mwp_public_keys','a:14:{i:0;a:6:{s:2:\"id\";s:15:\"wpps_1696597502\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2023-10-21 13:05:01\";s:7:\"validTo\";s:19:\"2023-11-22 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2sGa2r2LuLLlHbdgQygw\nNG1vIa3C84L6uVevcwUaZvsvUAmGkFn4mvs2cYowawJZoepMcJNnh52Yt7mjN159\nRzd2UIKC0yoAA4qhVaw9oi2W6guntOPOm1PHFymHP52AQAwwpXmxtHN4dndZ8Bie\nEsWnz05qZlXMmdC03oLm31+gjC1MAA9Ke17c/ld+yvtDzbyWJuC5UlmUUH9uH3q6\natHqyr2GKPFgV/VTjzy4j4S4WLBovMh9U5S0xGOOcpZrrCb3PXct8rvhqH+ZA5D5\nT6WWkeoqYO7O/ID0BRJcFIpZkxBzZZxbP5+2XMJ9tUXuguf6YMU/0NPyUo5StavE\ngwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:1;a:6:{s:2:\"id\";s:15:\"mwp1_1696687502\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2023-10-22 14:05:01\";s:7:\"validTo\";s:19:\"2023-11-23 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxHMxbcxKI4+jS3ihZf5r\nliLNgsQjH8aJwkj2qfn1YzGs8K0bbe5qUP9wIcNZKuum5zqPl8bDz3AGwdxWjGPX\n+Z7/3XTDnrg599eJhzDbcczaRW11sXQg3TS4zAkl0xBc9KMNOc9RNzfO11AZ1EbA\n9ajjkeK/RAy1X43kpJKL8EKwsYyjSJFyr4cbplZmXtmFqoIH6NRRjigyfCWziUqm\nzOdSmmA+ibUsMmLwgg1FmThX5G8e+Hx1TwzlXtz12D1PCMC3MeXFrHojSKhiA8Mz\nOKssavFrfdVT0BtUwNgGYMbuhwLDyC23J9JFO6wPgfHejrZTIAROnuev80btRJSK\nrQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:2;a:6:{s:2:\"id\";s:20:\"migration_1696943102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2023-10-25 13:05:02\";s:7:\"validTo\";s:19:\"2023-11-26 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2IBstIr0O2yd4HXQ2kLS\n9ONW5xgSPFlGGusqjOSATN1WcI3YmYzo+qp4aJF3imyxKP6n1SnlwEGuqfrYhKtA\nECAHitrBVqgqSnGwA3RrbnL74Km3e4sqT/FxDqdzIKwsY0Emxezgbj/PszkRMWdY\nT83k2f8pwqnmKP3USdbnYdEGeE12dquYlNkeEqcyaTcb37K2IJ1LxDb+sxhUD3wl\nJzfqnL4T/LaT6AU6pwxYgAVkn4ZiFuampZDMmQ3A98BvByrjOe6q1DcoDrKtIkH+\nrzetCygUnbJSuxDqsXGp8dL6ERdDtegejwgxEHnR+1+sL+wZWUemTtNOAXpvD9tj\n3QIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:3;a:6:{s:2:\"id\";s:19:\"managewp_1696989902\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2023-10-26 01:26:15\";s:7:\"validTo\";s:19:\"2023-11-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4GKXDop+FOWmA72l0FgD\nICWOCrXKpE3vFedXvQojgIALHTq5tIc3HhyhitTvE8xueE/H5kxCs+aG9DuakiGo\ncs1bGjd86d1ham+YwsNBCZcUn3cnru9shsS4L2hq7jaap7WfWIxWHppW8HOG10WT\nm66TJ6HUCg0LuLvux/M3NO1lWvETqD16xzVUPoxkoxu+OqqGpC7KNZO9LEw6f9Oq\n1HD/7ZFzCZLmUvVUkC9RqWcgE5XWRiGR//VAt0ZCCt4NUV5FtF3gnUG5xKdS0KGq\nV7HgwsgDulv6GspsRVyIfLSJKRLFUXXB0d+9ruMJIDuDDpJ1FeTAbzMq6jcpwmuz\nyQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:4;a:6:{s:2:\"id\";s:23:\"managewp_dev_1696989902\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2023-10-26 01:26:15\";s:7:\"validTo\";s:19:\"2023-11-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0AnIEni3WLoMX7nWKgh1\nYIVjYKR7GWdX+bdmKPq/JP/w7uSB3EU+C1nmH1+eySmdnEWQ7Z1ft5aVfWzglUTK\nnIr3GLhDzsDgPrYIdTHR7DXDNwEo/RY1a+pM+UQLs1UdgNupFrpsBb+xEFnp3zjD\nphpeh5yMPOsnwE6/IaMngpMhluHD+CLoKuZfW6MkHBbKIzzqeA99cSTjkv1HSXCJ\nqkNhxhAwoze0uNO2rJh87XTxU8eHnG3LvLEbDRND8iTebPBuRGp+mGveUeC/B5Q/\nh/VsoEnOxedYtYRbSzJ1d93UnLL/Mn8Qq2AJdMJyYtLV1viIMqjLVUQyalULH65W\nvQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:5;a:6:{s:2:\"id\";s:16:\"mwp20_1696989902\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2023-10-26 01:26:15\";s:7:\"validTo\";s:19:\"2023-11-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAna/J9ewyDsNLkXINsmLN\nucuapA3G4kit+HyL5gkblb2hYVIiFVlGAlpH5hEX9hp2dfEgmVzMStEIHUEjXIh/\ntESDP+S056WqLa9uL88lPBd+XXv8gAMzbYoXuAcLqsteYyfq8aKtBAnxOE4IiPI6\ni2Zjw3tVZxYs0DE/Ql3DOItEzEF7E94Tg2JcU3gdtbfGS4zfGZyG6dJbtypQ9Qgp\nQ6bPTQRepgAFvnVB6wcMGURe+wZ4q/x6HvMJoLoNuSUzzN+lrw9zc8Wf5DAv0REf\ntOkatdWeKhW468LtNP487qX4MHd8Kz4tjjf1txfc9qCeYRGtNSHUcwpCb4DvFG9d\n/wIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:6;a:6:{s:2:\"id\";s:25:\"cookie_service_1697982105\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2023-11-04 16:27:25\";s:7:\"validTo\";s:19:\"2023-12-06 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtf09Ufc/D+XaGA67M9kn\nYk6L86RUmnhh7cXzraJjoaGDT44GTQhOwzqG2FY7J6slRymHlyL1xQ8++QN1ncXY\nb9CEX629wD/GMPInSCczOj35E0BjZotk95Dv0ylAf9Q/8TkHkPYcm6NbVn3Kl7P/\nT9ID8cBC/sKhHEriYplocV5yHcHV2fWsUOgHgCrpfCmf6aL9caXGz0tOMH8DhQJd\n1s4Xfbg0EAoNkns6LseNwoQZakQmLF5A5YbliZGlLr9RVpF75ou+JZfU5gC8f/+f\n4QyFL4wke1a3oyKd2E6d1OVN2EqpKU4WxrxDWnyITeuyq0k0Hl74M1HrdnMMAoOx\nlQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:7;a:6:{s:2:\"id\";s:27:\"wpps_new_account_1698937501\";s:7:\"service\";s:16:\"wpps_new_account\";s:9:\"validFrom\";s:19:\"2023-11-17 14:14:30\";s:7:\"validTo\";s:19:\"2023-12-19 14:14:30\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAux3SeOt6EDs4UUC8B7Rb\nthifEMrMt+3DDnW3NMKv/hfmBXrZQGvH6VPVRsGlphV4Ne1Y0NhLuUIvisSIIX9W\nFkHBi4ku2GAMKVrR3uKzmSxGOn7o7jLbh1VvFEUa94XTkb4X1mA49M1vu1oyJtSk\nsh5OL/zk2lqrZPcNGLzAz3ZECDrQo4shdcosMLEDIOjdlIQ1NaJekdgDwKSpoG2y\npAJEFeHQY/xaOrl+jvIxYKSAmm4NyB4ZAGfYRvbjN+7wL5Neb5IHRpul0Q/kIQNS\nlgcLS5OP2rerMu9OPkSs6LZ88xLGjTtKYTZdTkzDiHmd79eyT54CMLQxAlmX61Mh\nzwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:8;a:6:{s:2:\"id\";s:15:\"wpps_1699189502\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2023-11-20 13:05:01\";s:7:\"validTo\";s:19:\"2023-12-22 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAu8T52P1PlElpxOrCXYGA\n/N1kGygFHx3cQliHahRgnqMkxt/rggZnvrzAmUv76ycfV3twEcSk2FZ/zUdZZm8u\nHzyFp6E2HK98ZDMuFQ6Fsn3Vlg/wljWkE/RPJY3Lv8Zg/wypx5m1O2H0MaOMTfXG\nPOs1omZE23RXeyBc7CiAkLa3khRY21QvTeIo/NMbFHuP5q9v9+tRQq3GfBN/lnK6\n9H1RmAZ0Rw1NUlT704lNa/6PCacRH/DuaJU9Dh323h/0jemf/QdpAGIteeuZC31P\nxZCtxjRglWxzi+in2WIWUl0jIsUrJ2SqXDXNPKnlUDBoYENs2rVIDjZF+f0DztH1\npQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:9;a:6:{s:2:\"id\";s:15:\"mwp1_1699279501\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2023-11-21 14:05:01\";s:7:\"validTo\";s:19:\"2023-12-23 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv7t05lQ59kgOy0DYC8aH\nTNPtFcbhW/G5JEJ9yS6NQ1uiYr3Ad96nmlzV+dBG4kJsKbEO+6YVGu4gmadr8Wq6\n4uKW9qRa9Mg0vYCIO0CS3VxSR/Pf72BznmOGdsxsXv6edn7HVOe007riDicY7rVD\n0So1ZXDdMKX7aqXrJUmXEURXgvxL6mQqt7anqFkIS02RAiCRrWQN0mDqnJJg/vtc\nSnzSEm405WEDpc/taKZwvzvlZHZ2N4NBVypOLzu+VKsmOrzk5JFML14XfqfsAppK\ndjXZU/2hmJNpcvME6dOQAKDq4qf/weI5O5pQFZxbscFcVdbbms0J8GfCONs0o1mV\nbwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:10;a:6:{s:2:\"id\";s:20:\"migration_1699535102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2023-11-24 13:05:02\";s:7:\"validTo\";s:19:\"2023-12-26 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq2t4SE1DEn+tUJz3zxqc\ncub3ZqPi/tFp68lzog31+sY6kN+PolK6hryBEPo+K1btTsgpzv7G1U+EaxxNaSBw\nma6TJk91hwJns1fJ5OnNo5beiHAyc5hyygTwK0cOBc0u1z2v/1D0nUQ8B1MeCkqn\nFbyQ7i2j3TcXo9K994MX43f9r2a55tpwPeV34uwscz/+9E3y9/Z1lH7LloVi4Edl\nm4l+s9OCZIeTAtPG71XhkcVpsjeA+OHa2h16wfC0SC2yGr10cXn4aTi8QHpCMlGb\nIxz2qSVYvtjNL3MlPxNBWSXVrT5zY4Vl6ontwzbHKc4i/1ahYu/IK6QjxqFa2iIe\nRwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:11;a:6:{s:2:\"id\";s:19:\"managewp_1699581902\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2023-11-25 01:26:15\";s:7:\"validTo\";s:19:\"2023-12-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArZ4A5Vs56xXDSXOeNwjl\neg24EUY3Oesv4VSV3OgCQ6626D9Hz5KYP1uzNsbbLoTFrkLP5WE0N8BcHutPHu24\n25uwZ2XXrbTd7Bo1jLAxFTep1SxzyP0GnkwCwGaenOe51Vf7kmTUeSQjoBi8N7c0\nhYs3+/I+2QKHeqaYLAJT4NljroIijZMSeIQo/acZYtYGm1KWKB4DdhrlTzYqIDiN\n4kywFtQ2X9yZ/VkB1vdJ/BkGaW+/OkOXW2MAAP8FdDY6bYGSdYau7ezvEi8pg9Jt\n1nnfKYcuH/iKBJ4gthmFnsEVfbxbCunWB5Fk5jk9HLpuwAyPK238YniOdFOirqJm\nswIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:12;a:6:{s:2:\"id\";s:23:\"managewp_dev_1699581903\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2023-11-25 01:26:15\";s:7:\"validTo\";s:19:\"2023-12-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwwyn3DLlwPfCMSUtKpTi\nstgHRWCyuSvtMXHn2VzI7q3tTkxwtYKp+sn6C+SvpF4PpdBGS9BW2XYnWTfulGx3\nGEd9xXtzvp8e2d/RX5n/ORrU6CWNKJLwQG3QoE4sm6kp7CDnb12At629yqSjy4/2\ny5gPWgKKYR4E9A3uW5TV5f9ACoPQnPAwuV3T18jV+g2/sMjCgt6OxEd5i4dUtv4e\nExFp1i4oqEQCia6HpRsh0I9BeKmEN5ry6LSAJoZTr8TuCI3iDFYLDM94F8EjLJQa\n8rgu9+/DR7qxAUbCMQINjPa9Ra/lFmez+oq1B75OrxeC2F2GEgT985nF6Pf3E8by\nYwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:13;a:6:{s:2:\"id\";s:16:\"mwp20_1699581903\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2023-11-25 01:26:15\";s:7:\"validTo\";s:19:\"2023-12-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA03g2GqeDKmkuG7seg+8a\n6Agp9JQAgihguxAZiMHeg/6mRSi1niH045TRRsPrZFAeflD+D/u3IrVOfjo3U5sZ\nZur57ajNABJZ97oGDVOcEGex5B0AAJ8m9UhCy8t9g3pGQKozQPvEUY+DUATe2dI+\nMRZUCVkmBxeQHxqP0+OAtOzW6FnT/lYpLwKFGGQGFtKQSU9pmhBK+mHK/TftpS88\noBqgQhI19BPAAzElLlt+MJ1UhYFBkZiI3ivYgxDrnpYul91wJO4SfSaptGAeY7n4\nP0T+OV8zGmPrSktat/9Bewln9L7wi8hW5SBwzbkm7rHb/8to1XROK4unrkjhIxX1\niQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}}','yes'),(66212,'mwp_communication_keys','a:4:{i:11519498;a:2:{s:3:\"key\";s:36:\"9e3a59a3-663e-47aa-844f-4b77ef6ff94c\";s:5:\"added\";i:1678893135;}i:11920988;a:2:{s:3:\"key\";s:36:\"a666c965-b04f-4e55-88ce-a79d63a2aff9\";s:5:\"added\";i:1695997541;}i:13163472;a:2:{s:3:\"key\";s:36:\"1dd0bb68-d127-4e0e-9369-7b1888d24fb2\";s:5:\"added\";i:1699505569;}i:13194377;a:2:{s:3:\"key\";s:36:\"a2af20e7-a6a8-4091-9d9d-087fef61cca9\";s:5:\"added\";i:1700751078;}}','yes'),(66213,'mwp_key_last_used_9e3a59a3-663e-47aa-844f-4b77ef6ff94c','1678893135','yes'),(66214,'mmb_stats_filter','a:1:{s:7:\"plugins\";a:1:{s:7:\"cleanup\";a:1:{s:9:\"revisions\";a:1:{s:11:\"num_to_keep\";i:5;}}}}','yes'),(66217,'mwp_key_last_used_11519498','1688570062','yes'),(66218,'mwp_new_communication_established','1','yes'),(66316,'user_hit_count','a:57:{s:10:\"2023-09-25\";i:23;s:10:\"2023-09-26\";i:124;s:10:\"2023-09-27\";i:142;s:10:\"2023-09-28\";i:92;s:10:\"2023-09-29\";i:45;s:10:\"2023-09-30\";i:183;s:10:\"2023-10-01\";i:53;s:10:\"2023-10-02\";i:58;s:10:\"2023-10-03\";i:59;s:10:\"2023-10-04\";i:30;s:10:\"2023-10-05\";i:62;s:10:\"2023-10-06\";i:35;s:10:\"2023-10-07\";i:35;s:10:\"2023-10-08\";i:23;s:10:\"2023-10-09\";i:17;s:10:\"2023-10-10\";i:28;s:10:\"2023-10-11\";i:39;s:10:\"2023-10-12\";i:37;s:10:\"2023-10-13\";i:34;s:10:\"2023-10-14\";i:29;s:10:\"2023-10-15\";i:23;s:10:\"2023-10-16\";i:32;s:10:\"2023-10-17\";i:54;s:10:\"2023-10-18\";i:33;s:10:\"2023-10-19\";i:58;s:10:\"2023-10-20\";i:50;s:10:\"2023-10-21\";i:22;s:10:\"2023-10-22\";i:41;s:10:\"2023-10-23\";i:24;s:10:\"2023-10-24\";i:38;s:10:\"2023-10-25\";i:45;s:10:\"2023-10-26\";i:48;s:10:\"2023-10-27\";i:91;s:10:\"2023-10-28\";i:19;s:10:\"2023-10-29\";i:28;s:10:\"2023-10-30\";i:37;s:10:\"2023-10-31\";i:35;s:10:\"2023-11-01\";i:28;s:10:\"2023-11-02\";i:90;s:10:\"2023-11-03\";i:64;s:10:\"2023-11-04\";i:27;s:10:\"2023-11-05\";i:33;s:10:\"2023-11-06\";i:107;s:10:\"2023-11-07\";i:354;s:10:\"2023-11-08\";i:272;s:10:\"2023-11-09\";i:135;s:10:\"2023-11-10\";i:74;s:10:\"2023-11-11\";i:218;s:10:\"2023-11-12\";i:34;s:10:\"2023-11-13\";i:22;s:10:\"2023-11-14\";i:14;s:10:\"2023-11-15\";i:74;s:10:\"2023-11-16\";i:187;s:10:\"2023-11-17\";i:38;s:10:\"2023-11-18\";i:204;s:10:\"2023-11-19\";i:2;s:10:\"2023-11-23\";i:17;}','yes'),(66744,'woosea_allow_update','no','yes'),(67010,'woocommerce_gpf_config','a:5:{s:14:\"product_fields\";a:12:{s:5:\"title\";s:2:\"on\";s:11:\"description\";s:2:\"on\";s:20:\"availability_instock\";s:2:\"on\";s:22:\"availability_backorder\";s:2:\"on\";s:23:\"availability_outofstock\";s:2:\"on\";s:9:\"condition\";s:2:\"on\";s:5:\"brand\";s:2:\"on\";s:3:\"mpn\";s:2:\"on\";s:12:\"product_type\";s:2:\"on\";s:23:\"google_product_category\";s:2:\"on\";s:12:\"tax_category\";s:2:\"on\";s:11:\"size_system\";s:2:\"on\";}s:18:\"send_item_group_id\";s:2:\"on\";s:9:\"shop_code\";s:0:\"\";s:16:\"product_defaults\";a:46:{s:20:\"availability_instock\";s:8:\"in stock\";s:22:\"availability_backorder\";s:8:\"in stock\";s:23:\"availability_outofstock\";s:12:\"out of stock\";s:9:\"condition\";s:3:\"new\";s:5:\"brand\";s:12:\"{site_title}\";s:12:\"product_type\";s:0:\"\";s:23:\"google_product_category\";s:32:\"Apparel & Accessories > Clothing\";s:12:\"tax_category\";s:1:\"0\";s:6:\"gender\";s:0:\"\";s:9:\"age_group\";s:0:\"\";s:9:\"size_type\";s:0:\"\";s:11:\"size_system\";s:0:\"\";s:20:\"unit_pricing_measure\";s:0:\"\";s:25:\"unit_pricing_base_measure\";s:0:\"\";s:9:\"multipack\";s:0:\"\";s:5:\"adult\";s:0:\"\";s:17:\"identifier_exists\";s:0:\"\";s:16:\"adwords_grouping\";s:0:\"\";s:14:\"adwords_labels\";s:0:\"\";s:13:\"bing_category\";s:0:\"\";s:14:\"delivery_label\";s:0:\"\";s:18:\"ships_from_country\";s:0:\"\";s:29:\"shopping_ads_excluded_country\";s:0:\"\";s:18:\"transit_time_label\";s:0:\"\";s:17:\"min_handling_time\";s:0:\"\";s:17:\"max_handling_time\";s:0:\"\";s:23:\"energy_label_image_link\";s:0:\"\";s:20:\"included_destination\";s:0:\"\";s:20:\"excluded_destination\";s:0:\"\";s:23:\"sell_on_google_quantity\";s:0:\"\";s:23:\"purchase_quantity_limit\";s:0:\"\";s:35:\"google_funded_promotion_eligibility\";s:0:\"\";s:20:\"return_address_label\";s:0:\"\";s:19:\"return_policy_label\";s:0:\"\";s:13:\"pickup_method\";s:0:\"\";s:10:\"pickup_sla\";s:0:\"\";s:14:\"custom_label_0\";s:0:\"\";s:14:\"custom_label_1\";s:0:\"\";s:14:\"custom_label_2\";s:0:\"\";s:14:\"custom_label_3\";s:0:\"\";s:14:\"custom_label_4\";s:0:\"\";s:12:\"promotion_id\";s:0:\"\";s:17:\"bing_promotion_id\";s:0:\"\";s:13:\"shippingprice\";s:0:\"\";s:20:\"shippingcountryprice\";s:0:\"\";s:27:\"shippingcountryserviceprice\";s:0:\"\";}s:19:\"product_prepopulate\";a:32:{s:5:\"title\";s:19:\"field:product_title\";s:11:\"description\";s:19:\"description:fullvar\";s:5:\"brand\";s:0:\"\";s:3:\"mpn\";s:9:\"field:sku\";s:12:\"product_type\";s:0:\"\";s:12:\"tax_category\";s:0:\"\";s:4:\"gtin\";s:0:\"\";s:11:\"short_title\";s:0:\"\";s:5:\"color\";s:0:\"\";s:4:\"size\";s:0:\"\";s:20:\"unit_pricing_measure\";s:0:\"\";s:25:\"unit_pricing_base_measure\";s:0:\"\";s:9:\"multipack\";s:0:\"\";s:8:\"material\";s:0:\"\";s:7:\"pattern\";s:0:\"\";s:14:\"adwords_labels\";s:0:\"\";s:13:\"bing_category\";s:0:\"\";s:14:\"delivery_label\";s:0:\"\";s:18:\"transit_time_label\";s:0:\"\";s:23:\"energy_label_image_link\";s:0:\"\";s:18:\"cost_of_goods_sold\";s:0:\"\";s:23:\"sell_on_google_quantity\";s:0:\"\";s:23:\"purchase_quantity_limit\";s:0:\"\";s:20:\"return_address_label\";s:0:\"\";s:19:\"return_policy_label\";s:0:\"\";s:14:\"custom_label_0\";s:0:\"\";s:14:\"custom_label_1\";s:0:\"\";s:14:\"custom_label_2\";s:0:\"\";s:14:\"custom_label_3\";s:0:\"\";s:14:\"custom_label_4\";s:0:\"\";s:12:\"promotion_id\";s:0:\"\";s:17:\"bing_promotion_id\";s:0:\"\";}}','yes'),(67011,'woocommerce_gpf_debug_key','da49b02e-ed8c-44df-8576-00febe942b92','yes'),(67012,'woocommerce_gpf_feed_configs','a:1:{s:16:\"0d09d4b2ab133e9f\";a:2:{s:4:\"type\";s:6:\"google\";s:4:\"name\";s:35:\"Google merchant centre product feed\";}}','yes'),(67013,'woocommerce_gpf_db_version','16','yes'),(67014,'woocommerce_gpf_install_ts','1678988612','no'),(67027,'woocommerce_gpf_tax_ts_en-US','1702920319','no'),(67029,'woocommerce_gpf_autocomplete_last_triggered_refresh','1678988770','yes'),(67041,'parcelpanel_admin_notice_ignore_question','1704153600','yes'),(74093,'woocommerce_free_shipping_9_settings','a:4:{s:5:\"title\";s:17:\"Gratis verzending\";s:8:\"requires\";s:10:\"min_amount\";s:10:\"min_amount\";s:2:\"70\";s:16:\"ignore_discounts\";s:2:\"no\";}','yes'),(88621,'members_notifications','a:4:{s:6:\"update\";i:1704387636;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(102333,'parcelpanel_pp_wc_admin_language','','yes'),(104762,'parcelpanel_close_quota_notice','1684627200','yes'),(104763,'parcelpanel_integration_app_enabled_1001','0','yes'),(104764,'parcelpanel_integration_app_enabled_1002','0','yes'),(104765,'parcelpanel_integration_app_enabled_1003','0','yes'),(119015,'woocommerce_feature_product_block_editor_enabled','no','yes'),(119023,'wc_remote_inbox_notifications_wca_updated','','no'),(122183,'parcelpanel_admin_notice_ignore_nps','1704153600','yes'),(134020,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:28:\"shortcodes-ultimate/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.6.1\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1702239087;s:11:\"plugin_path\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";}}s:7:\"abspath\";s:37:\"/home/cach0166/nl.ecom-expansion.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:8:\"sdk_path\";s:28:\"shortcodes-ultimate/freemius\";s:7:\"version\";s:5:\"2.6.1\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1702239087;}}','yes'),(134021,'fs_debug_mode','','yes'),(134022,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:4417;a:3:{s:4:\"slug\";s:25:\"advanced-form-integration\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:55:\"advanced-form-integration/advanced-form-integration.php\";}i:7180;a:3:{s:4:\"slug\";s:19:\"shortcodes-ultimate\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";}}s:11:\"plugin_data\";a:2:{s:25:\"advanced-form-integration\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:55:\"advanced-form-integration/advanced-form-integration.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1687636007;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.9\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:6:\"1.68.4\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:13:\"teng-shop.com\";s:9:\"server_ip\";s:12:\"35.215.65.17\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1687642556;s:7:\"version\";s:6:\"1.68.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1687636203;s:7:\"version\";s:6:\"1.68.4\";}s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:2:\"12\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:0;}}s:19:\"shortcodes-ultimate\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1699654385;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:5:\"2.6.0\";s:11:\"sdk_version\";s:5:\"2.6.1\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"7.0.0\";s:14:\"plugin_version\";s:5:\"7.0.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";N;s:4:\"host\";s:23:\"www.se.cach0166.odns.fr\";s:9:\"server_ip\";s:15:\"109.234.165.186\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1699654385;s:7:\"version\";s:6:\"5.13.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1699654403;s:7:\"version\";s:6:\"5.13.2\";}s:19:\"last_load_timestamp\";i:1704362803;}}s:13:\"file_slug_map\";a:2:{s:55:\"advanced-form-integration/advanced-form-integration.php\";s:25:\"advanced-form-integration\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:19:\"shortcodes-ultimate\";}s:7:\"plugins\";a:2:{s:25:\"advanced-form-integration\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:25:\"Advanced Form Integration\";s:4:\"slug\";s:25:\"advanced-form-integration\";s:12:\"premium_slug\";s:33:\"advanced-form-integration-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:55:\"advanced-form-integration/advanced-form-integration.php\";s:7:\"version\";s:6:\"1.68.4\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:12:\"Professional\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_f94bb401ae01ff3a79f438df51715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"4417\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:19:\"shortcodes-ultimate\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"Shortcodes Ultimate\";s:4:\"slug\";s:19:\"shortcodes-ultimate\";s:12:\"premium_slug\";s:23:\"shortcodes-ultimate-pro\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:7:\"version\";s:5:\"7.0.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:3:\"Pro\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_c9ecad02df10f17e67880ac6bd8fc\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"7180\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"e83a02a172c73f48a057713277c5c50b\";s:13:\"admin_notices\";a:1:{s:25:\"advanced-form-integration\";a:0:{}}}','yes'),(134023,'fs_api_cache','a:0:{}','no'),(134033,'adfoin_review','a:2:{s:4:\"time\";i:1687636186;s:9:\"dismissed\";b:0;}','yes'),(134046,'widget_klaviyo_emailsignup_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(134047,'widget_klaviyo_embedemailsignup_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(134062,'adfoin_general_settings_platforms','a:78:{s:14:\"activecampaign\";b:0;s:8:\"agilecrm\";b:0;s:8:\"airtable\";b:0;s:5:\"asana\";b:0;s:9:\"autopilot\";b:0;s:6:\"aweber\";b:0;s:9:\"benchmark\";b:0;s:15:\"campaignmonitor\";b:0;s:10:\"capsulecrm\";b:0;s:7:\"clickup\";b:0;s:9:\"clinchpad\";b:0;s:5:\"close\";b:0;s:10:\"companyhub\";b:0;s:15:\"constantcontact\";b:0;s:10:\"convertkit\";b:0;s:6:\"copper\";b:0;s:7:\"curated\";b:0;s:5:\"demio\";b:0;s:8:\"directiq\";b:0;s:4:\"drip\";b:0;s:9:\"easysendy\";b:0;s:12:\"elasticemail\";b:0;s:12:\"emailoctopus\";b:0;s:9:\"engagebay\";b:0;s:11:\"everwebinar\";b:0;s:6:\"flowlu\";b:0;s:10:\"freshsales\";b:0;s:11:\"getresponse\";b:0;s:14:\"googlecalendar\";b:0;s:12:\"googlesheets\";b:0;s:7:\"hubspot\";b:0;s:9:\"insightly\";b:0;s:8:\"jumplead\";b:0;s:4:\"keap\";b:0;s:7:\"klaviyo\";b:1;s:7:\"lemlist\";b:0;s:8:\"liondesk\";b:0;s:9:\"livestorm\";b:0;s:9:\"mailchimp\";b:0;s:11:\"mailercloud\";b:0;s:10:\"mailerlite\";b:0;s:7:\"mailify\";b:0;s:7:\"mailjet\";b:0;s:8:\"mailwizz\";b:0;s:6:\"mautic\";b:0;s:7:\"moosend\";b:0;s:6:\"nimble\";b:0;s:8:\"omnisend\";b:0;s:7:\"onehash\";b:0;s:12:\"autopilotnew\";b:0;s:6:\"pabbly\";b:0;s:9:\"pipedrive\";b:0;s:8:\"pushover\";b:0;s:5:\"revue\";b:0;s:5:\"robly\";b:0;s:10:\"salesflare\";b:0;s:10:\"salesrocks\";b:0;s:5:\"selzy\";b:0;s:7:\"sendfox\";b:0;s:10:\"sendinblue\";b:0;s:9:\"sendpulse\";b:0;s:5:\"sendx\";b:0;s:5:\"sendy\";b:0;s:5:\"slack\";b:0;s:10:\"smartsheet\";b:0;s:6:\"trello\";b:0;s:6:\"twilio\";b:0;s:16:\"verticalresponse\";b:0;s:6:\"vtiger\";b:0;s:9:\"wealthbox\";b:0;s:7:\"webhook\";b:0;s:10:\"webinarjam\";b:0;s:10:\"woodpecker\";b:0;s:9:\"wordpress\";b:0;s:6:\"zapier\";b:0;s:13:\"zohocampaigns\";b:0;s:7:\"zohocrm\";b:0;s:9:\"zohosheet\";b:0;}','yes'),(134063,'adfoin_general_settings_log','','yes'),(134064,'adfoin_general_settings_st','','yes'),(134065,'adfoin_general_settings_utm','','yes'),(134726,'mailoptin_settings','a:3:{s:9:\"from_name\";s:9:\"Teng Shop\";s:10:\"from_email\";s:23:\"kotaro21.mail@gmail.com\";s:8:\"reply_to\";s:23:\"kotaro21.mail@gmail.com\";}','yes'),(134727,'mo_install_date','2023-06-24 16:37:19','yes'),(134728,'mo_plugin_activated','true','yes'),(134729,'mo_db_ver','13','yes'),(134730,'mailoptin_connections','a:42:{s:18:\"elementor_activate\";s:4:\"true\";s:18:\"sendinblue_api_key\";s:0:\"\";s:22:\"activecampaign_api_url\";s:0:\"\";s:22:\"activecampaign_api_key\";s:0:\"\";s:22:\"benchmarkemail_api_key\";s:0:\"\";s:14:\"ctctv3_api_key\";s:0:\"\";s:17:\"ctctv3_api_secret\";s:0:\"\";s:18:\"convertkit_api_key\";s:0:\"\";s:21:\"convertkit_api_secret\";s:0:\"\";s:24:\"convertkit_template_name\";s:0:\"\";s:14:\"drip_api_token\";s:0:\"\";s:15:\"drip_account_id\";s:0:\"\";s:20:\"emailoctopus_api_key\";s:0:\"\";s:19:\"emma_public_api_key\";s:0:\"\";s:20:\"emma_private_api_key\";s:0:\"\";s:15:\"emma_account_id\";s:0:\"\";s:19:\"getresponse_api_key\";s:0:\"\";s:18:\"getresponse_is_360\";s:5:\"false\";s:32:\"getresponse360_registered_domain\";s:0:\"\";s:22:\"getresponse360_country\";s:4:\"none\";s:18:\"convertfox_api_key\";s:0:\"\";s:9:\"gem_email\";s:0:\"\";s:11:\"gem_api_key\";s:0:\"\";s:15:\"klaviyo_api_key\";s:37:\"pk_2e0db9c22ea4da39667143e7a5c289c8c2\";s:17:\"mailchimp_api_key\";s:0:\"\";s:20:\"mailerlitev2_api_key\";s:0:\"\";s:18:\"mailerlite_api_key\";s:0:\"\";s:15:\"mailjet_api_key\";s:0:\"\";s:18:\"mailjet_secret_key\";s:0:\"\";s:15:\"moosend_api_key\";s:0:\"\";s:16:\"omnisend_api_key\";s:0:\"\";s:17:\"ontraport_api_key\";s:0:\"\";s:16:\"ontraport_app_id\";s:0:\"\";s:15:\"sendfox_api_key\";s:0:\"\";s:16:\"sendgrid_api_key\";s:0:\"\";s:16:\"sendlane_api_key\";s:0:\"\";s:17:\"sendlane_hash_key\";s:0:\"\";s:15:\"sendlane_domain\";s:0:\"\";s:13:\"sendy_api_key\";s:0:\"\";s:22:\"sendy_installation_url\";s:0:\"\";s:16:\"sendy_email_list\";a:1:{i:1;a:2:{s:9:\"list_name\";s:0:\"\";s:7:\"list_id\";s:0:\"\";}}s:14:\"wemail_api_key\";s:0:\"\";}','yes'),(134731,'mo_optin_campaign','a:0:{}','no'),(134732,'widget_mo_optin_widgets','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(134737,'pand-488942d411053eff8a8295cfc2399ed3','forever','no'),(134738,'pand-89815c8c301650df3fd93237b5ec40c3','forever','no'),(135000,'fwp_dismiss_fwpadnotice','true','yes'),(164298,'pand-afb253bb3e9f10f03c9b5e275edfcc5f','forever','no'),(171681,'wpvivid_check_htaccess_rule_free','1','yes'),(171735,'wc_stripe_show_ssl_notice','no','yes'),(171816,'mwp_key_last_used_6cc6b79d-2ce8-45ce-b7aa-5dd0225f7a24','1688580736','yes'),(171820,'mwp_key_last_used_11920988','1699204037','yes'),(172688,'new_admin_email','kotaro21.mail@gmail.com','yes'),(172715,'_transient_woocommerce_shipping_task_zone_count_transient','1','yes'),(211643,'wpsewcp_welcome_redirect','no','yes'),(211646,'vg_sheet_editor','a:78:{s:8:\"last_tab\";N;s:13:\"be_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}s:17:\"be_posts_per_page\";i:505;s:23:\"be_load_items_on_scroll\";b:1;s:19:\"be_fix_columns_left\";i:2;s:22:\"be_posts_per_page_save\";i:4;s:26:\"be_timeout_between_batches\";i:6;s:23:\"be_disable_post_actions\";s:0:\"\";s:32:\"wc_variation_whitelisted_columns\";s:0:\"\";s:16:\"export_page_size\";s:0:\"\";s:21:\"delete_posts_per_page\";s:0:\"\";s:37:\"wc_products_variation_copy_batch_size\";s:0:\"\";s:17:\"enable_pagination\";s:0:\"\";s:33:\"be_disable_automatic_loading_rows\";s:0:\"\";s:30:\"be_disable_full_screen_mode_on\";s:0:\"\";s:18:\"enable_auto_saving\";s:0:\"\";s:19:\"default_sortby_post\";s:0:\"\";s:16:\"be_columns_limit\";s:0:\"\";s:27:\"be_taxonomy_terms_separator\";s:0:\"\";s:36:\"be_suspend_object_cache_invalidation\";s:0:\"\";s:18:\"be_disable_wpautop\";b:1;s:24:\"be_disable_data_prefetch\";s:0:\"\";s:36:\"keys_for_infinite_serialized_handler\";s:0:\"\";s:17:\"blacklist_columns\";s:0:\"\";s:24:\"fix_utf8_editor_settings\";s:0:\"\";s:20:\"remote_image_timeout\";s:0:\"\";s:31:\"maximum_advanced_filters_fields\";s:0:\"\";s:31:\"allow_line_breaks_export_import\";s:0:\"\";s:25:\"allow_html_in_post_titles\";s:0:\"\";s:28:\"save_every_term_in_hierarchy\";s:0:\"\";s:27:\"run_save_post_action_always\";s:0:\"\";s:47:\"be_allow_raw_content_unfiltered_html_capability\";s:0:\"\";s:31:\"serialized_field_post_templates\";s:0:\"\";s:37:\"enable_spreadsheet_views_restrictions\";s:0:\"\";s:18:\"enable_simple_mode\";s:0:\"\";s:38:\"disable_automatic_formatting_detection\";s:0:\"\";s:29:\"be_disable_cells_lazy_loading\";s:0:\"\";s:27:\"be_disable_dashboard_widget\";s:0:\"\";s:29:\"be_disable_serialized_columns\";s:0:\"\";s:20:\"be_disable_heartbeat\";s:0:\"\";s:29:\"be_enable_fancy_taxonomy_cell\";s:0:\"\";s:25:\"be_taxonomy_cell_renderer\";s:0:\"\";s:24:\"show_all_custom_statuses\";s:0:\"\";s:18:\"hide_cell_comments\";s:0:\"\";s:32:\"manage_taxonomy_columns_term_ids\";s:0:\"\";s:34:\"manage_taxonomy_columns_term_slugs\";s:0:\"\";s:27:\"dont_auto_enable_new_fields\";s:0:\"\";s:29:\"math_formula_roundup_decimals\";s:0:\"\";s:25:\"enable_plain_select_cells\";s:0:\"\";s:19:\"wpmu_delete_account\";s:0:\"\";s:25:\"dont_add_id_to_image_urls\";s:0:\"\";s:37:\"dont_display_file_names_image_columns\";s:0:\"\";s:27:\"add_html_class_status_value\";s:0:\"\";s:32:\"tinymce_preview_characters_limit\";s:0:\"\";s:27:\"manage_post_parents_with_id\";s:0:\"\";s:10:\"color_mode\";s:0:\"\";s:24:\"allow_ftp_images_support\";s:0:\"\";s:28:\"allow_ftp_images_duplication\";s:0:\"\";s:19:\"media_preview_width\";s:0:\"\";s:20:\"media_preview_height\";s:0:\"\";s:22:\"be_initial_rows_offset\";s:0:\"\";s:39:\"delete_attached_images_when_post_delete\";s:0:\"\";s:20:\"disable_help_toolbar\";s:0:\"\";s:29:\"max_value_length_locked_cells\";s:0:\"\";s:45:\"dont_show_readonly_columns_in_advanced_search\";s:0:\"\";s:30:\"be_disable_extension_offerings\";s:0:\"\";s:38:\"exclude_non_visible_columns_from_tools\";s:0:\"\";s:36:\"disable_important_extensions_toolbar\";s:0:\"\";s:38:\"be_disable_woocommerce_inventory_stats\";s:0:\"\";s:29:\"wc_use_separate_image_columns\";s:0:\"\";s:47:\"be_disable_wc_auto_attribute_used_for_variation\";s:0:\"\";s:36:\"be_disable_wc_auto_attribute_visible\";s:0:\"\";s:36:\"wc_product_attributes_is_not_visible\";s:0:\"\";s:35:\"wc_product_attributes_not_variation\";s:0:\"\";s:30:\"maximum_variations_combination\";s:0:\"\";s:34:\"wc_products_custom_attribute_names\";s:0:\"\";s:31:\"allow_to_see_variation_url_slug\";s:0:\"\";s:26:\"update_lookup_table_always\";s:0:\"\";}','no'),(211655,'vgse_columns_visibility','a:2:{s:7:\"product\";a:2:{s:7:\"enabled\";a:106:{s:10:\"post_title\";s:5:\"Title\";s:9:\"post_name\";s:8:\"URL Slug\";s:12:\"post_content\";s:7:\"Content\";s:18:\"_yoast_wpseo_title\";s:9:\"SEO Title\";s:21:\"_yoast_wpseo_metadesc\";s:15:\"SEO Description\";s:11:\"product_cat\";s:23:\"Catégories de produits\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:12:\"post_excerpt\";s:18:\"Description courte\";s:11:\"post_status\";s:6:\"Status\";s:11:\"post_parent\";s:11:\"Page Parent\";s:10:\"menu_order\";s:5:\"Order\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:11:\"product_tag\";s:19:\"Étiquettes produit\";s:8:\"pa_color\";s:25:\"Produit Choose your color\";s:7:\"pa_size\";s:24:\"Produit Choose your size\";s:9:\"post_type\";s:9:\"Post type\";s:13:\"post_password\";s:8:\"Password\";s:11:\"_backorders\";s:49:\"Autoriser les commandes de produits en rupture ?\";s:16:\"_download_expiry\";s:15:\"Download expiry\";s:15:\"_download_limit\";s:14:\"Download limit\";s:13:\"_downloadable\";s:12:\"Downloadable\";s:28:\"_flatsome_product_percentage\";s:27:\"Flatsome Product Percentage\";s:13:\"_manage_stock\";s:16:\"Gestion du stock\";s:22:\"_product_image_gallery\";s:15:\"Galerie produit\";s:14:\"_regular_price\";s:15:\"Tarif régulier\";s:11:\"_sale_price\";s:11:\"Tarif promo\";s:19:\"_shopify_product_id\";s:18:\"Shopify Product Id\";s:21:\"_shopify_variation_id\";s:20:\"Shopify Variation Id\";s:4:\"_sku\";s:3:\"UGS\";s:18:\"_sold_individually\";s:23:\"Vendre individuellement\";s:6:\"_stock\";s:5:\"Stock\";s:13:\"_stock_status\";s:14:\"État du stock\";s:10:\"_tax_class\";s:9:\"Tax Class\";s:11:\"_tax_status\";s:10:\"Tax Status\";s:8:\"_virtual\";s:7:\"Virtuel\";s:18:\"_wc_average_rating\";s:17:\"Moyenne des notes\";s:16:\"_wc_review_count\";s:12:\"Review count\";s:23:\"_woosea_exclude_product\";s:22:\"Woosea Exclude Product\";s:26:\"_yoast_wpseo_content_score\";s:25:\"Yoast Wpseo Content Score\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:42:\"Yoast Wpseo Estimated Reading Time Minutes\";s:20:\"_yoast_wpseo_focuskw\";s:11:\"SEO Keyword\";s:20:\"_yoast_wpseo_linkdex\";s:3:\"SEO\";s:32:\"_yoast_wpseo_primary_product_cat\";s:22:\"SEO Primary Catégorie\";s:32:\"_yoast_wpseo_wordproof_timestamp\";s:31:\"Yoast Wpseo Wordproof Timestamp\";s:21:\"inline_featured_image\";s:21:\"Inline Featured Image\";s:23:\"litespeed_no_image_lazy\";s:23:\"Litespeed No Image Lazy\";s:11:\"total_sales\";s:16:\"Total des ventes\";s:32:\"woocommerce_gpf_primary_media_id\";s:32:\"Woocommerce Gpf Primary Media Id\";s:9:\"wpsecabox\";s:21:\"Custom attribute: Box\";s:9:\"wpsecaset\";s:21:\"Custom attribute: Set\";s:10:\"wpsecasize\";s:22:\"Custom attribute: Size\";s:11:\"wpsecacolor\";s:23:\"Custom attribute: Color\";s:11:\"wpsecapairs\";s:23:\"Custom attribute: Pairs\";s:14:\"wpsecaquantity\";s:26:\"Custom attribute: Quantity\";s:13:\"wpsecacouleur\";s:25:\"Custom attribute: Couleur\";s:14:\"wpsecapainting\";s:26:\"Custom attribute: Painting\";s:15:\"wpsecapaintings\";s:27:\"Custom attribute: Paintings\";s:22:\"_vgse_create_attribute\";s:18:\"Product attributes\";s:22:\"_variation_description\";s:21:\"Variation description\";s:23:\"_vgse_variation_enabled\";s:18:\"Variation enabled?\";s:19:\"_default_attributes\";s:18:\"Default attributes\";s:14:\"_download_type\";s:13:\"Download type\";s:28:\"wpse_downloadable_file_names\";s:22:\"Download files : names\";s:27:\"wpse_downloadable_file_urls\";s:21:\"Download files : URLs\";s:19:\"_downloadable_files\";s:14:\"Download files\";s:11:\"post_author\";s:6:\"Vendor\";s:12:\"product_type\";s:4:\"Type\";s:22:\"_sale_price_dates_from\";s:23:\"Date de début de promo\";s:20:\"_sale_price_dates_to\";s:20:\"Date de fin de promo\";s:7:\"_weight\";s:5:\"Poids\";s:6:\"_width\";s:7:\"Largeur\";s:7:\"_height\";s:7:\"Hauteur\";s:7:\"_length\";s:8:\"Longueur\";s:14:\"_crosssell_ids\";s:16:\"Ventes croisées\";s:11:\"_upsell_ids\";s:19:\"Produits suggérés\";s:18:\"product_visibility\";s:11:\"Visibilité\";s:9:\"_featured\";s:15:\"Mis en avant ?\";s:14:\"_purchase_note\";s:16:\"Note de commande\";s:22:\"product_shipping_class\";s:22:\"Classe d’expédition\";s:28:\"_yoast_wpseo_opengraph-title\";s:12:\"SEO FB title\";s:34:\"_yoast_wpseo_opengraph-description\";s:18:\"SEO FB description\";s:28:\"_yoast_wpseo_opengraph-image\";s:12:\"SEO FB image\";s:26:\"_yoast_wpseo_twitter-title\";s:12:\"SEO TW title\";s:32:\"_yoast_wpseo_twitter-description\";s:18:\"SEO TW description\";s:26:\"_yoast_wpseo_twitter-image\";s:12:\"SEO TW image\";s:22:\"_yoast_wpseo_canonical\";s:17:\"SEO Canonical URL\";s:32:\"_yoast_wpseo_meta-robots-noindex\";s:12:\"SEO No Index\";s:41:\"_woocommerce_gpf_data_exclude_product_i_0\";s:40:\"Woocommerce Gpf Data: Exclude Product: 1\";s:41:\"_woocommerce_gpf_data_exclude_product_i_1\";s:40:\"Woocommerce Gpf Data: Exclude Product: 2\";s:41:\"_woocommerce_gpf_data_exclude_product_i_2\";s:40:\"Woocommerce Gpf Data: Exclude Product: 3\";s:41:\"wc_productdata_options__product_block_i_0\";s:40:\"Wc Productdata Options: Product Block: 1\";s:39:\"wc_productdata_options__top_content_i_0\";s:38:\"Wc Productdata Options: Top Content: 1\";s:42:\"wc_productdata_options__bottom_content_i_0\";s:41:\"Wc Productdata Options: Bottom Content: 1\";s:38:\"wc_productdata_options__bubble_new_i_0\";s:37:\"Wc Productdata Options: Bubble New: 1\";s:39:\"wc_productdata_options__bubble_text_i_0\";s:38:\"Wc Productdata Options: Bubble Text: 1\";s:44:\"wc_productdata_options__custom_tab_title_i_0\";s:43:\"Wc Productdata Options: Custom Tab Title: 1\";s:38:\"wc_productdata_options__custom_tab_i_0\";s:37:\"Wc Productdata Options: Custom Tab: 1\";s:41:\"wc_productdata_options__product_video_i_0\";s:40:\"Wc Productdata Options: Product Video: 1\";s:46:\"wc_productdata_options__product_video_size_i_0\";s:45:\"Wc Productdata Options: Product Video Size: 1\";s:51:\"wc_productdata_options__product_video_placement_i_0\";s:50:\"Wc Productdata Options: Product Video Placement: 1\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_0\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 1\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_1\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 2\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_2\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 3\";}s:8:\"disabled\";a:2:{s:2:\"ID\";s:2:\"ID\";s:4:\"name\";s:3:\"tri\";}}s:4:\"post\";a:2:{s:7:\"enabled\";a:36:{s:10:\"post_title\";s:5:\"Title\";s:9:\"post_name\";s:8:\"URL Slug\";s:12:\"post_content\";s:7:\"Content\";s:18:\"_yoast_wpseo_title\";s:9:\"SEO Title\";s:21:\"_yoast_wpseo_metadesc\";s:15:\"SEO Description\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:11:\"post_author\";s:6:\"Author\";s:12:\"post_excerpt\";s:7:\"Excerpt\";s:11:\"post_status\";s:6:\"Status\";s:14:\"comment_status\";s:8:\"Comments\";s:10:\"menu_order\";s:5:\"Order\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:8:\"category\";s:11:\"Catégories\";s:8:\"post_tag\";s:11:\"Étiquettes\";s:11:\"post_format\";s:7:\"Formats\";s:9:\"post_type\";s:9:\"Post type\";s:13:\"post_password\";s:8:\"Password\";s:10:\"_encloseme\";s:9:\"Encloseme\";s:7:\"_pingme\";s:6:\"Pingme\";s:26:\"_yoast_wpseo_content_score\";s:25:\"Yoast Wpseo Content Score\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:42:\"Yoast Wpseo Estimated Reading Time Minutes\";s:20:\"_yoast_wpseo_focuskw\";s:11:\"SEO Keyword\";s:20:\"_yoast_wpseo_linkdex\";s:3:\"SEO\";s:29:\"_yoast_wpseo_primary_category\";s:22:\"SEO Primary Catégorie\";s:32:\"_yoast_wpseo_wordproof_timestamp\";s:31:\"Yoast Wpseo Wordproof Timestamp\";s:28:\"_yoast_wpseo_opengraph-title\";s:12:\"SEO FB title\";s:34:\"_yoast_wpseo_opengraph-description\";s:18:\"SEO FB description\";s:28:\"_yoast_wpseo_opengraph-image\";s:12:\"SEO FB image\";s:26:\"_yoast_wpseo_twitter-title\";s:12:\"SEO TW title\";s:32:\"_yoast_wpseo_twitter-description\";s:18:\"SEO TW description\";s:26:\"_yoast_wpseo_twitter-image\";s:12:\"SEO TW image\";s:22:\"_yoast_wpseo_canonical\";s:17:\"SEO Canonical URL\";s:32:\"_yoast_wpseo_meta-robots-noindex\";s:12:\"SEO No Index\";}s:8:\"disabled\";a:1:{s:2:\"ID\";s:2:\"ID\";}}}','no'),(211656,'vgse_columns_visibility_migrated','1','yes'),(211672,'vgse_columns_manager','a:0:{}','no'),(211675,'vgse_detected_fields_product_updated','1689532715','yes'),(211758,'vgse_welcome_redirect','no','yes'),(211759,'vgse_hide_whats_new_2.25.3','yes','yes'),(211762,'vgse_disable_quick_setup','1','yes'),(211856,'mfrh_rating_date','1850349208','no'),(211857,'mfrh_license','a:5:{s:3:\"key\";s:0:\"\";s:5:\"issue\";s:0:\"\";s:4:\"logs\";s:0:\"\";s:7:\"expires\";s:8:\"lifetime\";s:7:\"license\";s:5:\"valid\";}','yes'),(211858,'mfrh_options','a:42:{s:11:\"auto_rename\";s:10:\"post_title\";s:9:\"on_upload\";b:0;s:11:\"rename_slug\";b:0;s:16:\"convert_to_ascii\";b:1;s:12:\"update_posts\";b:1;s:15:\"update_excerpts\";b:0;s:15:\"update_postmeta\";b:0;s:16:\"update_elementor\";b:0;s:4:\"undo\";b:0;s:4:\"move\";b:0;s:13:\"manual_rename\";b:0;s:16:\"manual_rename_ai\";b:0;s:15:\"manual_sanitize\";b:0;s:14:\"numbered_files\";b:1;s:8:\"sync_alt\";b:1;s:16:\"sync_media_title\";b:1;s:12:\"force_rename\";b:0;s:3:\"log\";b:0;s:6:\"logsql\";b:0;s:11:\"rename_guid\";b:0;s:22:\"case_insensitive_check\";b:0;s:14:\"rename_on_save\";b:0;s:14:\"acf_field_name\";s:5:\"false\";s:11:\"images_only\";b:0;s:13:\"featured_only\";b:0;s:14:\"posts_per_page\";i:25;s:13:\"autolock_auto\";b:0;s:15:\"autolock_manual\";b:1;s:5:\"delay\";i:100;s:15:\"clean_uninstall\";b:0;s:4:\"mode\";s:6:\"rename\";s:9:\"dashboard\";b:1;s:9:\"alt_field\";b:0;s:11:\"attached_to\";b:1;s:16:\"vision_rename_ai\";b:0;s:26:\"vision_rename_ai_on_upload\";b:0;s:12:\"clean_upload\";b:0;s:4:\"lock\";b:0;s:9:\"logs_path\";N;s:14:\"metadata_title\";b:1;s:12:\"metadata_alt\";b:1;s:20:\"metadata_description\";b:0;}','no'),(213200,'vgse_column_groups','a:1:{s:7:\"product\";a:1:{s:3:\"tri\";a:3:{s:7:\"enabled\";a:106:{s:10:\"post_title\";s:5:\"Title\";s:9:\"post_name\";s:8:\"URL Slug\";s:12:\"post_content\";s:7:\"Content\";s:18:\"_yoast_wpseo_title\";s:9:\"SEO Title\";s:21:\"_yoast_wpseo_metadesc\";s:15:\"SEO Description\";s:11:\"product_cat\";s:23:\"Catégories de produits\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:12:\"post_excerpt\";s:18:\"Description courte\";s:11:\"post_status\";s:6:\"Status\";s:11:\"post_parent\";s:11:\"Page Parent\";s:10:\"menu_order\";s:5:\"Order\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:11:\"product_tag\";s:19:\"Étiquettes produit\";s:8:\"pa_color\";s:25:\"Produit Choose your color\";s:7:\"pa_size\";s:24:\"Produit Choose your size\";s:9:\"post_type\";s:9:\"Post type\";s:13:\"post_password\";s:8:\"Password\";s:11:\"_backorders\";s:49:\"Autoriser les commandes de produits en rupture ?\";s:16:\"_download_expiry\";s:15:\"Download expiry\";s:15:\"_download_limit\";s:14:\"Download limit\";s:13:\"_downloadable\";s:12:\"Downloadable\";s:28:\"_flatsome_product_percentage\";s:27:\"Flatsome Product Percentage\";s:13:\"_manage_stock\";s:16:\"Gestion du stock\";s:22:\"_product_image_gallery\";s:15:\"Galerie produit\";s:14:\"_regular_price\";s:15:\"Tarif régulier\";s:11:\"_sale_price\";s:11:\"Tarif promo\";s:19:\"_shopify_product_id\";s:18:\"Shopify Product Id\";s:21:\"_shopify_variation_id\";s:20:\"Shopify Variation Id\";s:4:\"_sku\";s:3:\"UGS\";s:18:\"_sold_individually\";s:23:\"Vendre individuellement\";s:6:\"_stock\";s:5:\"Stock\";s:13:\"_stock_status\";s:14:\"État du stock\";s:10:\"_tax_class\";s:9:\"Tax Class\";s:11:\"_tax_status\";s:10:\"Tax Status\";s:8:\"_virtual\";s:7:\"Virtuel\";s:18:\"_wc_average_rating\";s:17:\"Moyenne des notes\";s:16:\"_wc_review_count\";s:12:\"Review count\";s:23:\"_woosea_exclude_product\";s:22:\"Woosea Exclude Product\";s:26:\"_yoast_wpseo_content_score\";s:25:\"Yoast Wpseo Content Score\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:42:\"Yoast Wpseo Estimated Reading Time Minutes\";s:20:\"_yoast_wpseo_focuskw\";s:11:\"SEO Keyword\";s:20:\"_yoast_wpseo_linkdex\";s:3:\"SEO\";s:32:\"_yoast_wpseo_primary_product_cat\";s:22:\"SEO Primary Catégorie\";s:32:\"_yoast_wpseo_wordproof_timestamp\";s:31:\"Yoast Wpseo Wordproof Timestamp\";s:21:\"inline_featured_image\";s:21:\"Inline Featured Image\";s:23:\"litespeed_no_image_lazy\";s:23:\"Litespeed No Image Lazy\";s:11:\"total_sales\";s:16:\"Total des ventes\";s:32:\"woocommerce_gpf_primary_media_id\";s:32:\"Woocommerce Gpf Primary Media Id\";s:9:\"wpsecabox\";s:21:\"Custom attribute: Box\";s:9:\"wpsecaset\";s:21:\"Custom attribute: Set\";s:10:\"wpsecasize\";s:22:\"Custom attribute: Size\";s:11:\"wpsecacolor\";s:23:\"Custom attribute: Color\";s:11:\"wpsecapairs\";s:23:\"Custom attribute: Pairs\";s:14:\"wpsecaquantity\";s:26:\"Custom attribute: Quantity\";s:13:\"wpsecacouleur\";s:25:\"Custom attribute: Couleur\";s:14:\"wpsecapainting\";s:26:\"Custom attribute: Painting\";s:15:\"wpsecapaintings\";s:27:\"Custom attribute: Paintings\";s:22:\"_vgse_create_attribute\";s:18:\"Product attributes\";s:22:\"_variation_description\";s:21:\"Variation description\";s:23:\"_vgse_variation_enabled\";s:18:\"Variation enabled?\";s:19:\"_default_attributes\";s:18:\"Default attributes\";s:14:\"_download_type\";s:13:\"Download type\";s:28:\"wpse_downloadable_file_names\";s:22:\"Download files : names\";s:27:\"wpse_downloadable_file_urls\";s:21:\"Download files : URLs\";s:19:\"_downloadable_files\";s:14:\"Download files\";s:11:\"post_author\";s:6:\"Vendor\";s:12:\"product_type\";s:4:\"Type\";s:22:\"_sale_price_dates_from\";s:23:\"Date de début de promo\";s:20:\"_sale_price_dates_to\";s:20:\"Date de fin de promo\";s:7:\"_weight\";s:5:\"Poids\";s:6:\"_width\";s:7:\"Largeur\";s:7:\"_height\";s:7:\"Hauteur\";s:7:\"_length\";s:8:\"Longueur\";s:14:\"_crosssell_ids\";s:16:\"Ventes croisées\";s:11:\"_upsell_ids\";s:19:\"Produits suggérés\";s:18:\"product_visibility\";s:11:\"Visibilité\";s:9:\"_featured\";s:15:\"Mis en avant ?\";s:14:\"_purchase_note\";s:16:\"Note de commande\";s:22:\"product_shipping_class\";s:22:\"Classe d’expédition\";s:28:\"_yoast_wpseo_opengraph-title\";s:12:\"SEO FB title\";s:34:\"_yoast_wpseo_opengraph-description\";s:18:\"SEO FB description\";s:28:\"_yoast_wpseo_opengraph-image\";s:12:\"SEO FB image\";s:26:\"_yoast_wpseo_twitter-title\";s:12:\"SEO TW title\";s:32:\"_yoast_wpseo_twitter-description\";s:18:\"SEO TW description\";s:26:\"_yoast_wpseo_twitter-image\";s:12:\"SEO TW image\";s:22:\"_yoast_wpseo_canonical\";s:17:\"SEO Canonical URL\";s:32:\"_yoast_wpseo_meta-robots-noindex\";s:12:\"SEO No Index\";s:41:\"_woocommerce_gpf_data_exclude_product_i_0\";s:40:\"Woocommerce Gpf Data: Exclude Product: 1\";s:41:\"_woocommerce_gpf_data_exclude_product_i_1\";s:40:\"Woocommerce Gpf Data: Exclude Product: 2\";s:41:\"_woocommerce_gpf_data_exclude_product_i_2\";s:40:\"Woocommerce Gpf Data: Exclude Product: 3\";s:41:\"wc_productdata_options__product_block_i_0\";s:40:\"Wc Productdata Options: Product Block: 1\";s:39:\"wc_productdata_options__top_content_i_0\";s:38:\"Wc Productdata Options: Top Content: 1\";s:42:\"wc_productdata_options__bottom_content_i_0\";s:41:\"Wc Productdata Options: Bottom Content: 1\";s:38:\"wc_productdata_options__bubble_new_i_0\";s:37:\"Wc Productdata Options: Bubble New: 1\";s:39:\"wc_productdata_options__bubble_text_i_0\";s:38:\"Wc Productdata Options: Bubble Text: 1\";s:44:\"wc_productdata_options__custom_tab_title_i_0\";s:43:\"Wc Productdata Options: Custom Tab Title: 1\";s:38:\"wc_productdata_options__custom_tab_i_0\";s:37:\"Wc Productdata Options: Custom Tab: 1\";s:41:\"wc_productdata_options__product_video_i_0\";s:40:\"Wc Productdata Options: Product Video: 1\";s:46:\"wc_productdata_options__product_video_size_i_0\";s:45:\"Wc Productdata Options: Product Video Size: 1\";s:51:\"wc_productdata_options__product_video_placement_i_0\";s:50:\"Wc Productdata Options: Product Video Placement: 1\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_0\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 1\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_1\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 2\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_2\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 3\";}s:8:\"disabled\";a:2:{s:2:\"ID\";s:2:\"ID\";s:4:\"name\";s:3:\"tri\";}s:4:\"name\";s:3:\"tri\";}}}','no'),(213348,'vgse_editions_counter','2027','yes'),(213349,'vgse_processed_counter','772','yes'),(213410,'edd_sl_f563046f435835cadeab0c1b286ab1eb','a:2:{s:7:\"timeout\";i:1704337226;s:5:\"value\";s:36252:\"{\"new_version\":\"5.8.0\",\"stable_version\":\"5.8.0\",\"name\":\"Media File Renamer Pro\",\"slug\":\"media-file-renamer-pro\",\"url\":\"https:\\/\\/meowapps.com\\/products\\/media-file-renamer-pro\\/?changelog=1\",\"last_updated\":\"2024-01-03 14:23:53\",\"homepage\":\"https:\\/\\/meowapps.com\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\\\"https:\\/\\/meowapps.com\\/media-file-renamer\\/\\\">Media File Renamer<\\/a>.<\\/p>\\n<h3>HOW IT WORKS<\\/h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \\n\\n[youtube https:\\/\\/youtu.be\\/XPbKE8pq0i0]\\n\\nPlease have a look at the [tutorial](https:\\/\\/meowapps.com\\/media-file-renamer\\/tutorial\\/).<h3>COMPATIBILITY<\\/h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\\n\\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION<\\/h3>In the [Pro Version](https:\\/\\/meowapps.com\\/media-file-renamer\\/), you\'ll find many exciting features.\\n\\n- Automatically rename files based on attached posts, products, or ALT texts\\n- AI Suggestions (via AI Engine and OpenAI)\\n- Anonymize your files with anonymous filenames\\n- Move files to different directories in bulk\\n- Sync metadata like ALT texts and titles\\n- Number your files to allow for similar filenames\\n- Attach media entries to the posts or pages they\'re used in\\n- Use the Force Rename feature to re-link broken media entries to your files\\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT<\\/h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\\n\\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https:\\/\\/meowapps.com\\/media-file-renamer\\/issues\\/).<h3>FOR DEVELOPERS<\\/h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https:\\/\\/meowapps.com\\/media-file-renamer\\/issues\\/).<h3>A SIMPLER PLUGIN<\\/h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https:\\/\\/wordpress.org\\/plugins\\/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\",\"changelog\":\"<h4> 5.8.0 (2024\\/01\\/01) <\\/h4>\\n<ul>\\n<li>Fix: Issue with mfrh_media_renamed.<\\/li>\\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.<\\/li>\\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.<\\/li>\\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.<\\/li>\\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.<\\/li>\\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.<\\/li>\\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.<\\/li>\\n<li>&#x1f4ab; Happy New Year!<\\/li>\\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\\\"https:\\/\\/discord.gg\\/bHDGh38\\\">Discord Channel<\\/a>.<\\/li>\\n<li>&#x1f334; Please share some love <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/media-file-renamer\\/reviews\\/?rate=5#new-post\\\">here<\\/a>. Thank you!<\\/li>\\n<\\/ul>\\n<h4> 5.7.8 (2023\\/12\\/25) <\\/h4>\\n<ul>\\n<li>Update: Tools related to AI got better.<\\/li>\\n<li>Fix: Little fixes and enhancements for some users.<\\/li>\\n<li>&#x1f384; Merry Christmas!<\\/li>\\n<\\/ul>\\n<h4> 5.7.7 (2023\\/12\\/05) <\\/h4>\\n<ul>\\n<li>Update: Enhanced UI, clarified options, unified things.<\\/li>\\n<li>Add: Bulk Rename using AI Vision.<\\/li>\\n<li>Add: AI Vision on Upload.<\\/li>\\n<li>Add: Not Renamed filter in Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.7.4 (2023\\/11\\/25) <\\/h4>\\n<ul>\\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.<\\/li>\\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.<\\/li>\\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.<\\/li>\\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.<\\/li>\\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.<\\/li>\\n<li>Fix: Resolved an undefined function call issue in the API.<\\/li>\\n<\\/ul>\\n<h4> 5.7.3 (2023\\/11\\/20) <\\/h4>\\n<ul>\\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.<\\/li>\\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.<\\/li>\\n<li>Fix: Adjusted the default behavior of sync functionality.<\\/li>\\n<\\/ul>\\n<h4> 5.7.2 (2023\\/11\\/17) <\\/h4>\\n<ul>\\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.<\\/li>\\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.<\\/li>\\n<li>Add: Magic Wand for Metadata Fields.<\\/li>\\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.<\\/li>\\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.<\\/li>\\n<li>Update: Conducted various non-code related updates for improved performance.<\\/li>\\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.<\\/li>\\n<\\/ul>\\n<h4> 5.7.1 (2023\\/10\\/19) <\\/h4>\\n<ul>\\n<li>Fix: The action_update_postmeta filter was not working properly.<\\/li>\\n<li>Fix: Missing buttons in the modals.<\\/li>\\n<\\/ul>\\n<h4> 5.7.0 (2023\\/10\\/10) <\\/h4>\\n<ul>\\n<li>Update: For better confidentiality, the logs file is now randomly generated.<\\/li>\\n<li>Fix: Support of Windows servers.<\\/li>\\n<\\/ul>\\n<h4> 5.6.9 (2023\\/09\\/21) <\\/h4>\\n<ul>\\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.<\\/li>\\n<\\/ul>\\n<h4> 5.6.8 (2023\\/09\\/14) <\\/h4>\\n<ul>\\n<li>Add: Auto-Attach feature now use the data from <a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/media-cleaner\\/\\\">Media Cleaner<\\/a> (if available), which is extremely accurate!<\\/li>\\n<li>Fix: Random issues related to metadata not existing.<\\/li>\\n<li>Fix: Optimize the way the move feature works.<\\/li>\\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.<\\/li>\\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.<\\/li>\\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.<\\/li>\\n<\\/ul>\\n<h4> 5.6.6 (2023\\/07\\/21) <\\/h4>\\n<ul>\\n<li>Fix: Avoid warnings when the metadata isn\'t found.<\\/li>\\n<li>Fix: Better handling of metadata synchronization.<\\/li>\\n<li>Update: Enhanced the UI of the Renamer Field.<\\/li>\\n<\\/ul>\\n<h4> 5.6.5 (2023\\/06\\/21) <\\/h4>\\n<ul>\\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.<\\/li>\\n<li>Update: Latest version of the UI.<\\/li>\\n<\\/ul>\\n<h4> 5.6.4 (2023\\/06\\/02) <\\/h4>\\n<ul>\\n<li>Fix: Removed a few warnings.<\\/li>\\n<li>Fix: The paging issue.<\\/li>\\n<\\/ul>\\n<h4> 5.6.3 (2023\\/05\\/30) <\\/h4>\\n<ul>\\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.<\\/li>\\n<li>Fix: There were a few warning issues.<\\/li>\\n<li>Fix: There were some inconsistencies in the UI.<\\/li>\\n<\\/ul>\\n<h4> 5.6.2 (2023\\/05\\/13) <\\/h4>\\n<ul>\\n<li>Add: Some issues with spacing in some buttons.<\\/li>\\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/media-file-renamer\\/\\\">Support Forums<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 5.6.1 (2023\\/05\\/06) <\\/h4>\\n<ul>\\n<li>Add: We can now edit the ALT Text.<\\/li>\\n<\\/ul>\\n<h4> 5.6.0 (2023\\/05\\/02) <\\/h4>\\n<ul>\\n<li>Add: \'Attached To\' column is now hideable.<\\/li>\\n<li>Add: \'ALT Text\' data now available if enabled in the options.<\\/li>\\n<li>Update: Minimized the size of the bundle.<\\/li>\\n<\\/ul>\\n<h4> 5.5.9 (2023\\/03\\/18) <\\/h4>\\n<ul>\\n<li>Fix: Various fixes in the UI.<\\/li>\\n<li>Update: Latest UI framework.<\\/li>\\n<\\/ul>\\n<h4> 5.5.8 (2023\\/03\\/13) <\\/h4>\\n<ul>\\n<li>Add: AI filename suggestions.<\\/li>\\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.<\\/li>\\n<\\/ul>\\n<h4> 5.5.7 (2023\\/02\\/09) <\\/h4>\\n<ul>\\n<li>Add: New option to disable the Dashboard.<\\/li>\\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback\\/issues to fix them all at once in a good way. Thank you for your patience!<\\/li>\\n<\\/ul>\\n<h4> 5.5.5 (2023\\/02\\/01) <\\/h4>\\n<ul>\\n<li>Update: Clean the dashboard a bit, depending on the options.<\\/li>\\n<li>Fix: Issue in the Media Library with the Renamer field.<\\/li>\\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.<\\/li>\\n<\\/ul>\\n<h4> 5.5.4 (2023\\/01\\/29) <\\/h4>\\n<ul>\\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.<\\/li>\\n<\\/ul>\\n<h4> 5.5.3 (2023\\/01\\/27) <\\/h4>\\n<ul>\\n<li>Update: Better move features and cleaner UI.<\\/li>\\n<\\/ul>\\n<h4> 5.5.2 (2023\\/01\\/06) <\\/h4>\\n<ul>\\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.5.1 (2022\\/12\\/24) <\\/h4>\\n<ul>\\n<li>Update: Enhanced the hooks (filters).<\\/li>\\n<\\/ul>\\n<h4> 5.5.0 (2022\\/11\\/12) <\\/h4>\\n<ul>\\n<li>Fix: Enhanced the behavior of the UI.\\n= 5.4.9 (2022\\/10\\/30) =<\\/li>\\n<li>Fix: The link to the Dashboard was broken.<\\/li>\\n<\\/ul>\\n<h4> 5.4.8 (2022\\/10\\/24) <\\/h4>\\n<ul>\\n<li>Fix: There was an issue with WP-CLI in the latest versions.<\\/li>\\n<\\/ul>\\n<h4> 5.4.7 (2022\\/10\\/12) <\\/h4>\\n<ul>\\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).<\\/li>\\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.<\\/li>\\n<li>Update: Optimized the way options are updated and retrieved.<\\/li>\\n<li>Update: Some refactoring to simplify the code.<\\/li>\\n<\\/ul>\\n<h4> 5.4.5 (2022\\/09\\/27) <\\/h4>\\n<ul>\\n<li>Add: Auto-retry on failure, up to 10 times.<\\/li>\\n<li>Fix: Typos.<\\/li>\\n<\\/ul>\\n<h4> 5.4.3 (2022\\/08\\/11) <\\/h4>\\n<ul>\\n<li>Add: Handle errors gracefully (with retry, skip or cancel).<\\/li>\\n<\\/ul>\\n<h4> 5.4.1 (2022\\/08\\/03) <\\/h4>\\n<ul>\\n<li>Fix: Tiny UI bug in Safari.<\\/li>\\n<\\/ul>\\n<h4> 5.4.0 (2022\\/07\\/05) <\\/h4>\\n<ul>\\n<li>Add: Support for Elementor (update the metadata and CSS).<\\/li>\\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.<\\/li>\\n<\\/ul>\\n<h4> 5.3.9 (2022\\/06\\/16) <\\/h4>\\n<ul>\\n<li>Fix: The WebP files weren\'t not renamed perfectly.<\\/li>\\n<\\/ul>\\n<h4> 5.3.8 (2022\\/03\\/29) <\\/h4>\\n<ul>\\n<li>Fix: Support for WebP.<\\/li>\\n<li>Fix: Anonymize (MD5) on upload now works fine.<\\/li>\\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.<\\/li>\\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.<\\/li>\\n<\\/ul>\\n<h4> 5.3.6 (2022\\/02\\/01) <\\/h4>\\n<ul>\\n<li>Update: Fresh build and support for WordPress 5.9.<\\/li>\\n<\\/ul>\\n<h4> 5.3.5 (2021\\/11\\/10) <\\/h4>\\n<ul>\\n<li>Fix: Renaming of WebP uploaded directly to WordPress.<\\/li>\\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and\\/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.<\\/li>\\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.<\\/li>\\n<\\/ul>\\n<h4> 5.3.3 (2021\\/11\\/09) <\\/h4>\\n<ul>\\n<li>Fix: Avoid renaming when the URLs (before\\/after) are empty.<\\/li>\\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).<\\/li>\\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).<\\/li>\\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.<\\/li>\\n<li>Update: Optimized queries.<\\/li>\\n<li>Add: We can change the page (in the dashboard) by typing it.<\\/li>\\n<\\/ul>\\n<h4> 5.3.2 (2021\\/10\\/16) <\\/h4>\\n<ul>\\n<li>Add: AVIF support.<\\/li>\\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.<\\/li>\\n<\\/ul>\\n<h4> 5.3.0 (2021\\/10\\/09) <\\/h4>\\n<ul>\\n<li>Add: Better Force Rename.<\\/li>\\n<li>Add: Featured Images Only option.<\\/li>\\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.<\\/li>\\n<\\/ul>\\n<h4> 5.2.9 (2021\\/09\\/23) <\\/h4>\\n<ul>\\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.<\\/li>\\n<\\/ul>\\n<h4> 5.2.8 (2021\\/09\\/07) <\\/h4>\\n<ul>\\n<li>Add: Option to clean the plugin data on uninstall.<\\/li>\\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.<\\/li>\\n<\\/ul>\\n<h4> 5.2.7 (2021\\/09\\/03) <\\/h4>\\n<ul>\\n<li>Fix: Security update: access controls to the REST API and the options enforced.<\\/li>\\n<li>Updated: Dependencies update.<\\/li>\\n<\\/ul>\\n<h4> 5.2.5 (2021\\/08\\/25) <\\/h4>\\n<ul>\\n<li>Fix: Search feature was not always working well.<\\/li>\\n<li>Update: Better technical architecture.<\\/li>\\n<\\/ul>\\n<h4> 5.2.4 (2021\\/06\\/13) <\\/h4>\\n<ul>\\n<li>Add: Remember the number of entries per page (dashboard).<\\/li>\\n<li>Fix: Limit the length of the manual filename.<\\/li>\\n<\\/ul>\\n<h4> 5.2.3 (2021\\/05\\/29) <\\/h4>\\n<ul>\\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).<\\/li>\\n<\\/ul>\\n<h4> 5.2.2 (2021\\/05\\/18) <\\/h4>\\n<ul>\\n<li>Fix: Better Windows support.<\\/li>\\n<\\/ul>\\n<h4> 5.2.0 (2021\\/05\\/15) <\\/h4>\\n<ul>\\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).<\\/li>\\n<li>Add: Images Only option.<\\/li>\\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.<\\/li>\\n<\\/ul>\\n<h4> 5.1.9 (2021\\/04\\/09) <\\/h4>\\n<ul>\\n<li>Fix: The Synchronize Alt option wasn\'t working logically.<\\/li>\\n<\\/ul>\\n<h4> 5.1.8 (2021\\/03\\/04) <\\/h4>\\n<ul>\\n<li>Add: Search.<\\/li>\\n<li>Add: Quick rename the title from the dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.1.7 (2021\\/02\\/21) <\\/h4>\\n<ul>\\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.<\\/li>\\n<\\/ul>\\n<h4> 5.1.6 (2021\\/02\\/12) <\\/h4>\\n<ul>\\n<li>Fix: References for moved files were not updated.<\\/li>\\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.<\\/li>\\n<\\/ul>\\n<h4> 5.1.3 (2021\\/02\\/06)  <\\/h4>\\n<ul>\\n<li>Add: Greek support.<\\/li>\\n<li>Fix: Better sensitive file check.<\\/li>\\n<li>Fix: Manual rename with WP CLI.<\\/li>\\n<\\/ul>\\n<h4> 5.1.2 (2021\\/01\\/10) <\\/h4>\\n<ul>\\n<li>Add: Auto attach feature.<\\/li>\\n<li>Add: Added Locked in the filters.<\\/li>\\n<li>Update: Icons position.<\\/li>\\n<\\/ul>\\n<h4> 5.1.1 (2021\\/01\\/05) <\\/h4>\\n<ul>\\n<li>Fix: Issue with roles overriding and WP-CLI.<\\/li>\\n<li>Fix: Issue with REST in the Common Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.1.0 (2021\\/01\\/01) <\\/h4>\\n<ul>\\n<li>Add: Support overriding roles.<\\/li>\\n<li>Fix: The layout of the dashboard was broken by WPBakery.<\\/li>\\n<\\/ul>\"},\"banners\":{\"high\":\"https:\\/\\/meowapps.com\\/wp-content\\/uploads\\/edd\\/media-file-renamer-banner-1544x500.png\",\"low\":\"https:\\/\\/meowapps.com\\/wp-content\\/uploads\\/edd\\/media-file-renamer-banner-772x250.png\"},\"icons\":{\"1x\":\"https:\\/\\/meowapps.com\\/wp-content\\/uploads\\/Brush.png\",\"2x\":\"https:\\/\\/meowapps.com\\/wp-content\\/uploads\\/Brush.png\"},\"msg\":\"No license key has been provided.\",\"contributors\":{\"TigrouMeow\":{\"display_name\":\"TigrouMeow\",\"profile\":\"\\/\\/profiles.wordpress.org\\/TigrouMeow\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=TigrouMeow\"}},\"stable_tag\":\"5.8.0\",\"donate_link\":\"https:\\/\\/meowapps.com\\/donation\\/\",\"tested\":\"6.4\",\"added\":\"2022-09-01\",\"description\":[\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\\\"https:\\/\\/meowapps.com\\/media-file-renamer\\/\\\">Media File Renamer<\\/a>.<\\/p>\\n<h3>HOW IT WORKS<\\/h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \\n\\n[youtube https:\\/\\/youtu.be\\/XPbKE8pq0i0]\\n\\nPlease have a look at the [tutorial](https:\\/\\/meowapps.com\\/media-file-renamer\\/tutorial\\/).<h3>COMPATIBILITY<\\/h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\\n\\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION<\\/h3>In the [Pro Version](https:\\/\\/meowapps.com\\/media-file-renamer\\/), you\'ll find many exciting features.\\n\\n- Automatically rename files based on attached posts, products, or ALT texts\\n- AI Suggestions (via AI Engine and OpenAI)\\n- Anonymize your files with anonymous filenames\\n- Move files to different directories in bulk\\n- Sync metadata like ALT texts and titles\\n- Number your files to allow for similar filenames\\n- Attach media entries to the posts or pages they\'re used in\\n- Use the Force Rename feature to re-link broken media entries to your files\\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT<\\/h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\\n\\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https:\\/\\/meowapps.com\\/media-file-renamer\\/issues\\/).<h3>FOR DEVELOPERS<\\/h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https:\\/\\/meowapps.com\\/media-file-renamer\\/issues\\/).<h3>A SIMPLER PLUGIN<\\/h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https:\\/\\/wordpress.org\\/plugins\\/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\"],\"changelog\":[\"<h4> 5.8.0 (2024\\/01\\/01) <\\/h4>\\n<ul>\\n<li>Fix: Issue with mfrh_media_renamed.<\\/li>\\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.<\\/li>\\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.<\\/li>\\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.<\\/li>\\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.<\\/li>\\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.<\\/li>\\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.<\\/li>\\n<li>&#x1f4ab; Happy New Year!<\\/li>\\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\\\"https:\\/\\/discord.gg\\/bHDGh38\\\">Discord Channel<\\/a>.<\\/li>\\n<li>&#x1f334; Please share some love <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/media-file-renamer\\/reviews\\/?rate=5#new-post\\\">here<\\/a>. Thank you!<\\/li>\\n<\\/ul>\\n<h4> 5.7.8 (2023\\/12\\/25) <\\/h4>\\n<ul>\\n<li>Update: Tools related to AI got better.<\\/li>\\n<li>Fix: Little fixes and enhancements for some users.<\\/li>\\n<li>&#x1f384; Merry Christmas!<\\/li>\\n<\\/ul>\\n<h4> 5.7.7 (2023\\/12\\/05) <\\/h4>\\n<ul>\\n<li>Update: Enhanced UI, clarified options, unified things.<\\/li>\\n<li>Add: Bulk Rename using AI Vision.<\\/li>\\n<li>Add: AI Vision on Upload.<\\/li>\\n<li>Add: Not Renamed filter in Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.7.4 (2023\\/11\\/25) <\\/h4>\\n<ul>\\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.<\\/li>\\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.<\\/li>\\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.<\\/li>\\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.<\\/li>\\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.<\\/li>\\n<li>Fix: Resolved an undefined function call issue in the API.<\\/li>\\n<\\/ul>\\n<h4> 5.7.3 (2023\\/11\\/20) <\\/h4>\\n<ul>\\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.<\\/li>\\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.<\\/li>\\n<li>Fix: Adjusted the default behavior of sync functionality.<\\/li>\\n<\\/ul>\\n<h4> 5.7.2 (2023\\/11\\/17) <\\/h4>\\n<ul>\\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.<\\/li>\\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.<\\/li>\\n<li>Add: Magic Wand for Metadata Fields.<\\/li>\\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.<\\/li>\\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.<\\/li>\\n<li>Update: Conducted various non-code related updates for improved performance.<\\/li>\\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.<\\/li>\\n<\\/ul>\\n<h4> 5.7.1 (2023\\/10\\/19) <\\/h4>\\n<ul>\\n<li>Fix: The action_update_postmeta filter was not working properly.<\\/li>\\n<li>Fix: Missing buttons in the modals.<\\/li>\\n<\\/ul>\\n<h4> 5.7.0 (2023\\/10\\/10) <\\/h4>\\n<ul>\\n<li>Update: For better confidentiality, the logs file is now randomly generated.<\\/li>\\n<li>Fix: Support of Windows servers.<\\/li>\\n<\\/ul>\\n<h4> 5.6.9 (2023\\/09\\/21) <\\/h4>\\n<ul>\\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.<\\/li>\\n<\\/ul>\\n<h4> 5.6.8 (2023\\/09\\/14) <\\/h4>\\n<ul>\\n<li>Add: Auto-Attach feature now use the data from <a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/media-cleaner\\/\\\">Media Cleaner<\\/a> (if available), which is extremely accurate!<\\/li>\\n<li>Fix: Random issues related to metadata not existing.<\\/li>\\n<li>Fix: Optimize the way the move feature works.<\\/li>\\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.<\\/li>\\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.<\\/li>\\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.<\\/li>\\n<\\/ul>\\n<h4> 5.6.6 (2023\\/07\\/21) <\\/h4>\\n<ul>\\n<li>Fix: Avoid warnings when the metadata isn\'t found.<\\/li>\\n<li>Fix: Better handling of metadata synchronization.<\\/li>\\n<li>Update: Enhanced the UI of the Renamer Field.<\\/li>\\n<\\/ul>\\n<h4> 5.6.5 (2023\\/06\\/21) <\\/h4>\\n<ul>\\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.<\\/li>\\n<li>Update: Latest version of the UI.<\\/li>\\n<\\/ul>\\n<h4> 5.6.4 (2023\\/06\\/02) <\\/h4>\\n<ul>\\n<li>Fix: Removed a few warnings.<\\/li>\\n<li>Fix: The paging issue.<\\/li>\\n<\\/ul>\\n<h4> 5.6.3 (2023\\/05\\/30) <\\/h4>\\n<ul>\\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.<\\/li>\\n<li>Fix: There were a few warning issues.<\\/li>\\n<li>Fix: There were some inconsistencies in the UI.<\\/li>\\n<\\/ul>\\n<h4> 5.6.2 (2023\\/05\\/13) <\\/h4>\\n<ul>\\n<li>Add: Some issues with spacing in some buttons.<\\/li>\\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/media-file-renamer\\/\\\">Support Forums<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 5.6.1 (2023\\/05\\/06) <\\/h4>\\n<ul>\\n<li>Add: We can now edit the ALT Text.<\\/li>\\n<\\/ul>\\n<h4> 5.6.0 (2023\\/05\\/02) <\\/h4>\\n<ul>\\n<li>Add: \'Attached To\' column is now hideable.<\\/li>\\n<li>Add: \'ALT Text\' data now available if enabled in the options.<\\/li>\\n<li>Update: Minimized the size of the bundle.<\\/li>\\n<\\/ul>\\n<h4> 5.5.9 (2023\\/03\\/18) <\\/h4>\\n<ul>\\n<li>Fix: Various fixes in the UI.<\\/li>\\n<li>Update: Latest UI framework.<\\/li>\\n<\\/ul>\\n<h4> 5.5.8 (2023\\/03\\/13) <\\/h4>\\n<ul>\\n<li>Add: AI filename suggestions.<\\/li>\\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.<\\/li>\\n<\\/ul>\\n<h4> 5.5.7 (2023\\/02\\/09) <\\/h4>\\n<ul>\\n<li>Add: New option to disable the Dashboard.<\\/li>\\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback\\/issues to fix them all at once in a good way. Thank you for your patience!<\\/li>\\n<\\/ul>\\n<h4> 5.5.5 (2023\\/02\\/01) <\\/h4>\\n<ul>\\n<li>Update: Clean the dashboard a bit, depending on the options.<\\/li>\\n<li>Fix: Issue in the Media Library with the Renamer field.<\\/li>\\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.<\\/li>\\n<\\/ul>\\n<h4> 5.5.4 (2023\\/01\\/29) <\\/h4>\\n<ul>\\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.<\\/li>\\n<\\/ul>\\n<h4> 5.5.3 (2023\\/01\\/27) <\\/h4>\\n<ul>\\n<li>Update: Better move features and cleaner UI.<\\/li>\\n<\\/ul>\\n<h4> 5.5.2 (2023\\/01\\/06) <\\/h4>\\n<ul>\\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.5.1 (2022\\/12\\/24) <\\/h4>\\n<ul>\\n<li>Update: Enhanced the hooks (filters).<\\/li>\\n<\\/ul>\\n<h4> 5.5.0 (2022\\/11\\/12) <\\/h4>\\n<ul>\\n<li>Fix: Enhanced the behavior of the UI.\\n= 5.4.9 (2022\\/10\\/30) =<\\/li>\\n<li>Fix: The link to the Dashboard was broken.<\\/li>\\n<\\/ul>\\n<h4> 5.4.8 (2022\\/10\\/24) <\\/h4>\\n<ul>\\n<li>Fix: There was an issue with WP-CLI in the latest versions.<\\/li>\\n<\\/ul>\\n<h4> 5.4.7 (2022\\/10\\/12) <\\/h4>\\n<ul>\\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).<\\/li>\\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.<\\/li>\\n<li>Update: Optimized the way options are updated and retrieved.<\\/li>\\n<li>Update: Some refactoring to simplify the code.<\\/li>\\n<\\/ul>\\n<h4> 5.4.5 (2022\\/09\\/27) <\\/h4>\\n<ul>\\n<li>Add: Auto-retry on failure, up to 10 times.<\\/li>\\n<li>Fix: Typos.<\\/li>\\n<\\/ul>\\n<h4> 5.4.3 (2022\\/08\\/11) <\\/h4>\\n<ul>\\n<li>Add: Handle errors gracefully (with retry, skip or cancel).<\\/li>\\n<\\/ul>\\n<h4> 5.4.1 (2022\\/08\\/03) <\\/h4>\\n<ul>\\n<li>Fix: Tiny UI bug in Safari.<\\/li>\\n<\\/ul>\\n<h4> 5.4.0 (2022\\/07\\/05) <\\/h4>\\n<ul>\\n<li>Add: Support for Elementor (update the metadata and CSS).<\\/li>\\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.<\\/li>\\n<\\/ul>\\n<h4> 5.3.9 (2022\\/06\\/16) <\\/h4>\\n<ul>\\n<li>Fix: The WebP files weren\'t not renamed perfectly.<\\/li>\\n<\\/ul>\\n<h4> 5.3.8 (2022\\/03\\/29) <\\/h4>\\n<ul>\\n<li>Fix: Support for WebP.<\\/li>\\n<li>Fix: Anonymize (MD5) on upload now works fine.<\\/li>\\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.<\\/li>\\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.<\\/li>\\n<\\/ul>\\n<h4> 5.3.6 (2022\\/02\\/01) <\\/h4>\\n<ul>\\n<li>Update: Fresh build and support for WordPress 5.9.<\\/li>\\n<\\/ul>\\n<h4> 5.3.5 (2021\\/11\\/10) <\\/h4>\\n<ul>\\n<li>Fix: Renaming of WebP uploaded directly to WordPress.<\\/li>\\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and\\/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.<\\/li>\\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.<\\/li>\\n<\\/ul>\\n<h4> 5.3.3 (2021\\/11\\/09) <\\/h4>\\n<ul>\\n<li>Fix: Avoid renaming when the URLs (before\\/after) are empty.<\\/li>\\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).<\\/li>\\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).<\\/li>\\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.<\\/li>\\n<li>Update: Optimized queries.<\\/li>\\n<li>Add: We can change the page (in the dashboard) by typing it.<\\/li>\\n<\\/ul>\\n<h4> 5.3.2 (2021\\/10\\/16) <\\/h4>\\n<ul>\\n<li>Add: AVIF support.<\\/li>\\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.<\\/li>\\n<\\/ul>\\n<h4> 5.3.0 (2021\\/10\\/09) <\\/h4>\\n<ul>\\n<li>Add: Better Force Rename.<\\/li>\\n<li>Add: Featured Images Only option.<\\/li>\\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.<\\/li>\\n<\\/ul>\\n<h4> 5.2.9 (2021\\/09\\/23) <\\/h4>\\n<ul>\\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.<\\/li>\\n<\\/ul>\\n<h4> 5.2.8 (2021\\/09\\/07) <\\/h4>\\n<ul>\\n<li>Add: Option to clean the plugin data on uninstall.<\\/li>\\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.<\\/li>\\n<\\/ul>\\n<h4> 5.2.7 (2021\\/09\\/03) <\\/h4>\\n<ul>\\n<li>Fix: Security update: access controls to the REST API and the options enforced.<\\/li>\\n<li>Updated: Dependencies update.<\\/li>\\n<\\/ul>\\n<h4> 5.2.5 (2021\\/08\\/25) <\\/h4>\\n<ul>\\n<li>Fix: Search feature was not always working well.<\\/li>\\n<li>Update: Better technical architecture.<\\/li>\\n<\\/ul>\\n<h4> 5.2.4 (2021\\/06\\/13) <\\/h4>\\n<ul>\\n<li>Add: Remember the number of entries per page (dashboard).<\\/li>\\n<li>Fix: Limit the length of the manual filename.<\\/li>\\n<\\/ul>\\n<h4> 5.2.3 (2021\\/05\\/29) <\\/h4>\\n<ul>\\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).<\\/li>\\n<\\/ul>\\n<h4> 5.2.2 (2021\\/05\\/18) <\\/h4>\\n<ul>\\n<li>Fix: Better Windows support.<\\/li>\\n<\\/ul>\\n<h4> 5.2.0 (2021\\/05\\/15) <\\/h4>\\n<ul>\\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).<\\/li>\\n<li>Add: Images Only option.<\\/li>\\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.<\\/li>\\n<\\/ul>\\n<h4> 5.1.9 (2021\\/04\\/09) <\\/h4>\\n<ul>\\n<li>Fix: The Synchronize Alt option wasn\'t working logically.<\\/li>\\n<\\/ul>\\n<h4> 5.1.8 (2021\\/03\\/04) <\\/h4>\\n<ul>\\n<li>Add: Search.<\\/li>\\n<li>Add: Quick rename the title from the dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.1.7 (2021\\/02\\/21) <\\/h4>\\n<ul>\\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.<\\/li>\\n<\\/ul>\\n<h4> 5.1.6 (2021\\/02\\/12) <\\/h4>\\n<ul>\\n<li>Fix: References for moved files were not updated.<\\/li>\\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.<\\/li>\\n<\\/ul>\\n<h4> 5.1.3 (2021\\/02\\/06)  <\\/h4>\\n<ul>\\n<li>Add: Greek support.<\\/li>\\n<li>Fix: Better sensitive file check.<\\/li>\\n<li>Fix: Manual rename with WP CLI.<\\/li>\\n<\\/ul>\\n<h4> 5.1.2 (2021\\/01\\/10) <\\/h4>\\n<ul>\\n<li>Add: Auto attach feature.<\\/li>\\n<li>Add: Added Locked in the filters.<\\/li>\\n<li>Update: Icons position.<\\/li>\\n<\\/ul>\\n<h4> 5.1.1 (2021\\/01\\/05) <\\/h4>\\n<ul>\\n<li>Fix: Issue with roles overriding and WP-CLI.<\\/li>\\n<li>Fix: Issue with REST in the Common Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.1.0 (2021\\/01\\/01) <\\/h4>\\n<ul>\\n<li>Add: Support overriding roles.<\\/li>\\n<li>Fix: The layout of the dashboard was broken by WPBakery.<\\/li>\\n<\\/ul>\"],\"plugin\":\"media-file-renamer-pro\\/media-file-renamer-pro.php\",\"id\":\"media-file-renamer-pro\\/media-file-renamer-pro.php\"}\";}','no'),(213507,'vgse_post_type_setup_done','1','yes'),(213512,'vgse_detected_fields_post_updated','1689625089','yes'),(215878,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),(215879,'wc_blocks_version','11.6.2','yes'),(215880,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),(215912,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1704391829;}','yes'),(229898,'woocommerce_demo_store_notice','Dit is een demowinkel voor testdoeleinden - bestellingen worden niet gehonoreerd.','yes'),(230237,'loco_recent','a:4:{s:1:\"c\";s:21:\"Loco_data_RecentItems\";s:1:\"v\";i:0;s:1:\"d\";a:1:{s:6:\"bundle\";a:7:{s:43:\"plugin.contact-form-7/wp-contact-form-7.php\";i:1689976213;s:34:\"plugin.parcelpanel/parcelpanel.php\";i:1689986600;s:41:\"plugin.yith-woocommerce-wishlist/init.php\";i:1689987991;s:20:\"theme.flatsome-child\";i:1699670691;s:64:\"plugin.woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";i:1700336145;s:34:\"plugin.woocommerce/woocommerce.php\";i:1700336502;s:14:\"theme.flatsome\";i:1700345104;}}s:1:\"t\";i:1700345104;}','no'),(230553,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(230656,'_transient_dirsize_cache','a:3271:{s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/upgrade\";i:0;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/languages/plugins\";i:11348489;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/languages/loco/themes\";i:47988;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/languages/loco\";i:47988;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/languages\";i:17147709;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvivid_staging\";i:79;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/dancing-script\";i:50836;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/lato\";i:42528;s:64:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts\";i:93364;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvividbackups/wpvivid_log\";i:99824;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvividbackups\";i:818901865;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/mu-plugins\";i:895;s:65:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wflogs\";i:8074688;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvivid_uploads/Isolate\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvivid_uploads\";i:0;s:58:\"/home/customer/www/se.teng-shop.com/public_html/wp-content\";i:844218628;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/image\";i:25224;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-title\";i:1393;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-featured-image\";i:25915;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-pagination\";i:8453;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/separator\";i:5308;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/navigation-submenu\";i:5812;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/media-text\";i:13669;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/site-tagline\";i:1430;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/site-title\";i:2167;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/loginout\";i:510;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/more\";i:3698;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-navigation-link\";i:3059;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-date\";i:1058;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-content\";i:1369;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-reply-link\";i:1001;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/audio\";i:3456;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-edit-link\";i:1159;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/buttons\";i:11089;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/categories\";i:2105;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/tag-cloud\";i:3446;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/social-links\";i:51064;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-pagination-numbers\";i:1779;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/pullquote\";i:7653;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-author-name\";i:1138;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/shortcode\";i:4781;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-date\";i:1293;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/nextpage\";i:2985;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-author-name\";i:1069;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/navigation\";i:138260;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/table\";i:28378;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/avatar\";i:1874;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/navigation-link\";i:11573;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-title\";i:1829;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/block\";i:5014;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/cover\";i:77248;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/preformatted\";i:1468;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/read-more\";i:2280;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-comments-form\";i:9484;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/term-description\";i:1017;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/heading\";i:2049;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/text-columns\";i:2980;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/social-link\";i:2250;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/group\";i:12943;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/verse\";i:1653;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/columns\";i:8535;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/legacy-widget\";i:501;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/video\";i:11417;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/pattern\";i:324;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-author\";i:2893;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-pagination\";i:9144;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/calendar\";i:3750;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/site-logo\";i:9535;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/html\";i:3584;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-pagination-previous\";i:969;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/archives\";i:1585;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/code\";i:2426;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/gallery\";i:75476;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query\";i:6813;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-content\";i:845;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/template-part\";i:8383;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/paragraph\";i:5127;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/page-list\";i:7792;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/list-item\";i:876;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/widget-group\";i:319;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-author-biography\";i:922;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/freeform\";i:38063;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/latest-comments\";i:4765;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/file\";i:9351;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/home-link\";i:1076;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments\";i:28862;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-pagination-numbers\";i:1779;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/page-list-item\";i:1055;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-template\";i:5221;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/spacer\";i:4179;s:70:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/rss\";i:5023;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-excerpt\";i:2809;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/missing\";i:564;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/column\";i:1443;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/list\";i:1944;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-pagination-next\";i:939;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-pagination-next\";i:957;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-pagination-previous\";i:951;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-no-results\";i:845;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/latest-posts\";i:11200;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/embed\";i:10994;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/search\";i:8701;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-title\";i:1646;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/quote\";i:6200;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/button\";i:16094;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-template\";i:2856;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-terms\";i:1661;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks\";i:1254376;s:63:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/ID3\";i:1155209;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/random_compat\";i:43330;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/library\";i:261;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Cookie\";i:4174;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Response\";i:3003;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Utility\";i:6651;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Auth\";i:2541;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Proxy\";i:4217;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Transport\";i:34845;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Exception/Http\";i:16715;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Exception/Transport\";i:1397;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Exception\";i:22464;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src\";i:211548;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests\";i:211809;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/certificates\";i:233231;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/style-engine\";i:38240;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/assets\";i:22976;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/rest-api/fields\";i:22340;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/rest-api/endpoints\";i:737446;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/rest-api/search\";i:15909;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/rest-api\";i:862847;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Decode/HTML\";i:17241;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Decode\";i:17241;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Net\";i:7493;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Parse\";i:20551;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Content/Type\";i:8015;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Content\";i:8015;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/HTTP\";i:11487;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/XML/Declaration\";i:7098;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/XML\";i:7098;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Cache\";i:39607;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie\";i:458625;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/lib\";i:87301;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced\";i:2698;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32\";i:437041;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core\";i:452743;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/PHP52\";i:4116;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src\";i:1207254;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat\";i:1303466;s:65:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/fonts\";i:289826;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/theme-compat\";i:15443;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/customize\";i:174759;s:63:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/IXR\";i:33915;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/block-supports\";i:96918;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/mediaelement/renderers\";i:18880;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/mediaelement\";i:721307;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/dist/vendor\";i:2546686;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/dist/development\";i:178306;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/dist\";i:17656960;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/thickbox\";i:31233;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/jquery/ui\";i:808535;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/jquery\";i:1334335;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/plupload\";i:489844;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/image\";i:55874;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wplink\";i:26476;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/media\";i:57914;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/hr\";i:1347;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/paste\";i:113193;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/lists\";i:97383;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/link\";i:32949;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins\";i:606961;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/utils\";i:18822;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/langs\";i:15529;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins\";i:233085;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/themes/modern\";i:446221;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/themes/inlite\";i:452642;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/themes\";i:898863;s:70:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce\";i:2853651;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/crop\";i:20004;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/imgareaselect\";i:49549;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/codemirror\";i:1287141;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/swfupload\";i:8715;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/jcrop\";i:24976;s:62:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js\";i:26886648;s:64:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/pomo\";i:54177;s:70:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/php-compat\";i:1251;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sitemaps/providers\";i:16711;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sitemaps\";i:46858;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Text/Diff/Engine\";i:31662;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Text/Diff/Renderer\";i:5535;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Text/Diff\";i:44010;s:64:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Text\";i:56929;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images/smilies\";i:10082;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images/media\";i:2419;s:70:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images/wlw\";i:4413;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images/crystal\";i:15541;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images\";i:103747;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/customize-widgets\";i:24658;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/block-library\";i:734082;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/editor\";i:75828;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/edit-widgets\";i:106298;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/format-library\";i:8166;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/block-directory\";i:14924;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/components\";i:348353;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/block-editor\";i:569571;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/list-reusable-blocks\";i:18974;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/reusable-blocks\";i:2216;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/edit-post\";i:204758;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/nux\";i:11618;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/widgets\";i:23682;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/edit-site\";i:257772;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist\";i:2400900;s:63:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css\";i:3048347;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/widgets\";i:157493;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/html-api\";i:77819;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/block-patterns\";i:8843;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/PHPMailer\";i:228372;s:59:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes\";i:43685913;s:64:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/network\";i:125036;s:65:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/includes\";i:2966244;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/js/widgets\";i:139376;s:59:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/js\";i:1908892;s:62:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/maint\";i:7597;s:61:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/user\";i:3418;s:63:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/images\";i:396786;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/ectoplasm\";i:78534;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/light\";i:79254;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/sunrise\";i:79307;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/modern\";i:78247;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/ocean\";i:76021;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/blue\";i:78570;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/coffee\";i:76792;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/midnight\";i:79386;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors\";i:649988;s:60:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css\";i:2506753;s:56:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin\";i:8829026;s:59:\"/home/customer/www/se.teng-shop.com/public_html/.well-known\";i:9114;s:47:\"/home/customer/www/se.teng-shop.com/public_html\";i:899768844;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/languages\";i:1889008;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/extensions\";i:16052;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/builder/custom\";i:458523;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/builder/vendors\";i:331289;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/builder/core\";i:302580;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/builder\";i:1092392;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/admin\";i:35926;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js\";i:1717418;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/extensions\";i:10476;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/builder/custom\";i:2398;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/builder/core\";i:109147;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/builder\";i:111545;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/admin\";i:12978;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/icons\";i:81079;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css\";i:558705;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/img/dividers\";i:6750;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/img/payment-icons\";i:395601;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/img/effects\";i:33512;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/img\";i:450787;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/libs\";i:97990;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets\";i:2828672;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-lazy-load\";i:7387;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-variation-images/includes\";i:14388;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-variation-images\";i:14627;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-ajax-add-to-cart\";i:1392;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/templates\";i:682;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll\";i:7797;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-live-search\";i:24314;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert/min\";i:147696;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert\";i:324110;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-cookie-notice\";i:2787;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes\";i:47987;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-swatches\";i:48203;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-instant-page\";i:4092;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-wc-quick-view\";i:1749;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-cart-refresh\";i:1263;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions\";i:439444;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/blocks/uxbuilder\";i:872;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/blocks\";i:872;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img/thumbnails\";i:656269;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img/shortcodes\";i:601479;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img/options\";i:3581;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img/icons\";i:54790;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img\";i:1318354;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets\";i:1318354;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/components\";i:198;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/shortcodes\";i:3380;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/filters\";i:10554;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/actions\";i:16658;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/templates\";i:10151;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/helpers\";i:26347;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Transformers\";i:9461;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Collections\";i:6846;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Post\";i:5939;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Services\";i:2940;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Elements\";i:3062;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Ajax\";i:18111;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Options/Custom\";i:2647;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Options\";i:12027;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src\";i:61854;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server\";i:127693;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core\";i:1452604;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/values\";i:8654;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections\";i:64212;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids\";i:44370;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners\";i:57837;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails\";i:724611;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/templates\";i:27734;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/helpers\";i:1309;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/commons\";i:25471;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes\";i:1004639;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/templates/thumbs\";i:610240;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/templates/content\";i:67566;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/templates\";i:684785;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder\";i:3148333;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-yith-ajax-navigation\";i:1022;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wp-rocket\";i:1885;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-extra-product-options\";i:1753;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/ninjaforms\";i:294;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/rank-math\";i:4101;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/sensei\";i:924;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-bookings\";i:372;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-bulk-variations\";i:415;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wcml\";i:1276;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-easy-booking\";i:372;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/contact-form-7\";i:1828;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-product-designer\";i:186;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wp-seopress\";i:2243;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-advanced-product-labels\";i:192;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/all-in-one-seo\";i:1772;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-composite-products\";i:1268;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/ubermenu\";i:1019;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist\";i:9104;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wp-seo\";i:5107;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wpml\";i:1009;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations\";i:42079;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/front-end\";i:2323;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets/js/min\";i:30715;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets/js\";i:95603;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets/images\";i:18046;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets/css\";i:18267;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets\";i:131916;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/classes\";i:29325;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/functions\";i:45268;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced\";i:210687;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/gutenberg/assets/js\";i:5799;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/gutenberg/assets/css\";i:279;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/gutenberg/assets\";i:6078;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/gutenberg\";i:10004;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/panel/sections\";i:18689;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/panel/img\";i:70821;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/panel\";i:101939;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/backend/menu\";i:12395;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/backend\";i:12395;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/classes\";i:43557;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/social\";i:10135;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/portfolio\";i:10494;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/global\";i:670;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/blog\";i:16520;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/footer\";i:14597;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/header/img\";i:365003;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/header\";i:471729;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/helpers\";i:5370;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/shop\";i:67697;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/styles\";i:19251;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/pages/meta\";i:7207;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/pages\";i:10767;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/layout\";i:4224;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/notifications\";i:3521;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options\";i:635445;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/field\";i:50990;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/lib\";i:39660;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n\";i:44151;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js\";i:961039;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/css\";i:65600;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo\";i:1027618;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/wp-color-picker-alpha\";i:14545;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/fontawesome\";i:128232;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor\";i:1170395;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/images\";i:15191;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets\";i:1185586;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/deprecated\";i:7364;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/preset\";i:2301;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/gutenberg\";i:5527;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/panels\";i:1163;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections\";i:3941;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections\";i:17018;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts\";i:889681;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/css-vars\";i:5910;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/post-meta\";i:3239;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/field-dependencies\";i:7681;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/tooltips\";i:5248;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/loading\";i:3740;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/css/field\";i:9354;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/css/property\";i:4830;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/css\";i:40052;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/selective-refresh\";i:2357;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/google\";i:8266;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules\";i:17142;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core\";i:46510;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src\";i:64381;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit\";i:76886;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader\";i:78844;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/postmessage\";i:11609;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/icons\";i:3447;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules\";i:1076654;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/core\";i:99539;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls/php\";i:96670;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls/views\";i:10759;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls/js\";i:145937;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls/css\";i:24143;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls\";i:278948;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki\";i:2822037;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/content\";i:661255;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/importer\";i:73508;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/js\";i:31788;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/css\";i:12163;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/presets/logos\";i:10244;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/presets\";i:27416;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/child-theme\";i:118327;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup\";i:1006382;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/customizer/js\";i:618;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/customizer/img\";i:778768;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/customizer\";i:787955;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin\";i:5656849;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/post-types\";i:18490;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/classes\";i:230658;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/woocommerce\";i:85077;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/shortcodes/commons\";i:3269;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/shortcodes/ux_countdown\";i:9847;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/shortcodes\";i:233478;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/helpers\";i:31400;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/structure\";i:83618;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/widgets\";i:12730;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/functions\";i:113345;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc\";i:10106593;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/notices\";i:3414;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/global\";i:8970;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/single-product/tabs\";i:6184;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/single-product/headers\";i:2216;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/single-product/layouts\";i:19597;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/single-product\";i:71659;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/checkout/layouts\";i:3497;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/checkout\";i:21082;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/cart\";i:17445;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/myaccount\";i:25604;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/loop\";i:7586;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/layouts/headers\";i:2250;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/layouts\";i:12786;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce\";i:202622;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/portfolio\";i:14271;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/admin/envato\";i:8223;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/admin\";i:8223;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/footer\";i:3948;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/header/partials\";i:39149;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/header\";i:46959;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/overlays\";i:2862;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/shortcodes\";i:262;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/pages\";i:5268;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/posts/partials\";i:10121;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/posts/loop\";i:1292;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/posts\";i:26655;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts\";i:108448;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome\";i:15439133;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome-child\";i:1489213;s:65:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes\";i:16928374;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/admin/tmpl\";i:2273;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/admin/views\";i:28341;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/admin/config\";i:5118;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/admin\";i:237906;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/inc\";i:123555;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/js\";i:28769;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-edd-integration/src\";i:16069;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-edd-integration\";i:16421;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/scss\";i:396;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js/editor/notices\";i:706;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js/editor/controls\";i:11003;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js/editor/styles\";i:432;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js/editor\";i:21671;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js\";i:22369;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/lang\";i:2381;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources\";i:25146;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/src\";i:16081;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/public/js\";i:40677;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/public/css\";i:693;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/public\";i:41563;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions\";i:86314;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-meta-box-integration/src\";i:8109;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-meta-box-integration\";i:8943;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-hierarchy/admin\";i:8437;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-hierarchy/inc\";i:9355;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-hierarchy\";i:82394;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-givewp-integration/src\";i:11965;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-givewp-integration\";i:12328;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-acf-integration/src\";i:14645;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-acf-integration\";i:15483;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-woocommerce-integration/src\";i:13660;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-woocommerce-integration\";i:14028;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/bootstrap\";i:988;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/resources/build\";i:424;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/resources\";i:424;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/app\";i:11995;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/config\";i:1063;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access\";i:34999;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-levels/admin\";i:11516;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-levels\";i:161561;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-core-create-caps\";i:22994;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-privacy-caps/resources/build\";i:424;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-privacy-caps/resources\";i:424;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-privacy-caps\";i:23340;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-category-and-tag-caps/src\";i:4058;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-category-and-tag-caps\";i:5991;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons\";i:484796;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/css\";i:38425;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/lang\";i:68319;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/templates\";i:452;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/img\";i:469371;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members\";i:1516445;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/languages\";i:369105;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/mailchimp-api-php/src/http\";i:5505;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/mailchimp-api-php/src\";i:106704;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/mailchimp-api-php\";i:106704;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Data\";i:4511;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Adapter\";i:49964;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/HttpClient\";i:22168;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Thirdparty/OAuth\";i:18911;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Thirdparty\";i:18911;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Logger\";i:5626;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Storage\";i:3531;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Exception\";i:9075;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src\";i:119682;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly\";i:261213;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin\";i:367917;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/soundasleep/html2text/src\";i:11087;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/soundasleep/html2text\";i:25109;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/soundasleep\";i:25109;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/drewm/drip/scripts\";i:94;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/drewm/drip/src\";i:10126;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/drewm/drip\";i:11301;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/drewm\";i:11301;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/.github/workflows\";i:4035;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/.github\";i:4035;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/src/Composer/Installers\";i:77612;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/src/Composer\";i:77612;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/src\";i:78080;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers\";i:83390;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer\";i:471801;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains/wp-background-processing/bin\";i:6004;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains/wp-background-processing/.circleci\";i:1950;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains/wp-background-processing/classes\";i:19381;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains/wp-background-processing\";i:46402;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains\";i:46402;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/collizo4sky/persist-admin-notices-dismissal\";i:5829;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/collizo4sky\";i:5829;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/bin\";i:3333;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/barryvdh/composer-cleanup-plugin/src\";i:12803;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/barryvdh/composer-cleanup-plugin\";i:12803;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/barryvdh\";i:12803;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation-contracts/Test\";i:15927;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation-contracts\";i:30650;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Parser\";i:42755;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Node\";i:17182;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Exception\";i:4181;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/XPath\";i:39841;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector\";i:107180;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/deprecation-contracts\";i:4309;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-php80/Resources\";i:2168;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-php80\";i:10522;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-mbstring/Resources/unidata\";i:55556;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-mbstring/Resources\";i:56387;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-mbstring\";i:92924;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Dumper\";i:29419;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/DataCollector\";i:4475;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Formatter\";i:5405;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Catalogue\";i:13502;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Writer\";i:3072;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Provider\";i:12235;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Loader\";i:36743;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Extractor\";i:17889;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Reader\";i:2427;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Resources/data\";i:3187;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Resources/bin\";i:8879;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Resources/schemas\";i:129021;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Resources\";i:141649;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Util\";i:9434;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Command\";i:28313;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/DependencyInjection\";i:12562;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Exception\";i:7711;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation\";i:379773;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony\";i:625358;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/bin\";i:484;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/lazy/Carbon/PHPStan\";i:4454;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter\";i:1906;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/lazy/Carbon\";i:8875;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/lazy\";i:8875;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Lang\";i:954282;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Cli\";i:934;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Laravel\";i:3215;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Traits\";i:439686;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Doctrine\";i:6608;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/PHPStan\";i:12577;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Exceptions\";i:22223;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/List\";i:36772;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/MessageFormatter\";i:1247;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon\";i:2249489;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src\";i:2249489;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon\";i:2265119;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot\";i:2265119;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src\";i:161410;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser\";i:194371;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm\";i:194371;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src/Caching\";i:2073;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src/Css\";i:8803;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src\";i:93292;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier\";i:94360;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago\";i:94360;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/league/csv/src/Polyfill\";i:7018;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/league/csv/src\";i:102152;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/league/csv\";i:103607;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/league\";i:103607;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor\";i:4227737;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/bin\";i:3889;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/tests/Triggers\";i:1025;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/tests/Connections\";i:747;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/tests/Repositories\";i:5034;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/tests\";i:8022;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/RegisterActivation\";i:5717;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/SettingsPage\";i:202859;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/OptinForm\";i:184146;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/CustomControls/EmailContentBuilder/Elements\";i:28364;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/CustomControls/EmailContentBuilder\";i:46597;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/CustomControls\";i:590226;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/EmailCampaign\";i:185078;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer\";i:978552;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Installer\";i:25416;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin\";i:1253016;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/NewPublishPost/Templates\";i:13896;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/NewPublishPost\";i:29478;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/PostsEmailDigest/Templates\";i:14526;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/PostsEmailDigest\";i:29963;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/Newsletter/Templates\";i:26858;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/Newsletter\";i:36905;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns\";i:148879;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/admin\";i:52536;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/select2\";i:85817;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/toggle-control\";i:5731;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/tab-toggle\";i:2048;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/datetime-control\";i:223817;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/tagit\";i:15251;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/buttonset-control\";i:1089;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/tinymce-expanded-editor\";i:2503;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/integration-control\";i:25964;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/email-content-control\";i:38602;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/fields-control\";i:22546;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/font-size-control\";i:2587;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/range-value-control\";i:3337;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/ace-editor\";i:1663267;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls\";i:2177956;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/src\";i:176314;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js\";i:2491511;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/sound\";i:555896;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/email-templates\";i:168869;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/liatris\";i:127463;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/scilla\";i:23755;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/hosta\";i:495125;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/quince\";i:138460;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/bannino\";i:721566;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/alyssum\";i:53043;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes\";i:2475555;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/email-builder-elements\";i:5510;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images\";i:3273472;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/css/admin\";i:54308;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/css\";i:106447;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/fancybox\";i:81053;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/chosen\";i:40617;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/tooltipster\";i:50559;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/toastr\";i:12582;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets\";i:6612137;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Connections\";i:29259;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Repositories\";i:88797;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Functions\";i:104039;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/OptinForms/Sidebar\";i:43920;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/OptinForms/Lightbox\";i:34611;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/OptinForms/Inpost\";i:59077;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/OptinForms\";i:294600;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/PluginSettings\";i:3596;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Logging\";i:6656;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src\";i:8635851;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core\";i:8742808;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ConvertKitConnect\";i:28195;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/EasyDigitalDownloadsConnect/assets\";i:3549;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/EasyDigitalDownloadsConnect\";i:76283;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/NewsmanConnect\";i:18288;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LeadBankConnect\";i:6034;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/HubspotConnect\";i:25494;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/FacebookCustomAudienceConnect\";i:21841;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/RCPConnect/assets\";i:1417;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/RCPConnect\";i:52128;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/VerticalResponseConnect\";i:20569;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/NinjaFormsConnect/Integrations\";i:341280;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/NinjaFormsConnect\";i:354806;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GiveWPConnect/assets\";i:3430;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GiveWPConnect\";i:62683;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SalesforceConnect\";i:22736;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ZohoCampaignsConnect\";i:27663;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ForminatorFormConnect\";i:78210;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LearnDashConnect/assets\";i:4786;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LearnDashConnect\";i:77681;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/FormidableFormConnect\";i:16548;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WPFormsConnect\";i:23914;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendinblueConnect\";i:32446;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ContactForm7Connect\";i:19547;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LifterLMSConnect/assets\";i:3177;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LifterLMSConnect\";i:64755;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WeMailConnect\";i:14409;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/OmnisendConnect\";i:14816;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailsterConnect\";i:9452;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/AweberConnect\";i:21510;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CleverReachConnect\";i:28871;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MicrosoftDynamic365Connect\";i:25828;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/OntraportConnect\";i:20450;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/PmProConnect/assets\";i:1457;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/PmProConnect\";i:53904;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailPoetConnect\";i:10605;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/KlaviyoConnect\";i:23259;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GetResponseConnect\";i:33998;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/EmmaConnect\";i:20382;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect/APIClass/Api\";i:7755;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect/APIClass/Exceptions\";i:132;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect/APIClass/Common\";i:10485;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect/APIClass\";i:20731;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect\";i:37698;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ConvertFoxConnect\";i:16210;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/UserRegistrationOptinConnect/assets\";i:1825;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/UserRegistrationOptinConnect\";i:23528;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CampaignMonitorConnect\";i:24841;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendlaneConnect\";i:17849;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ActiveCampaignConnect/APIClass/includes/exceptions\";i:706;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ActiveCampaignConnect/APIClass/includes\";i:53977;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ActiveCampaignConnect/APIClass\";i:55058;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ActiveCampaignConnect\";i:80157;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WooSubscriptionsConnect\";i:20334;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendFoxConnect\";i:12128;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendyConnect\";i:26103;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/InfusionsoftConnect\";i:39060;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ElementorConnect/assets\";i:5348;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ElementorConnect\";i:23808;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MemberPressConnect/assets\";i:7092;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MemberPressConnect\";i:83672;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/RegisteredUsersConnect\";i:16263;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/Mailerlitev2Connect\";i:17777;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/BenchmarkEmailConnect\";i:13641;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MoosendConnect/assets\";i:2216;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MoosendConnect\";i:29459;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WebHookConnect/assets\";i:7934;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WebHookConnect\";i:25114;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/EmailOctopusConnect\";i:16849;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/FluentCRMConnect\";i:10171;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/Ctctv3Connect\";i:33970;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailChimpConnect/assets\";i:9459;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailChimpConnect\";i:71697;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailjetConnect\";i:40746;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GEMConnect\";i:15437;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WooMembershipConnect\";i:21830;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WooCommerceConnect/assets\";i:6928;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WooCommerceConnect\";i:104222;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WordPressUserRegistrationConnect\";i:8615;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GravityFormsConnect\";i:21704;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ZohoCRMConnect\";i:27905;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendGridConnect\";i:23092;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CtctConnect\";i:17461;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/DripConnect\";i:20475;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CommentOptinConnect/assets\";i:1626;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CommentOptinConnect\";i:22726;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections\";i:2285018;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src\";i:11027826;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin\";i:15690866;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/fonts\";i:0;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/js/amcharts\";i:0;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/js\";i:54091;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/images\";i:556299;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/css/fonts\";i:0;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/css/icons\";i:0;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/css\";i:59033;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/shipment-provider-img\";i:0;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets\";i:669583;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/api/v3\";i:0;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/api/v1\";i:0;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/api\";i:16566;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/vendor/persist-admin-notices-dismissal\";i:0;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/vendor\";i:0;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/views/front\";i:0;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/views\";i:46696;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/emails\";i:11674;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/customizer/preview\";i:0;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/customizer/assets\";i:31649;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/customizer\";i:76837;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes\";i:362820;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/lang\";i:901847;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/email/plain\";i:0;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/email\";i:0;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/tracking\";i:0;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/myaccount\";i:7113;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/pip\";i:0;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/emails/plain\";i:1599;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/emails\";i:19420;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates\";i:26533;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking\";i:2000669;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/languages\";i:1265102;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/fonts\";i:4959076;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/js/pdf_js\";i:1353430;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/js\";i:1426845;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/images\";i:44926;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/css\";i:69785;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets\";i:6500632;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/legacy\";i:16469;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/views/setup-wizard\";i:10926;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/views\";i:48010;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/compatibility\";i:12127;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/documents\";i:130737;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes\";i:495221;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/composer\";i:58038;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/bin\";i:0;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-iconv/Resources/charset\";i:1520367;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-iconv/Resources\";i:1520367;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-iconv\";i:1548538;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-mbstring/Resources/unidata\";i:55556;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-mbstring/Resources\";i:55556;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-mbstring\";i:92412;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony\";i:1640950;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/lib/res\";i:8633;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/lib/fonts\";i:7796880;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/lib\";i:8026629;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Image\";i:10467;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Adapter\";i:95711;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Positioner\";i:15054;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Frame\";i:20750;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/FrameDecorator\";i:87910;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/FrameReflower\";i:126125;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Renderer\";i:70798;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Css\";i:205073;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Exception\";i:571;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src\";i:858170;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf\";i:8917294;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf\";i:8917294;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src/Svg/Gradient\";i:312;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src/Svg/Tag\";i:45370;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src/Svg/Surface\";i:245448;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src/Svg\";i:323069;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src\";i:323069;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib\";i:331670;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/maps\";i:103891;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/WOFF\";i:3649;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/TrueType\";i:14960;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/OpenType\";i:831;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/Glyph\";i:18151;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/EOT\";i:6671;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/Exception\";i:202;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/Table/Type\";i:32196;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/Table\";i:36541;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib\";i:101241;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src\";i:101241;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib\";i:231152;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx\";i:562822;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src\";i:161410;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser\";i:191843;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm\";i:191843;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/bin\";i:638;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/src/HTML5/Parser\";i:101565;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/src/HTML5/Serializer\";i:68755;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/src/HTML5\";i:252957;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/src\";i:261503;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5\";i:281192;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds\";i:281192;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor\";i:11652910;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates/Simple\";i:18996;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates\";i:18996;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips\";i:20066057;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/lib/migrations\";i:41990;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/lib/dependency-injection\";i:2133;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/lib\";i:140664;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/exceptions\";i:1090;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/formatter\";i:30875;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/metabox\";i:65929;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/filters\";i:9133;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/capabilities\";i:15766;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/roles\";i:8133;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/watchers\";i:6993;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/form\";i:1101;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/tabs/network\";i:11886;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard\";i:2105;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/tabs/tool\";i:7897;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/tabs\";i:21888;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views\";i:104019;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/ajax\";i:6927;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/statistics\";i:7966;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/notifiers\";i:3612;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/import/plugins\";i:59928;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/import\";i:67852;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/services\";i:2475;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/taxonomy\";i:39298;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/tracking\";i:24743;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/google_search_console/views\";i:3369;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/google_search_console\";i:3804;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/menu\";i:26149;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/endpoints\";i:3824;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/pages\";i:5812;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/listeners\";i:304;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin\";i:807747;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor/composer\";i:315156;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor\";i:315334;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/inc/exceptions\";i:402;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/inc/sitemaps\";i:100911;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/inc/options\";i:141394;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/inc\";i:538139;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/js/dist/languages\";i:2020377;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/js/dist/externals\";i:1687896;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/js/dist\";i:6462926;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/js\";i:6462926;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/images/support\";i:44545;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/images/academy\";i:107992;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/images\";i:636050;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/css/dist\";i:1538313;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/css\";i:1542484;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/initializers\";i:13710;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation\";i:948;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/importing\";i:427;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/indexable\";i:6623;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens\";i:1336;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/oauth\";i:2072;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions\";i:11945;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/wrappers\";i:3034;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/blocks\";i:15756;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/front-end\";i:68525;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/alerts\";i:1848;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation\";i:9540;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/admin\";i:151975;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/watchers\";i:102785;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/third-party\";i:76576;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations\";i:492088;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/addon-installation\";i:6340;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/configuration\";i:7205;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/indexing\";i:37527;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo\";i:66597;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/importing\";i:79459;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/semrush\";i:4581;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/indexables\";i:3855;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/wincher\";i:13341;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions\";i:159071;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/wordpress\";i:1474;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/builders\";i:90322;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values/robots\";i:4147;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values/indexables\";i:1407;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values/open-graph\";i:1157;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values/oauth\";i:3219;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values\";i:12762;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/memoizers\";i:7531;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/loggers\";i:1094;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/routes\";i:62364;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/content-type-visibility/user-interface\";i:4297;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/content-type-visibility/application\";i:10197;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/content-type-visibility\";i:14494;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/commands\";i:15846;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/admin/ryte\";i:10188;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/admin/views\";i:5886;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/admin\";i:17526;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/frontend\";i:10945;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/i18n\";i:2125;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin\";i:28846;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party\";i:6082;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations\";i:37863;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/actions/configuration\";i:294;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/actions\";i:18296;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/routes\";i:26758;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/schema-templates/assets\";i:13332;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/schema-templates\";i:13332;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party\";i:1176;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals\";i:3723;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/services/health-check\";i:11969;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/services\";i:11969;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/generators/schema/third-party\";i:3107;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/generators/schema\";i:3107;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/generators\";i:3107;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/presenters/admin\";i:793;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/presenters\";i:793;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/helpers\";i:6751;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src\";i:122592;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated\";i:153226;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/conditionals/admin\";i:5299;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/conditionals/third-party\";i:7272;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/conditionals/traits\";i:475;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/conditionals\";i:38670;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/surfaces/values\";i:12180;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/surfaces\";i:37243;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services/health-check\";i:31349;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services/importing/aioseo\";i:11468;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services/importing\";i:17251;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services/indexables\";i:2336;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services\";i:50936;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/generators/schema\";i:44607;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/generators\";i:85240;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/webmaster\";i:2983;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/twitter\";i:5950;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/admin\";i:41770;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/debug\";i:2443;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/slack\";i:2142;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/open-graph\";i:12949;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters\";i:96299;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/helpers/twitter\";i:1152;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/helpers/open-graph\";i:5565;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/helpers/schema\";i:14124;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/helpers\";i:193405;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/models\";i:9007;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presentations\";i:53051;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/generated/assets\";i:19138;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/generated\";i:527800;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/context\";i:18238;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/config/migrations\";i:35564;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/config\";i:81006;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/repositories\";i:51348;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/analytics/user-interface\";i:1602;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/analytics/application\";i:6461;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/analytics/domain\";i:4482;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/analytics\";i:12545;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src\";i:2303573;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/packages/js/images\";i:206388;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/packages/js\";i:206388;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/packages\";i:206388;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie\";i:27884;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler\";i:59034;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception\";i:9195;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src\";i:198714;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle\";i:198714;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src\";i:60156;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises\";i:60156;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src\";i:172782;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7\";i:172782;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp\";i:431652;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Argument\";i:907;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag\";i:18515;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception\";i:7089;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection\";i:50999;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony\";i:50999;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/build\";i:26236;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Support\";i:15719;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/DataTransferObjects\";i:748;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Helpers\";i:36467;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Translations\";i:2497;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Exceptions\";i:124;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Controllers\";i:30850;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Config\";i:6011;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app\";i:100510;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk\";i:126746;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof\";i:126746;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log\";i:11844;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr\";i:11844;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log\";i:11844;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src\";i:46661;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message\";i:46661;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src\";i:1680;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container\";i:1680;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr\";i:60185;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider\";i:3990;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool\";i:15110;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token\";i:8698;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/Exception\";i:1225;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider\";i:33740;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Exception\";i:804;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant\";i:10346;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src\";i:71884;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client\";i:71884;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league\";i:71884;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed\";i:741466;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo\";i:13767619;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/languages\";i:23135;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/resources/data-templates\";i:513240;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/resources/views\";i:71788;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/resources\";i:585028;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/includes\";i:168276;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default/bootstrap/js\";i:37045;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default/bootstrap/css\";i:121865;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default/bootstrap\";i:158910;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default/images\";i:835;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default\";i:163775;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes\";i:163775;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards\";i:212005;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app\";i:865373;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/svg/logos\";i:157510;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/svg\";i:197481;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/fontawesome/webfonts\";i:2929598;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/fontawesome/css\";i:59305;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/fontawesome\";i:2988903;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/js\";i:857831;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite/vue-backend/js\";i:3390687;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite/vue-backend/css\";i:39483;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite/vue-backend/img\";i:8476;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite/vue-backend\";i:3441296;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite\";i:3441296;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/css/photoswipe/default-skin\";i:14574;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/css/photoswipe\";i:19641;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/css\";i:2196472;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/img/bg\";i:258262;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/img/drag-icons\";i:21613;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/img/font-previews\";i:55693;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/img\";i:1050853;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public\";i:10732836;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon\";i:12246462;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/blocks/build\";i:5240;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/blocks\";i:18809;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/admin/partials\";i:2388;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/admin/assets\";i:73760;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/admin/css\";i:1843;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/admin\";i:79728;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/js\";i:6389;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes\";i:167005;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/inc/js\";i:754;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/inc\";i:30501;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/img\";i:206;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo\";i:341092;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist\";i:703;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib\";i:43920;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat\";i:45721;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib\";i:87773;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305\";i:171;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge\";i:897;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519\";i:1233;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20\";i:342;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core\";i:3801;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced\";i:4232;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305\";i:16024;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream\";i:3715;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge\";i:8472;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519\";i:122885;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20\";i:6525;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32\";i:438357;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305\";i:12971;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream\";i:3683;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge\";i:8176;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519\";i:121840;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20\";i:5382;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64\";i:15574;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core\";i:447439;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52\";i:4175;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src\";i:1203620;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat\";i:1302527;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie\";i:1348248;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/composer\";i:41647;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor\";i:1390155;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto\";i:1390155;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/Diff/Renderer/Html\";i:13763;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/Diff/Renderer\";i:16813;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/Diff\";i:34596;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/rest-api\";i:26659;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/dashboard\";i:37582;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib\";i:8299858;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/languages\";i:426143;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/fonts\";i:289944;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/composer\";i:36677;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io\";i:2249;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception\";i:1541;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src\";i:27521;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader\";i:27521;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage\";i:75106;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser\";i:126381;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib\";i:458805;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views\";i:47958;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src\";i:735008;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf\";i:735008;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence\";i:762529;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor\";i:799820;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/unsupported-php\";i:1038;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/onboarding\";i:17388;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/tools\";i:10688;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/dashboard\";i:56958;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/gdpr\";i:4406;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/diagnostics\";i:16466;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/reports\";i:45078;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/offboarding\";i:8252;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/user\";i:1093;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/common\";i:30941;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/waf\";i:124719;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/options\";i:55229;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/scanner\";i:197299;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/tours\";i:4949;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/blocking\";i:426128;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views\";i:1000986;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/onboarding\";i:1749;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/page\";i:17127;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/user\";i:528;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/common\";i:8004;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/email\";i:1631;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/settings\";i:17961;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/options\";i:72978;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/manage\";i:21390;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views\";i:141723;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/js\";i:317510;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/utility\";i:4831;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/controller\";i:178152;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto\";i:14246;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model/text\";i:1675;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model/view\";i:1813;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model/settings\";i:4916;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model\";i:57093;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes\";i:240431;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/css\";i:365204;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/img\";i:48448;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security\";i:1116484;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules\";i:1116484;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/js\";i:778113;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/waf/pomo\";i:58067;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/waf\";i:123353;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/images/icons\";i:82660;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/images/logos\";i:9280;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/images\";i:345688;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/css/license\";i:131063;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/css/images\";i:36376;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/css\";i:694874;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/tmp\";i:15;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/page\";i:7216;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/block\";i:64812;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/common\";i:845;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/firewall\";i:16494;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/scanner\";i:39221;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models\";i:128942;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence\";i:15535353;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/assets/imgs\";i:137541;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/assets\";i:137541;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk/assets/css\";i:1035;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk/assets\";i:1035;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk/views\";i:16665;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk/samples\";i:1558;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk\";i:34450;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/languages\";i:852967;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets/js\";i:10689;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets/css/admin\";i:60893;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets/css\";i:64070;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets/img\";i:20704;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets\";i:95550;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/debug\";i:2948;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/sdk/Exceptions\";i:3169;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/sdk\";i:51825;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/managers\";i:187585;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/entities\";i:48096;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/supplements\";i:3740;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/customizer\";i:7941;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes\";i:1646110;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/account/partials\";i:51640;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/account\";i:66934;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/partials\";i:5007;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/plugin-info\";i:6653;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/debug\";i:14061;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/js\";i:26057;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/forms/deactivation\";i:28734;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/forms\";i:173748;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/connect\";i:4550;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates\";i:527903;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius\";i:3194777;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor\";i:3229227;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/inc\";i:2965;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/views\";i:1251;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/spreadsheet-setup/views\";i:3871;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/spreadsheet-setup\";i:14467;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/filters/assets/js\";i:6733;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/filters/assets\";i:6733;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/filters\";i:31071;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-renaming/assets/js\";i:1433;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-renaming/assets\";i:1433;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-renaming\";i:5234;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/yoast-seo\";i:18776;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-manager/assets/js\";i:4751;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-manager/assets\";i:4751;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-manager/inc\";i:13531;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-manager\";i:91095;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/assets/js\";i:24175;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/assets\";i:24175;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/vendor\";i:0;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/inc\";i:52072;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/views\";i:21412;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet\";i:106939;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/acf\";i:54539;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/assets/vendor/Sortable\";i:185938;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/assets/vendor\";i:185938;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/assets/js\";i:11432;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/assets\";i:197370;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/views\";i:11796;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility\";i:228948;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/advanced-filters/assets/js\";i:5469;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/advanced-filters/assets\";i:5469;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/advanced-filters\";i:45660;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/autofill-cells\";i:1291;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/posts-templates/assets/js\";i:2345;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/posts-templates/assets\";i:2345;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/posts-templates\";i:11107;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-resizing/assets/js\";i:585;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-resizing/assets\";i:585;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-resizing\";i:3911;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor/fonts\";i:1089774;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor/js\";i:3649952;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor/images\";i:1748;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor/css\";i:208354;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor\";i:4949828;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/imgs\";i:293794;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/js\";i:297167;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/css\";i:141975;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets\";i:5682764;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/vendor\";i:0;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc/integrations\";i:59794;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc/api\";i:268040;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc/teasers\";i:76570;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc/providers\";i:66263;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc\";i:537894;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/views/whats-new\";i:0;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/views\";i:50211;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/lang\";i:6007142;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor\";i:12348516;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/assets/js\";i:16455;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/assets\";i:16455;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/vendor\";i:0;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/inc\";i:222136;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/views\";i:9780;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce\";i:288867;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/assets/js\";i:21486;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/assets/css\";i:627;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/assets\";i:22113;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/doxygen/doxygen-bootstrapped\";i:0;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/doxygen\";i:56255;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Extensions\";i:10614;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Parsing\";i:61194;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Interpreting\";i:49152;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Exceptions\";i:1821;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Lexing\";i:10586;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser\";i:133367;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests\";i:133367;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Extensions\";i:29586;s:180:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Traits\";i:2245;s:183:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Factories\";i:24491;s:184:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Interfaces\";i:855;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes\";i:54280;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing\";i:69809;s:181:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Interpreting/Visitors\";i:3721;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Interpreting\";i:72942;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Exceptions\";i:6682;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Lexing\";i:27197;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser\";i:211962;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src\";i:214063;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser\";i:517699;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal\";i:517699;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/composer\";i:27677;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor\";i:545554;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/inc\";i:54041;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas\";i:687104;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets/vendor/jquery.repeater\";i:34767;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets/vendor\";i:34767;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets/js\";i:6501;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets/css\";i:711;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets\";i:41979;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/views\";i:11566;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns\";i:84467;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wpml/inc\";i:57101;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wpml\";i:60272;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules\";i:14101972;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/lang\";i:59588;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium\";i:17569990;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/languages\";i:1238596;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/fonts\";i:1085661;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified/admin\";i:16169;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified\";i:116883;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/js/admin\";i:30956;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/js\";i:188060;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/images/premium\";i:137612;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/images\";i:230535;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/themes\";i:2345;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified\";i:92202;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/css/themes\";i:1635;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/css\";i:167341;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets\";i:1671597;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist/gutenberg\";i:28206;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist\";i:28206;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/privacy\";i:486;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib\";i:4804;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages\";i:383123;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome\";i:981810;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts\";i:1026610;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/select2\";i:66504;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery-tiptip\";i:9575;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/codemirror\";i:250458;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js\";i:547644;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/colorbox\";i:6985;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/help-tab\";i:58349;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/bh-onboarding\";i:1058;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/premium-tab\";i:8840;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images\";i:124814;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images\";i:19610;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui\";i:49660;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/codemirror\";i:6056;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css\";i:364433;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets\";i:2063501;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/elementor\";i:17692;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/gutenberg\";i:10352;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders\";i:28044;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/privacy\";i:4900;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes\";i:344519;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/upgrade\";i:4712;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/bh-onboarding\";i:2797;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/resources\";i:2541;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields\";i:114328;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components/resources\";i:2223;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components\";i:11742;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/privacy\";i:1220;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/tabs\";i:10097;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo\";i:11804;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/welcome-modals\";i:3817;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce\";i:7597;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/v2/woocommerce\";i:5421;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/v2\";i:35183;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel\";i:76716;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/metaboxes\";i:7788;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates\";i:231107;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw\";i:3206765;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes/legacy\";i:1010;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes/data-stores\";i:68266;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes/widgets/elementor\";i:9443;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes/widgets\";i:9443;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes\";i:360618;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-options/settings\";i:44324;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-options\";i:47088;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/templates\";i:79734;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist\";i:6696423;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/dist/editor-themes\";i:135024;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/dist\";i:552673;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/admin-menus\";i:31423;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/export\";i:11564;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/front-end\";i:13266;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/rest-api\";i:15358;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/views\";i:6228;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/settings\";i:23717;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php\";i:235999;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/assets\";i:4904;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers\";i:77612;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer\";i:77612;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer/installers/src\";i:78080;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer/installers\";i:82160;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer\";i:128370;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor\";i:129141;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/types/wp\";i:2590;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/types/modules\";i:1089;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/types\";i:8113;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/utils/api\";i:4640;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/utils\";i:7383;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/common/TagEditor\";i:5606;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/common\";i:8449;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/settings\";i:3262;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/manage\";i:4921;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/Edit/fields\";i:10418;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/Edit/components\";i:12014;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/Edit/SnippetEditor\";i:12951;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/Edit\";i:43503;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js\";i:83032;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/css/edit\";i:4403;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/css\";i:16997;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets\";i:1062472;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/languages\";i:950514;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets/js\";i:10689;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets/css/admin\";i:60893;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets/css\";i:64070;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets/img\";i:20704;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets\";i:95550;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/debug\";i:2948;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/sdk/Exceptions\";i:3169;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/sdk\";i:51825;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/managers\";i:187585;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/entities\";i:48096;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/supplements\";i:3740;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/customizer\";i:7941;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes\";i:1640020;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/account/partials\";i:51640;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/account\";i:66778;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/partials\";i:4959;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/plugin-info\";i:7035;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/debug\";i:14061;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/js\";i:26057;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/forms/deactivation\";i:28734;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/forms\";i:173394;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/connect\";i:4550;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates\";i:527014;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius\";i:3285273;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor\";i:3285273;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/inc\";i:1627;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/spreadsheet-setup/views\";i:3871;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/spreadsheet-setup\";i:14467;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/filters/assets/js\";i:6733;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/filters/assets\";i:6733;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/filters\";i:30884;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-renaming/assets/js\";i:1415;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-renaming/assets\";i:1415;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-renaming\";i:5216;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/yoast-seo\";i:16856;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-manager/assets/js\";i:4629;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-manager/assets\";i:4629;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-manager/inc\";i:13531;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-manager\";i:83945;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/assets/js\";i:24104;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/assets\";i:24104;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/vendor\";i:0;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/inc\";i:50484;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/views\";i:21434;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet\";i:105245;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/acf\";i:50716;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/assets/vendor/Sortable\";i:185938;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/assets/vendor\";i:185938;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/assets/js\";i:11321;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/assets\";i:197259;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/views\";i:11796;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility\";i:228837;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/advanced-filters/assets/js\";i:5451;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/advanced-filters/assets\";i:5451;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/advanced-filters\";i:45618;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/autofill-cells\";i:1291;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/posts-templates/assets/js\";i:2345;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/posts-templates/assets\";i:2345;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/posts-templates\";i:11107;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-resizing/assets/js\";i:567;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-resizing/assets\";i:567;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-resizing\";i:3893;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor/fonts\";i:1089774;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor/js\";i:3649952;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor/images\";i:1748;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor/css\";i:208354;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor\";i:4949828;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/imgs\";i:298435;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/js\";i:282961;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/css\";i:114833;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets\";i:5646057;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/vendor\";i:0;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc/integrations\";i:58074;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc/api\";i:256870;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc/teasers\";i:76534;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc/providers\";i:63843;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc\";i:520749;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/views/whats-new\";i:0;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/views\";i:49886;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/lang\";i:6004117;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor\";i:12290938;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/assets/js\";i:16463;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/assets\";i:16463;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/vendor\";i:0;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/inc\";i:219838;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/views\";i:9780;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce\";i:286545;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/assets/js\";i:21439;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/assets/css\";i:627;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/assets\";i:22066;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/doxygen/doxygen-bootstrapped\";i:0;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/doxygen\";i:56255;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Extensions\";i:10614;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Parsing\";i:61194;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Interpreting\";i:49152;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Exceptions\";i:1821;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Lexing\";i:10586;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser\";i:133367;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests\";i:133367;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Extensions\";i:29586;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Traits\";i:2245;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Factories\";i:24491;s:175:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Interfaces\";i:855;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes\";i:54280;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing\";i:69809;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Interpreting/Visitors\";i:3721;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Interpreting\";i:72942;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Exceptions\";i:6682;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Lexing\";i:27197;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser\";i:211962;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src\";i:214063;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser\";i:517699;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal\";i:517699;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/composer\";i:27677;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor\";i:545554;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/inc\";i:53988;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas\";i:685553;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-post-types\";i:2322;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets/vendor/jquery.repeater\";i:34767;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets/vendor\";i:34767;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets/js\";i:4964;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets/css\";i:711;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets\";i:40442;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/views\";i:11566;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns\";i:83068;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wpml/inc\";i:52012;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wpml\";i:55176;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules\";i:14020011;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/whats-new\";i:0;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/lang\";i:325176;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium\";i:17704883;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/publickeys\";i:10497;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MMB\";i:93206;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/EventDispatcher\";i:12239;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Filesystem/Exception\";i:1507;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Filesystem\";i:23537;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Process/Pipes\";i:16169;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Process/Exception\";i:4908;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Process\";i:84049;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony\";i:119853;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/Net/SFTP\";i:23234;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/Net\";i:317170;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/System/SSH\";i:9667;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/System\";i:11543;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/Math\";i:131370;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/File\";i:245376;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/Crypt\";i:488602;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib\";i:1194193;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/WordPress/Provider\";i:7146;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/WordPress/Query\";i:6253;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/WordPress\";i:37080;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Http\";i:17780;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Debug\";i:3497;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Security/Exception\";i:959;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Security\";i:5306;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/ActionRequest\";i:5433;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/PublicRequest\";i:71939;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/MasterRequest\";i:26660;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/ActionResponse\";i:9598;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/ActionException\";i:5271;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/MasterResponse\";i:1277;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener\";i:126713;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Worker\";i:34691;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Configuration\";i:28068;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/IncrementalBackup/Model\";i:5168;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Exception\";i:390;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/IncrementalBackup/Database\";i:38948;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/IncrementalBackup\";i:49488;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Migration\";i:5972;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Parser\";i:4505;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Signer\";i:3649;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/System\";i:5611;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/FileManager/Model\";i:2096;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/FileManager\";i:2124;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Crypter\";i:6120;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Progress\";i:5835;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Action/IncrementalBackup\";i:40333;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Action\";i:66411;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/ServiceContainer\";i:37850;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Monolog/Handler\";i:1308;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Monolog/Processor\";i:4030;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Monolog\";i:5366;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Process\";i:649;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Extension\";i:2043;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Stream\";i:25443;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Event\";i:9028;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Updater\";i:12438;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP\";i:495695;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog/Formatter\";i:15063;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog/Handler\";i:16030;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog/Psr\";i:3472;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog/Processor\";i:9727;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog\";i:72421;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Gelf\";i:12763;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src\";i:1992956;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker\";i:2082607;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/dist\";i:5786454;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/l10n/languages\";i:69539;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/l10n\";i:69539;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/dayjs\";i:7770;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/vue-select@3.12.2\";i:25224;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/toastr@1.0/iconfont\";i:10362;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/toastr@1.0\";i:23253;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/gutenberg@12.8.0\";i:122904;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/swiper@8.3.2\";i:78454;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/google-translate\";i:11370;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/toastr@2.0\";i:12404;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/codemirror@5.62.3/theme\";i:2741;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/codemirror@5.62.3\";i:2741;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/vue-content-placeholders@0.2.1\";i:12985;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/vue-slider-component@3.2.15\";i:59420;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins\";i:451985;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/imgs/popup\";i:131777;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/imgs/product\";i:1014181;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/imgs/settings\";i:69734;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/imgs\";i:1316653;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/js\";i:350374;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/css\";i:68550;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/templates\";i:221;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/icons/progress\";i:2863;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/icons/status\";i:157;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/icons\";i:3826;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets\";i:2191609;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Models\";i:28962;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/views/notices\";i:28089;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/views/common\";i:7936;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/views\";i:124542;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Emails\";i:17711;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Api/Admin\";i:30719;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Api\";i:105959;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Exceptions\";i:97;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Libs/Import\";i:61487;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Libs\";i:80189;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Action\";i:307751;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes\";i:870048;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/vendor/composer\";i:36441;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/vendor\";i:36619;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/templates/tracking\";i:5042;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/templates/emails/plain\";i:3071;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/templates/emails\";i:16760;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/templates\";i:21827;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel\";i:9007073;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/languages\";i:129823;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/assets/js\";i:114055;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/assets/images\";i:42121;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/assets/css\";i:14665;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/assets\";i:170841;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/payment-methods\";i:228777;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/migrations\";i:2232;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/admin\";i:151908;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/constants\";i:57001;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/deprecated\";i:721;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/notes\";i:5822;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/connect\";i:15830;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/abstracts\";i:84862;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/compat\";i:61949;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes\";i:847346;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/build\";i:1463959;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/templates/emails/plain\";i:3700;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/templates/emails\";i:8263;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/templates\";i:8263;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe\";i:2724282;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/languages\";i:128;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/assets\";i:31340;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/admin/includes\";i:36908;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/admin/js\";i:14345;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/admin/css\";i:9805;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/admin\";i:88494;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/block-editor\";i:7920;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images\";i:32598;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness\";i:118302;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes\";i:118302;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js/jquery-ui\";i:118302;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js\";i:131969;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/css\";i:3011;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/swv/rules\";i:17439;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/swv/js\";i:10322;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/swv\";i:35403;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes\";i:420727;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/stripe\";i:20563;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/akismet\";i:8031;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/sendinblue\";i:23703;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/constant-contact\";i:31124;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/recaptcha\";i:14864;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules\";i:208594;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7\";i:781719;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/languages\";i:18994;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/premium\";i:37483;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/.vscode\";i:779;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/common/premium\";i:25628;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/common\";i:57694;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/classes/plugins\";i:7944;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/classes\";i:108969;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/changelog\";i:13624;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/app\";i:472137;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro\";i:723182;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/client/admin/config\";i:1934;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/client/admin\";i:1934;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/client\";i:1934;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League\";i:45593;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/Psr/Container\";i:1438;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/Psr\";i:1438;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages\";i:47031;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib\";i:47031;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/data\";i:138524;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-stock\";i:4925;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/admin-layout\";i:17218;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-settings\";i:8095;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/onboarding\";i:437295;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-revenue\";i:5055;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/store-performance\";i:4575;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/edit-product-page\";i:23428;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/wcpay-payment-welcome-page\";i:14494;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/date\";i:41359;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-customers\";i:4925;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/notices\";i:2292;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-orders\";i:5055;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/explat\";i:45061;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:13682;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:11118;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/activity-panels-help\";i:4833;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/dashboard\";i:8867;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/csv-export\";i:5107;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:147730;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/core-profiler\";i:34744;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/profile-wizard\";i:19884;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/components\";i:1037271;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report\";i:4109;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/experimental\";i:100927;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:9810;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/navigation\";i:41551;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/multichannel-marketing\";i:12890;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/homescreen\";i:47966;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-taxes\";i:4925;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/currency\";i:4855;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/store-alerts\";i:8028;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/activity-panels-inbox\";i:14883;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/shipping-recommendations\";i:5253;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/radio\";i:2270;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/toggle\";i:2099;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-shipping-dimensions-fields\";i:16585;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/conditional\";i:581;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-pricing-field\";i:15730;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-schedule-sale-fields\";i:15539;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-radio-field\";i:737;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-tab\";i:15877;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-shipping-class-field\";i:625;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-summary-field\";i:17398;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-name-field\";i:16618;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-section\";i:18393;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-regular-price-field\";i:15941;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-checkbox-field\";i:16680;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-sale-price-field\";i:15905;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-description-field\";i:573;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-inventory-quantity-field\";i:639;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-sku-field\";i:15957;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-attributes-field\";i:16171;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-images-field\";i:16441;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-category-field\";i:16824;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-collapsible\";i:617;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-inventory-email-field\";i:15540;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-toggle-field\";i:660;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks\";i:250031;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/shipping-dimensions\";i:6430;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/conditional\";i:2215;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/attributes\";i:1928;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/regular-price\";i:3568;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/checkbox\";i:2735;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/summary/paragraph-rtl-control\";i:1391;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/summary\";i:6136;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/inventory-quantity\";i:2975;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/tab\";i:3586;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/category\";i:2317;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/name\";i:4670;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/schedule-sale\";i:4725;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/collapsible\";i:1983;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/images\";i:4588;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/inventory-sku\";i:2324;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/shipping-class\";i:4972;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/section\";i:2806;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/pricing\";i:2899;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/inventory-email\";i:3439;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/description\";i:2615;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/sale-price\";i:3203;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:328262;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor\";i:585121;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/leaderboards\";i:4642;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/navigation-opt-out\";i:8032;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-categories\";i:5269;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/chunks\";i:1272628;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-coupons\";i:4925;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/number\";i:2242;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:27840;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/tracks\";i:8051;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:45684;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-products\";i:5269;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/app\";i:752546;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-downloads\";i:4925;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/null\";i:8106;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/dashboard-charts\";i:6315;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-variations\";i:4925;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/undefined\";i:16780;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-page\";i:6456;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:8182;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin\";i:5451733;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client\";i:5451733;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/fonts\";i:94747;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/selectWoo\";i:462808;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/zoom\";i:8725;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-flot\";i:213433;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6353;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/select2\";i:443516;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-payment\";i:25981;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/accounting\";i:16753;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/admin\";i:457889;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-cookie\";i:4528;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/js-cookie\";i:5706;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-qrcode\";i:45226;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-tiptip\";i:10286;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/round\";i:2269;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-blockui\";i:29560;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/flexslider\";i:74810;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/frontend\";i:189538;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-serializejson\";i:22444;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/prettyPhoto\";i:56653;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/photoswipe\";i:156182;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js\";i:2238373;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/onboarding\";i:164992;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/core-profiler\";i:307207;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/product_data\";i:1441;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/task_list\";i:160999;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/admin_notes\";i:30986;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/shipping_partners\";i:180336;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/marketing\";i:75846;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/payment_methods/72x72\";i:27960;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/payment_methods\";i:27960;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/icons/credit-cards\";i:36070;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/icons\";i:40913;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images\";i:1560454;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css\";i:2027311;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets\";i:11372618;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/walkers\";i:8177;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/libraries\";i:26600;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/export\";i:41129;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/blocks\";i:2122;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15063;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/integrations\";i:15063;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/react-admin\";i:34037;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:14894;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site/rest-api\";i:21156;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:10811;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site/installation\";i:27453;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site\";i:75708;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:396543;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:340097;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:3406;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:439709;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers\";i:1179755;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api\";i:1193021;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/local-pickup\";i:2880;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/free-shipping\";i:7277;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:3407;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/flat-rate\";i:11481;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping\";i:61864;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy/api/v3\";i:315747;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy/api/v1\";i:119753;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy/api/v2\";i:257294;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy/api\";i:730589;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy\";i:817081;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/importers/views\";i:13039;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/importers\";i:58108;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/views\";i:123048;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/reports\";i:167442;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/settings/views\";i:48410;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/settings\";i:160727;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/helper/views\";i:15406;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/helper\";i:102250;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/notes\";i:13619;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/list-tables\";i:58192;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views\";i:128213;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/meta-boxes\";i:217429;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin\";i:1453057;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/theme-support\";i:25675;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/import\";i:55075;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/log-handlers\";i:22773;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shortcodes\";i:55721;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/cod\";i:13267;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/bacs\";i:14786;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal/includes\";i:54515;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal\";i:77412;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways\";i:116472;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/data-stores\";i:334705;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/widgets\";i:60623;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/abstracts\";i:260765;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/tracks/events\";i:49996;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/tracks\";i:74000;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/interfaces\";i:35472;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/cli\";i:38371;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/emails\";i:99954;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/traits\";i:2124;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/payment-tokens\";i:6598;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/queue\";i:8898;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/customizer\";i:31206;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes\";i:7066317;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31960;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:14712;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:26352;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:26352;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:26352;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader\";i:73510;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db\";i:73510;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer/installers\";i:79355;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer\";i:713203;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:42364;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-status\";i:60780;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3414;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21830;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6534;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:24950;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:2191;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:85458;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6218;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:256828;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:362893;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4365;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22781;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2602;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21018;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic\";i:664626;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/bin\";i:19348;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42755;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17182;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39841;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector\";i:107180;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10522;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony\";i:117702;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:161410;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:162514;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm\";i:162514;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago\";i:94360;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor\";i:1897913;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/i18n/languages\";i:1644155;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/i18n\";i:1906208;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/auth\";i:6753;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/notices\";i:2782;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/global\";i:10151;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/order\";i:17689;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/single-product/add-to-cart\";i:15573;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/single-product/tabs\";i:3986;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/single-product\";i:42615;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/checkout\";i:35489;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/cart\";i:32420;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/myaccount\";i:48177;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/loop\";i:10492;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/emails/plain\";i:35717;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/emails\";i:86235;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates\";i:318753;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/sample-data\";i:220033;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:9069;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:71362;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:4411;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Composer\";i:2432;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:44631;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:86266;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:11519;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/Navigation\";i:47526;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:30512;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:45613;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features\";i:244609;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:18406;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:47160;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:23875;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22015;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:75850;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:31487;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:56866;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29602;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Products\";i:60317;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9508;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11107;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8866;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25489;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:31168;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:65258;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:24054;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:44005;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:69673;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:110508;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:18932;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports\";i:679428;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API\";i:967216;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Marketing\";i:27033;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Notes\";i:74233;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Schedulers\";i:9968;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin\";i:1492441;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:36091;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15030;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:7500;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:73843;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Marketing\";i:5773;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Notes\";i:107834;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:18111;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Orders\";i:108720;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:21501;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:38322;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin\";i:585289;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/DataStores/Orders\";i:202101;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/DataStores\";i:207181;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Traits\";i:8165;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Utilities\";i:38775;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Features\";i:44247;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/WCCom\";i:685;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:19431;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/DependencyManagement\";i:34416;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:56649;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Orders\";i:13289;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/BatchProcessing\";i:18634;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Settings\";i:1834;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal\";i:1079454;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Caching\";i:20638;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:44634;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Database/Migrations\";i:106908;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Database\";i:106908;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Utilities\";i:34344;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Caches\";i:3406;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Proxies\";i:5142;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Checkout/Helpers\";i:9778;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Checkout\";i:9778;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src\";i:2763652;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/patches\";i:1673;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods/cod\";i:2572;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods/bacs\";i:1224;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods/cheque\";i:1207;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods/paypal\";i:1120;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods\";i:6123;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components/settings-section\";i:1269;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components/settings-modal\";i:1478;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components/sortable-table\";i:5731;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components/settings-card\";i:1140;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components\";i:9837;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/pickup-location/edit-location\";i:6741;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/pickup-location\";i:27206;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods\";i:37043;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/google-analytics\";i:10122;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions\";i:53288;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-results-count\";i:1842;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/customer-account\";i:9780;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/test\";i:2803;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter\";i:25443;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search\";i:12003;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/catalog-sorting\";i:1889;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/breadcrumbs\";i:2504;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/store-notices\";i:1689;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/utils/test\";i:5533;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/utils\";i:11168;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/test\";i:6820;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/quantity-badge\";i:1430;s:188:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block\";i:7547;s:187:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block\";i:2496;s:193:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-label-block\";i:2909;s:197:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-checkout-button-block\";i:4042;s:193:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-cart-button-block\";i:3874;s:196:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block\";i:2417;s:197:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block\";i:3945;s:196:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block\";i:2993;s:197:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block\";i:3439;s:187:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block\";i:3210;s:201:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-items-counter-block\";i:2725;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks\";i:45611;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents\";i:57207;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart\";i:101797;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/test\";i:4493;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter\";i:50039;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit\";i:7661;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product\";i:10939;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-category\";i:7291;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/all-reviews\";i:4789;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product\";i:8044;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews\";i:39862;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag\";i:10858;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters\";i:32024;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-template\";i:10043;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/assets\";i:192925;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/test\";i:1360;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template\";i:225668;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products\";i:14922;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products\";i:19894;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/shared/styles\";i:577;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/shared\";i:577;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated\";i:6933;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment\";i:9061;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/test\";i:5251;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/no-payment-methods\";i:770;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods\";i:39734;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/sidebar-notices\";i:3904;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/use-forced-layout\";i:6054;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/view-switcher\";i:6053;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/block-settings\";i:991;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared\";i:63092;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-items/featured-product\";i:5281;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-items/featured-category\";i:5616;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-items\";i:59913;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products\";i:9113;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new\";i:6813;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/phone-number/test\";i:911;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/phone-number\";i:1695;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/checkout-order-error\";i:4242;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block\";i:4895;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block\";i:3437;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block\";i:11333;s:175:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-pickup-options-block\";i:11879;s:180:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block\";i:7953;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/test\";i:4738;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block\";i:14121;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount\";i:3175;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block\";i:7435;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal\";i:2362;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items\";i:2247;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping\";i:2600;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/test\";i:13825;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block\";i:18602;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes\";i:4586;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block\";i:9630;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block\";i:6457;s:201:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/no-shipping-placeholder\";i:1494;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block\";i:13976;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block\";i:3375;s:183:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-method-block/shared\";i:4776;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-method-block\";i:24817;s:180:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form\";i:2594;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee\";i:2357;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block\";i:3446;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks\";i:169977;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step\";i:5055;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/empty-cart\";i:1460;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/styles\";i:4137;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes/test\";i:2791;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes\";i:5147;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout\";i:211459;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block\";i:2018;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-cross-sells-block\";i:2227;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/test\";i:1614;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block\";i:9668;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block\";i:3097;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-cross-sells-products\";i:5266;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping\";i:4389;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading\";i:3103;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block\";i:5556;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount\";i:3147;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block\";i:4606;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block\";i:2650;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal\";i:2350;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block\";i:2169;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block\";i:3485;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee\";i:2339;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes\";i:4575;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block\";i:4015;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form\";i:2566;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks\";i:74434;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/cart-cross-sells-product-list\";i:2922;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/test\";i:10417;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart\";i:104045;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/test/__snapshots__\";i:10410;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/test\";i:26059;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter\";i:55257;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers\";i:6583;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/filter-wrapper\";i:12961;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories\";i:11190;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/rating-filter/test\";i:13756;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/rating-filter\";i:40164;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale\";i:5645;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category\";i:12333;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute\";i:10093;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-query/inspector-controls\";i:6212;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-query/variations/elements\";i:2679;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-query/variations\";i:8934;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-query\";i:33292;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection/inspector-controls/taxonomy-controls\";i:9929;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection/inspector-controls\";i:26220;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection/variations/elements\";i:1963;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection/variations\";i:3037;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection\";i:39944;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks\";i:1245681;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/payment/utils\";i:10599;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/payment/test\";i:30906;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/payment\";i:70419;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/validation/test\";i:8838;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/validation\";i:15434;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/store-notices\";i:2409;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/utils\";i:5643;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/test\";i:4485;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state\";i:8937;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/test\";i:9577;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections\";i:21279;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/checkout/test\";i:6445;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/checkout\";i:33522;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/test\";i:21726;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart\";i:72910;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test\";i:10041;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema\";i:20367;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data\";i:261755;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/test\";i:11479;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods\";i:29452;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/test\";i:2647;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components\";i:8788;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry\";i:38311;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/filters\";i:5112;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/test\";i:7829;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks\";i:19534;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/test\";i:8082;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils\";i:42352;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/title\";i:1688;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/stories\";i:1534;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/test/__snapshots__\";i:7249;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/test\";i:10067;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip\";i:18280;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/test\";i:931;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination\";i:9274;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control\";i:7725;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-sort-select\";i:1428;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-list-item\";i:2892;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list\";i:19354;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/textarea\";i:1330;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-element-label\";i:1230;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/notice-banner/stories\";i:2558;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/notice-banner/test\";i:3005;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/notice-banner/screenshots\";i:47575;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/notice-banner\";i:59277;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/combobox\";i:7370;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/load-more-button\";i:938;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/loading-mask\";i:1456;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-submit-button\";i:1379;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/form\";i:615;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-placeholder\";i:771;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/snackbar-list/stories\";i:1645;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/snackbar-list\";i:5879;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary/test\";i:4135;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary\";i:9028;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/formatted-monetary-amount\";i:3001;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/stories\";i:964;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/test/__snapshots__\";i:1068;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/test\";i:2377;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price\";i:11680;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/noninteractive\";i:2154;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/tabs/stories\";i:1065;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/tabs\";i:5116;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/test/__snapshots__\";i:1101;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/test\";i:2981;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label\";i:4511;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list-item\";i:11808;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list\";i:1359;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-sort-select\";i:1312;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews\";i:15266;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/stories\";i:1421;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/test\";i:2063;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider\";i:28248;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control-accordion\";i:1958;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/stories\";i:1742;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/test\";i:2458;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more\";i:12335;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/test\";i:11089;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping\";i:24912;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/stories\";i:1581;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/test\";i:1159;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon\";i:7561;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/stories\";i:1891;s:184:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/test/__snapshots__\";i:3422;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/test\";i:6389;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item\";i:11744;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount/stories\";i:2609;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount\";i:6085;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals\";i:50527;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-backorder-badge\";i:457;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons\";i:6495;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-label\";i:2091;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-image\";i:828;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/place-order-button\";i:830;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/return-to-cart-button\";i:1124;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/test\";i:988;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary\";i:10071;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-location\";i:607;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-summary\";i:1060;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package\";i:10863;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-calculator\";i:4253;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-low-stock-badge\";i:928;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-sale-badge\";i:1591;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/local-pickup-select/test\";i:3474;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/local-pickup-select\";i:5261;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/cart-line-items-table\";i:15829;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-metadata\";i:1263;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control\";i:6273;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/test\";i:4806;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form\";i:16567;s:175:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/test/__snapshots__\";i:5989;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/test\";i:8532;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step\";i:13447;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/policies\";i:1661;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/pickup-location/test\";i:3103;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/pickup-location\";i:5348;s:181:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/test/__snapshots__\";i:1504;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/test\";i:2963;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details\";i:4978;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-badge\";i:728;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout\";i:164434;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/spinner\";i:772;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector/stories\";i:857;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector\";i:11068;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input\";i:4239;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/skeleton\";i:783;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary\";i:5710;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sort-select\";i:2316;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout\";i:3430;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/stories\";i:646;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/test/__snapshots__\";i:933;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/test\";i:2077;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name\";i:4413;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-reset-button\";i:1059;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/form-token-field/stories\";i:822;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/form-token-field\";i:4888;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/drawer/utils\";i:2013;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/drawer\";i:10392;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button/stories\";i:910;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button\";i:3629;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-rating\";i:1443;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/stories\";i:6493;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input\";i:9782;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/checkbox-list\";i:4926;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components\";i:464434;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top/test\";i:2424;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top\";i:4491;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/test\";i:4235;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs\";i:14140;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/test\";i:3953;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit\";i:12469;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/test\";i:1190;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods\";i:13535;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/shipping\";i:4684;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/test\";i:8189;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections\";i:20492;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/test\";i:12043;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart\";i:30909;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test\";i:12739;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks\";i:108804;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/test\";i:1025;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form/submit\";i:4047;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form\";i:4931;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state\";i:15926;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form\";i:20911;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-events\";i:6021;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping\";i:9996;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-events\";i:11965;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/cart\";i:709;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout\";i:41676;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers\";i:67115;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context\";i:191207;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base\";i:732165;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/sidebar-compatibility-notice\";i:2616;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/block-title\";i:1658;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/heading-toolbar\";i:3885;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/incompatible-payment-gateways-notice\";i:5921;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/expandable-search-list-item\";i:1094;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-tag-control\";i:5020;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card/stories\";i:794;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card\";i:3605;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/editable-button\";i:2186;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-orderby-control\";i:1702;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/utils\";i:6424;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/test/__snapshots__\";i:17478;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/test\";i:18566;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag\";i:22087;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/text-toolbar-button\";i:675;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/products-control\";i:2774;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/no-payment-methods-notice\";i:1109;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-stock-control\";i:3004;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/default-notice\";i:4453;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/grid-content-control\";i:2064;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/stories\";i:2179;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder\";i:5161;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-category-control\";i:5497;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/edit-product-link\";i:1526;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/feedback-prompt\";i:3140;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-control\";i:6268;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test/__snapshots__\";i:138325;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test\";i:147799;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control\";i:174845;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/grid-layout-control\";i:2953;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-attribute-term-control\";i:6447;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/page-selector\";i:1076;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components\";i:277190;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/test\";i:5379;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards\";i:13092;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs\";i:79773;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types\";i:92925;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test\";i:6165;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils\";i:19347;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/interactivity\";i:15495;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/blocks\";i:5046;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/test\";i:2558;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared\";i:13715;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings\";i:18761;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/hocs\";i:2590;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/context\";i:3599;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared\";i:6189;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/templates/revert-button\";i:4487;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/templates\";i:4487;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test\";i:18855;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs\";i:35710;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews\";i:29559;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/test\";i:7448;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image\";i:21359;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/test\";i:1847;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title\";i:12198;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating\";i:12080;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/related-products\";i:2518;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku\";i:7364;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/product-meta\";i:2804;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart-form\";i:4203;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge\";i:6149;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared\";i:6893;s:208:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/test\";i:9648;s:203:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes\";i:24910;s:182:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable\";i:26444;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types\";i:28169;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart\";i:42056;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary\";i:5234;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/product-reviews\";i:4384;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/shared\";i:6138;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price\";i:9079;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator\";i:7809;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/product-image-gallery\";i:3545;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/product-details\";i:4176;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button\";i:13986;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements\";i:165470;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks\";i:168527;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils\";i:15131;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic\";i:183658;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/middleware\";i:3354;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/stories\";i:2099;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library\";i:18895;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons\";i:22292;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js\";i:3046264;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts\";i:10093;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css\";i:19129;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets\";i:3065393;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/patterns\";i:165396;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers\";i:77612;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer\";i:77612;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src\";i:78080;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers\";i:79355;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer\";i:127419;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src\";i:81481;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader\";i:99897;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic\";i:99897;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader\";i:51562;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor\";i:279622;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-results-count\";i:499;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/customer-account\";i:777;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products\";i:727;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter\";i:852;s:198:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--attribute-filter-wrapper--cart-blocks/order-summary-coupon-form--cart-blocks\";i:19848;s:199:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--attribute-filter-wrapper--cart-blocks/order-summary-shipping--checkout-blocks\";i:11375;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--attribute-filter-wrapper--cart-blocks\";i:31223;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/related-products\";i:432;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/catalog-sorting\";i:540;s:201:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-cross-sells-products--cart-blocks/cart-line-items--cart-blocks\";i:15217;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-cross-sells-products--cart-blocks\";i:15217;s:206:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks\";i:55426;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/order-summary-shipping--checkout-blocks\";i:55426;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-line-items--checkout-blocks\";i:11405;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks\";i:82048;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-product\";i:1878;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-meta\";i:453;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/add-to-cart-form\";i:570;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/breadcrumbs\";i:761;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/store-notices\";i:498;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter\";i:1116;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product\";i:616;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--checkout-blocks/pickup-options--checkout-blocks\";i:21314;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--checkout-blocks\";i:66341;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-accepted-payment-methods-block\";i:469;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-fields-block\";i:640;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-express-payment-block\";i:674;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-cross-sells-block\";i:442;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-coupon-form-block\";i:617;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-billing-address-block\";i:600;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/proceed-to-checkout-block\";i:570;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-shipping-block\";i:575;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-coupon-form-block\";i:625;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-pickup-options-block\";i:584;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-totals-block\";i:677;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-discount-block\";i:627;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-contact-information-block\";i:612;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-subtotal-block\";i:635;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-footer-block\";i:617;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-items-block\";i:633;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-terms-block\";i:677;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-title-label-block\";i:714;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-checkout-button-block\";i:837;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-fee-block\";i:621;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-actions-block\";i:581;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-subtotal-block\";i:627;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/empty-cart-block\";i:587;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-block\";i:578;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-cart-button-block\";i:816;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-shipping-address-block\";i:603;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-products-table-block\";i:632;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-payment-block\";i:583;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-taxes-block\";i:626;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-shipping-methods-block\";i:694;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-shopping-button-block\";i:827;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-fee-block\";i:613;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-block\";i:588;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-shipping-block\";i:567;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-cart-items-block\";i:628;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-items-block\";i:566;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-note-block\";i:618;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-line-items-block\";i:590;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-taxes-block\";i:618;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-shipping-method-block\";i:682;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/empty-mini-cart-contents-block\";i:616;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-express-payment-block\";i:606;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-discount-block\";i:635;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-cross-sells-products-block\";i:660;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/filled-mini-cart-contents-block\";i:622;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/filled-cart-block\";i:598;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-title-block\";i:715;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-totals-block\";i:662;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-heading-block\";i:672;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-title-items-counter-block\";i:674;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks\";i:31530;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-button\";i:1240;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag\";i:1378;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters\";i:621;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-reviews\";i:414;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-template\";i:1100;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-top-rated\";i:1596;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/handpicked-products\";i:1422;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-new\";i:1582;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout\";i:1005;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter\";i:930;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/billing-address--checkout-blocks\";i:13947;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks\";i:193813;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-best-sellers\";i:1603;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-category\";i:1843;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/filter-wrapper\";i:355;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-categories\";i:1141;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/rating-filter\";i:864;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-image-gallery\";i:444;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block\";i:37216;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category\";i:1595;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-details\";i:387;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/products-by-attribute\";i:1564;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-collection\";i:760;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-express-payment--checkout-blocks\";i:15918;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-line-items--mini-cart-contents-block\";i:18492;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks\";i:135141;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-rating\";i:810;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build\";i:4374636;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/blocks/mini-cart\";i:4364;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/blocks\";i:4364;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods\";i:61832;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/template-placeholders\";i:2886;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/pattern-placeholders\";i:8902683;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews\";i:522602;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/block-placeholders\";i:6508;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images\";i:9740184;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/notices\";i:4187;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/blockified\";i:14394;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates\";i:16211;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/emails/plain\";i:1684;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/emails\";i:3337;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/parts\";i:2267;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates\";i:26002;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes\";i:274237;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets\";i:20684;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations\";i:11254;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments\";i:21533;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Shipping\";i:19513;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry\";i:5604;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Utils\";i:50375;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Templates\";i:34891;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Interactivity/directives/attributes\";i:2270;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Interactivity/directives/tags\";i:339;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Interactivity/directives\";i:8703;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Interactivity\";i:12303;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Integrations\";i:6333;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/Email\";i:4642;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services\";i:24916;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain\";i:44172;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Payments\";i:3859;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities\";i:126658;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1\";i:139569;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes\";i:139905;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions\";i:7013;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1\";i:141815;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas\";i:152762;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters\";i:3796;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi\";i:471412;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src\";i:1026134;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/test\";i:2106;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry\";i:49088;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry/test\";i:4606;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry\";i:13375;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/validation/test\";i:5954;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/validation\";i:9022;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils\";i:9869;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item/stories\";i:777;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item\";i:2706;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/fees/stories\";i:1201;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/fees\";i:2654;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/subtotal/stories\";i:978;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/subtotal\";i:2035;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/taxes/stories\";i:807;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/taxes\";i:2743;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals\";i:10334;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/validation-input-error\";i:1530;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/store-notice\";i:511;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-meta\";i:815;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals-wrapper\";i:1500;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control/stories\";i:557;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control\";i:4934;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/panel\";i:2966;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/label\";i:112;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/store-notices-container/test\";i:5856;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/store-notices-container\";i:16191;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-shipping-packages\";i:890;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/discounts-meta\";i:843;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-local-pickup-packages\";i:1352;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/error-boundary\";i:877;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/text-input/test\";i:9117;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/text-input\";i:21023;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/button\";i:115;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components\";i:64962;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/slot\";i:3701;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout\";i:141225;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils/test\";i:3199;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils\";i:7911;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices\";i:7936;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages\";i:149161;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks\";i:19776553;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25616;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:100457;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83113;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7562;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes\";i:349015;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler\";i:460660;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages\";i:20237416;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce\";i:45911286;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/data/preset\";i:7667;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/data\";i:27372;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/lib/css-min\";i:51053;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/lib/jsmin_data\";i:987;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/lib\";i:118180;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/js\";i:1055672;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/css/fonts\";i:10867;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/css\";i:171589;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/img/icons\";i:118293;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/img\";i:136175;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets\";i:1363436;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/page_optm\";i:56893;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/crawler\";i:24594;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/banner\";i:17811;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/inc\";i:8980;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/general\";i:17382;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/db_optm\";i:8301;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/toolbox\";i:37832;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/cache\";i:50113;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/presets\";i:9017;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/img_optm\";i:23129;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/dash\";i:32394;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/cdn\";i:26315;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl\";i:314992;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/inc\";i:119;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/lang\";i:148292;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/cli\";i:24555;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/src/data_structure\";i:2681;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/src/cdn\";i:9207;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/src\";i:865985;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/thirdparty\";i:64909;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache\";i:3120516;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/languages\";i:1897496;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/buttons\";i:26183;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/facebook\";i:8927;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/google\";i:10833;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/layouts\";i:49013;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/notice\";i:2853;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images\";i:117766;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/templates/settings\";i:154674;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/templates\";i:195426;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/templates-provider\";i:34827;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin\";i:416971;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/includes\";i:175681;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/NSL/PCKE\";i:2606;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Storage\";i:4466;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/NSL/Persistent\";i:6780;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/NSL\";i:23181;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/js\";i:12658;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/template-parts/embedded-login\";i:965;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/template-parts/register-flow\";i:276;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/template-parts/login\";i:1399;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/template-parts\";i:9214;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/linkedin\";i:1974;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/twitter/admin\";i:19074;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/twitter\";i:49221;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/tiktok\";i:2361;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/line\";i:1386;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/wordpress\";i:3044;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/github\";i:2682;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/facebook/admin\";i:19536;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/facebook\";i:36577;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/slack\";i:1788;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/amazon\";i:3389;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/google/admin\";i:12356;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/google\";i:28507;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/steam\";i:1758;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/microsoft\";i:607;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/paypal\";i:3568;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/twitch\";i:933;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/discord\";i:1594;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/vk\";i:2241;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/disqus\";i:2386;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/yahoo\";i:3921;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/apple\";i:2128;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers\";i:150065;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect\";i:2825891;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/actions\";i:5574;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/api\";i:59026;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/matches\";i:21115;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/fileio\";i:16292;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/modules\";i:17130;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/images\";i:5548;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/database/schema\";i:22541;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/database\";i:39310;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/locale/json\";i:1530797;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/locale\";i:5870920;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/models/log\";i:18233;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/models/url\";i:28804;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/models/redirect\";i:42118;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/models\";i:167057;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection\";i:6998883;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/languages\";i:75879;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/composer\";i:63979;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/leewillis77/dismissible-wp-notices/js\";i:721;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/leewillis77/dismissible-wp-notices/src\";i:7623;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/leewillis77/dismissible-wp-notices\";i:9117;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/leewillis77\";i:9117;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/bin\";i:0;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Tests/Fixtures\";i:5725;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Tests/Psr11\";i:6945;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Tests\";i:35726;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Exception\";i:6494;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Psr11\";i:4140;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple\";i:59577;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src\";i:59577;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple\";i:74146;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple\";i:74146;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/lib/cron-expression\";i:33205;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/lib\";i:37013;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/deprecated\";i:13295;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/migration\";i:25683;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/actions\";i:3365;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/schedules\";i:10785;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/WP_CLI\";i:19518;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/data-stores\";i:98096;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/abstracts\";i:79125;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/schema\";i:7501;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes\";i:330517;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler\";i:448923;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce\";i:448923;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/psr/container/src\";i:1382;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/psr/container\";i:3664;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/psr\";i:3664;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor\";i:600600;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/js/dist\";i:7761;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/js/src\";i:6459;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/js\";i:31178;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/images\";i:1186;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/css\";i:5843;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/templates\";i:30634;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/less\";i:6057;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/integrations\";i:71555;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/prf\";i:24142;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/cache\";i:33646;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/jobs\";i:7024;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/common\";i:127755;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/gpf\";i:215794;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src\";i:488988;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds\";i:1341577;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/data/regexes\";i:4891;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/data/indices\";i:239643;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/data\";i:3764298;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Data\";i:21682;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Model/Primitive\";i:5050;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Model\";i:36430;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Analyser/Header/Useragent/Device\";i:135048;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Analyser/Header/Useragent\";i:374051;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Analyser/Header\";i:390977;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Analyser\";i:431397;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Constants\";i:2617;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src\";i:497345;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser\";i:4263545;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration\";i:4338448;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/admin/images\";i:2229;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/admin\";i:97232;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/js\";i:72768;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/common\";i:23981;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/css\";i:1080;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/public\";i:48661;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager\";i:4674007;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/languages\";i:38093;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/admin/img\";i:3373;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/admin\";i:51141;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/includes\";i:774;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/composer\";i:25164;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/DOMPurify\";i:84580;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/tests/data\";i:2117685;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/tests/Fixtures\";i:700;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/tests\";i:2134017;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/.github/workflows\";i:765;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/.github\";i:765;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/src/data\";i:15383;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/src/Exceptions\";i:794;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/src/ElementReference\";i:9511;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/src\";i:48426;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize\";i:2211368;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined\";i:2211368;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor\";i:2321290;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/scss\";i:8341;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/js/min\";i:15067;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/js\";i:48006;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/css\";i:6093;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/functions\";i:22517;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support\";i:2640732;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/lib/compiled\";i:67383;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/lib/data\";i:19140;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/lib\";i:86523;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/languages\";i:52753;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/init\";i:16753;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/common\";i:3790;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/bundle/setup\";i:8365;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/bundle\";i:33518;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/file\";i:33561;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/errors\";i:5047;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/help\";i:7112;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/list\";i:3676;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/config\";i:30991;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin\";i:139837;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/debug\";i:538;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/ajax\";i:2821;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl\";i:143196;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/js/min\";i:145764;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/js\";i:145764;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/css/skins\";i:7183;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/css\";i:87328;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/api\";i:5336;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/wg\";i:177;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/ectoplasm\";i:1849;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/light\";i:1849;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/sunrise\";i:1849;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/modern\";i:1849;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/fresh\";i:1849;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/ocean\";i:1849;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/blue\";i:1849;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/coffee\";i:1849;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/midnight\";i:1849;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins\";i:16641;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img\";i:50603;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/font\";i:153477;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub\";i:437172;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/data\";i:41715;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/api\";i:22916;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/mvc\";i:57251;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/hooks\";i:20666;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/gettext\";i:57770;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/init\";i:21453;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/bundle\";i:38601;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/file\";i:53556;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/list\";i:7459;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/config\";i:17512;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin\";i:148672;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/output\";i:5884;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/ajax/common\";i:1181;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/ajax\";i:48350;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/js\";i:6676;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/test\";i:21615;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/package\";i:105690;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/cli\";i:31827;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/fs\";i:75381;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/error\";i:17032;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/config\";i:41071;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/compat\";i:8868;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src\";i:729822;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate\";i:1473512;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/assets/js/repeater\";i:2599;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/assets/js\";i:16182;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/assets/css\";i:10191;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/assets\";i:26373;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/conditions\";i:64595;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions\";i:110928;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries\";i:110928;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/languages\";i:113421;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/assets/css\";i:21652;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/assets\";i:21652;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/includes/admin/views\";i:8844;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/includes/admin\";i:17602;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/includes\";i:37304;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping\";i:335710;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/dist/assets/js\";i:5094038;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/dist/assets/css\";i:646897;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/dist/assets\";i:5740935;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/dist\";i:5745569;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Feature_Tours\";i:6440;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Permissions\";i:25508;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Admin\";i:42487;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Assets\";i:41863;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/User_Surveys\";i:14454;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Tracking\";i:7262;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Nonces\";i:2644;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/REST_API/Exception\";i:2400;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/REST_API\";i:13382;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Contracts\";i:592;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Validation/Exception\";i:1167;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Validation\";i:1167;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Modules/Tags\";i:8529;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Modules\";i:115553;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Authentication/Clients\";i:53747;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Authentication/Exception\";i:5052;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Authentication\";i:152983;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Dismissals\";i:8167;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Notifications\";i:10364;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/CLI\";i:4557;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Guards\";i:672;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Dashboard_Sharing/Activity_Metrics\";i:4189;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Dashboard_Sharing\";i:8143;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Tags/Guards\";i:3079;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Tags\";i:7243;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Util\";i:134145;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Admin_Bar\";i:11266;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Storage/Setting\";i:1486;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Storage\";i:53177;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/User_Input\";i:14488;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Key_Metrics\";i:7963;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core\";i:684520;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Tag_Manager\";i:9403;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/AdSense\";i:23822;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics/Advanced_Tracking\";i:9079;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics\";i:40100;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Optimize\";i:5342;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/PageSpeed_Insights\";i:755;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Search_Console\";i:1617;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics_4/Report\";i:25701;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics_4/GoogleAnalyticsAdmin\";i:4585;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics_4\";i:45388;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules\";i:331380;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/vendor/composer\";i:26114;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/vendor\";i:26114;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes\";i:1066673;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle/src/Cookie\";i:28376;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle/src/Handler\";i:60932;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle/src/Exception\";i:9767;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle/src\";i:203991;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle\";i:204378;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/promises/src\";i:61442;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/promises\";i:61442;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/psr7/src\";i:175895;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/psr7\";i:175895;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp\";i:441715;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/ralouphie/getallheaders/src\";i:1640;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/ralouphie/getallheaders\";i:1640;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/ralouphie\";i:1640;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/vendor/composer\";i:173074;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/vendor\";i:174219;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/Credentials\";i:50027;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/Subscriber\";i:12793;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/Middleware\";i:17701;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/HttpHandler\";i:10624;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/Cache\";i:14646;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src\";i:211856;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth\";i:224430;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/TagManager/Resource\";i:96195;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/TagManager\";i:288855;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/Analytics/Resource\";i:124833;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/Analytics\";i:452395;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/PeopleService/Resource\";i:49768;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/PeopleService\";i:225778;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/SiteVerification/Resource\";i:6334;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/SiteVerification\";i:17244;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/GoogleAnalyticsAdmin/Resource\";i:157158;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/GoogleAnalyticsAdmin\";i:543792;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/SearchConsole/Resource\";i:17079;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/SearchConsole\";i:80005;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/Adsense/Resource\";i:51215;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/Adsense\";i:113739;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/AnalyticsData/Resource\";i:12985;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/AnalyticsData\";i:142394;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/PagespeedInsights/Resource\";i:2646;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/PagespeedInsights\";i:70105;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/AnalyticsReporting/Resource\";i:4125;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/AnalyticsReporting\";i:123075;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src\";i:2189315;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services\";i:2190794;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/Http\";i:25963;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/Service\";i:12927;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/AccessToken\";i:13031;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/Utils\";i:10633;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/AuthHandler\";i:10638;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/Task\";i:13331;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src\";i:148733;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient\";i:148733;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google\";i:2563957;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-php70/Resources/stubs\";i:1207;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-php70/Resources\";i:1207;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-php70\";i:4481;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-idn/Resources/unidata\";i:265382;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-idn/Resources\";i:265382;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-idn\";i:302098;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-php72\";i:9292;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-normalizer/Resources/unidata\";i:122251;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-normalizer/Resources/stubs\";i:435;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-normalizer/Resources\";i:122686;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-normalizer\";i:132779;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony\";i:448650;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Formatter\";i:51399;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler/FingersCrossed\";i:3675;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler/SyslogUdp\";i:1441;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler/Slack\";i:8496;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler/Curl\";i:1474;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler\";i:245383;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Processor\";i:19772;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog\";i:364407;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src\";i:364407;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog\";i:364407;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog\";i:364407;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/log/Psr/Log/Test\";i:10105;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/log/Psr/Log\";i:22521;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/log/Psr\";i:22521;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/log\";i:22521;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/cache/src\";i:8825;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/cache\";i:8825;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/http-message/src\";i:46817;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/http-message\";i:46817;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr\";i:78163;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/true/punycode/src/Exception\";i:818;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/true/punycode/src\";i:11751;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/true/punycode\";i:11751;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/true\";i:11751;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party\";i:4084502;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit\";i:11156858;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins\";i:219996194;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/mailoptin-optin-log\";i:448;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/siteground-optimizer-assets\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2022/11\";i:18410025;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2022/12\";i:62286023;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2022\";i:80696048;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/rank-math\";i:3069;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/woo-product-feed-pro/xml\";i:1005636;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/woo-product-feed-pro\";i:1005636;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wc-logs\";i:71478461;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/ast-shipping-providers\";i:1299156;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/06\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/07\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/01\";i:647120339;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/05\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/03\";i:1301512;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/04\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/02\";i:0;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023\";i:648421851;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/long-lived\";i:0;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/queues\";i:0;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/imports\";i:0;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/logs\";i:0;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/exports\";i:0;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor\";i:0;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/woocommerce_uploads\";i:13;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wpcf7_uploads\";i:152;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads\";i:803843123;}','yes'),(230952,'PMXE_Plugin_Options','a:17:{s:12:\"info_api_url\";s:27:\"https://www.wpallimport.com\";s:16:\"info_api_url_new\";s:30:\"https://update.wpallimport.com\";s:7:\"dismiss\";i:0;s:18:\"dismiss_manage_top\";i:0;s:21:\"dismiss_manage_bottom\";i:0;s:12:\"cron_job_key\";s:12:\"0VG4dIinGi17\";s:14:\"max_input_time\";i:-1;s:18:\"max_execution_time\";i:0;s:6:\"secure\";i:1;s:7:\"license\";s:0:\"\";s:14:\"license_status\";s:0:\"\";s:18:\"scheduling_license\";s:0:\"\";s:25:\"scheduling_license_status\";s:0:\"\";s:14:\"zapier_api_key\";s:32:\"XuDQRc349Yky5rWUlTlCDI9Adw4x5QCx\";s:21:\"zapier_invitation_url\";s:0:\"\";s:30:\"zapier_invitation_url_received\";s:0:\"\";s:17:\"client_mode_roles\";a:0:{}}','yes'),(230953,'wp_all_export_pro_addons_not_included','1','yes'),(230954,'wp_all_export_pro_db_version','1.8.6','yes'),(230978,'PMXI_Plugin_Options','a:34:{s:12:\"info_api_url\";s:27:\"https://www.wpallimport.com\";s:16:\"info_api_url_new\";s:30:\"https://update.wpallimport.com\";s:18:\"scheduling_license\";s:0:\"\";s:25:\"scheduling_license_status\";s:0:\"\";s:18:\"history_file_count\";i:10000;s:16:\"history_file_age\";i:365;s:15:\"highlight_limit\";i:10000;s:19:\"upload_max_filesize\";i:2048;s:13:\"post_max_size\";i:2048;s:14:\"max_input_time\";i:-1;s:18:\"max_execution_time\";i:-1;s:7:\"dismiss\";i:0;s:16:\"dismiss_speed_up\";i:0;s:13:\"html_entities\";i:0;s:11:\"utf8_decode\";i:0;s:12:\"cron_job_key\";s:8:\"55-f7eja\";s:10:\"chunk_size\";i:32;s:9:\"pingbacks\";i:1;s:14:\"backups_prompt\";i:1;s:33:\"legacy_special_character_handling\";i:1;s:14:\"case_sensitive\";i:1;s:12:\"session_mode\";s:7:\"default\";s:17:\"enable_ftp_import\";i:0;s:16:\"large_feed_limit\";i:1000;s:26:\"cron_processing_time_limit\";i:59;s:6:\"secure\";i:1;s:11:\"log_storage\";i:5;s:10:\"cron_sleep\";s:0:\"\";s:4:\"port\";s:0:\"\";s:16:\"google_client_id\";s:0:\"\";s:16:\"google_signature\";s:0:\"\";s:8:\"licenses\";a:0:{}s:8:\"statuses\";a:0:{}s:19:\"force_stream_reader\";i:0;}','no'),(230979,'PMGI_Plugin_Options','a:34:{s:12:\"info_api_url\";s:27:\"https://www.wpallimport.com\";s:16:\"info_api_url_new\";s:30:\"https://update.wpallimport.com\";s:18:\"scheduling_license\";s:0:\"\";s:25:\"scheduling_license_status\";s:0:\"\";s:18:\"history_file_count\";i:10000;s:16:\"history_file_age\";i:365;s:15:\"highlight_limit\";i:10000;s:19:\"upload_max_filesize\";i:2048;s:13:\"post_max_size\";i:2048;s:14:\"max_input_time\";i:-1;s:18:\"max_execution_time\";i:-1;s:7:\"dismiss\";i:0;s:16:\"dismiss_speed_up\";i:0;s:13:\"html_entities\";i:0;s:11:\"utf8_decode\";i:0;s:12:\"cron_job_key\";s:8:\"55-f7eja\";s:10:\"chunk_size\";i:32;s:9:\"pingbacks\";i:1;s:14:\"backups_prompt\";i:1;s:33:\"legacy_special_character_handling\";i:1;s:14:\"case_sensitive\";i:1;s:12:\"session_mode\";s:7:\"default\";s:17:\"enable_ftp_import\";i:0;s:16:\"large_feed_limit\";i:1000;s:26:\"cron_processing_time_limit\";i:59;s:6:\"secure\";i:1;s:11:\"log_storage\";i:5;s:10:\"cron_sleep\";s:0:\"\";s:4:\"port\";s:0:\"\";s:16:\"google_client_id\";s:0:\"\";s:16:\"google_signature\";s:0:\"\";s:8:\"licenses\";a:0:{}s:8:\"statuses\";a:0:{}s:19:\"force_stream_reader\";i:0;}','no'),(230985,'pmxi_is_migrated','4.8.5','no'),(230986,'wp_all_import_db_version','4.8.5','no'),(231199,'_wp_all_import_functions_hash_3','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(231206,'post_count','28','no'),(231228,'_wpallimport_session_3_','a:8:{s:6:\"source\";s:227:\"a:4:{s:4:\"name\";s:37:\"Articles_Export_2023_July_22_2343.csv\";s:4:\"type\";s:6:\"upload\";s:4:\"path\";s:91:\"/wpallimport/uploads/41fdc45d5c11e7503fc687f7b00cafd9/Articles_Export_2023_July_22_2343.csv\";s:12:\"root_element\";s:4:\"node\";}\";s:7:\"options\";s:9644:\"a:231:{s:4:\"type\";s:4:\"post\";s:21:\"is_override_post_type\";i:0;s:15:\"post_type_xpath\";s:0:\"\";s:8:\"deligate\";s:0:\"\";s:11:\"wizard_type\";s:3:\"new\";s:8:\"ftp_host\";s:0:\"\";s:8:\"ftp_path\";s:0:\"\";s:8:\"ftp_root\";s:1:\"/\";s:8:\"ftp_port\";s:2:\"21\";s:12:\"ftp_username\";s:0:\"\";s:12:\"ftp_password\";s:0:\"\";s:15:\"ftp_private_key\";s:0:\"\";s:11:\"custom_type\";s:4:\"post\";s:14:\"featured_delim\";s:1:\",\";s:10:\"atch_delim\";s:1:\",\";s:25:\"is_search_existing_attach\";s:1:\"0\";s:15:\"post_taxonomies\";a:1:{s:8:\"category\";s:156:\"[{\"item_id\":\"1\",\"left\":2,\"right\":5,\"parent_id\":null,\"xpath\":\"\",\"assign\":false},{\"item_id\":\"2\",\"left\":3,\"right\":4,\"parent_id\":\"1\",\"xpath\":\"\",\"assign\":false}]\";}s:6:\"parent\";i:0;s:23:\"is_multiple_page_parent\";s:3:\"yes\";s:18:\"single_page_parent\";s:0:\"\";s:5:\"order\";s:1:\"0\";s:6:\"status\";s:7:\"publish\";s:13:\"page_template\";s:7:\"default\";s:25:\"is_multiple_page_template\";s:3:\"yes\";s:20:\"single_page_template\";s:0:\"\";s:15:\"page_taxonomies\";a:0:{}s:9:\"date_type\";s:8:\"specific\";s:4:\"date\";s:9:\"{date[1]}\";s:10:\"date_start\";s:3:\"now\";s:8:\"date_end\";s:3:\"now\";s:11:\"custom_name\";a:3:{i:0;s:18:\"_yoast_wpseo_title\";i:1;s:20:\"_yoast_wpseo_focuskw\";i:2;s:21:\"_yoast_wpseo_metadesc\";}s:12:\"custom_value\";a:3:{i:0;s:23:\"{_yoast_wpseo_title[1]}\";i:1;s:25:\"{_yoast_wpseo_focuskw[1]}\";i:2;s:26:\"{_yoast_wpseo_metadesc[1]}\";}s:13:\"custom_format\";a:4:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:1:\"0\";i:3;s:1:\"0\";}s:14:\"custom_mapping\";a:0:{}s:17:\"serialized_values\";a:4:{i:0;s:7:\"[\"\",\"\"]\";i:1;s:7:\"[\"\",\"\"]\";i:2;s:7:\"[\"\",\"\"]\";i:3;s:7:\"[\"\",\"\"]\";}s:20:\"custom_mapping_rules\";a:4:{i:0;s:2:\"[]\";i:1;s:2:\"[]\";i:2;s:2:\"[]\";i:3;s:2:\"[]\";}s:14:\"comment_status\";s:4:\"open\";s:20:\"comment_status_xpath\";s:0:\"\";s:11:\"ping_status\";s:4:\"open\";s:17:\"ping_status_xpath\";s:0:\"\";s:12:\"create_draft\";s:2:\"no\";s:6:\"author\";s:19:\"{authorusername[1]}\";s:12:\"post_excerpt\";s:12:\"{excerpt[1]}\";s:9:\"post_slug\";s:9:\"{slug[1]}\";s:11:\"attachments\";s:0:\"\";s:19:\"is_import_specified\";s:1:\"0\";s:16:\"import_specified\";s:0:\"\";s:16:\"is_delete_source\";i:0;s:8:\"is_cloak\";i:0;s:10:\"unique_key\";s:14:\"{permalink[1]}\";s:14:\"tmp_unique_key\";s:14:\"{permalink[1]}\";s:9:\"feed_type\";s:4:\"auto\";s:22:\"search_existing_images\";s:1:\"1\";s:18:\"create_new_records\";s:1:\"0\";s:20:\"is_selective_hashing\";s:1:\"1\";s:17:\"is_delete_missing\";s:1:\"0\";s:20:\"delete_missing_logic\";s:6:\"import\";s:21:\"delete_missing_action\";s:4:\"keep\";s:24:\"is_send_removed_to_trash\";s:1:\"1\";s:32:\"is_change_post_status_of_removed\";s:1:\"0\";s:17:\"status_of_removed\";s:5:\"draft\";s:26:\"status_of_removed_products\";s:10:\"outofstock\";s:20:\"set_missing_to_draft\";i:0;s:20:\"is_update_missing_cf\";s:1:\"0\";s:22:\"update_missing_cf_name\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:23:\"update_missing_cf_value\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:20:\"is_keep_former_posts\";s:2:\"no\";s:16:\"is_update_status\";s:1:\"1\";s:17:\"is_update_content\";s:1:\"1\";s:15:\"is_update_title\";s:1:\"1\";s:14:\"is_update_slug\";s:1:\"1\";s:17:\"is_update_excerpt\";s:1:\"1\";s:20:\"is_update_categories\";s:1:\"1\";s:16:\"is_update_author\";s:1:\"1\";s:24:\"is_update_comment_status\";s:1:\"1\";s:21:\"is_update_ping_status\";s:1:\"1\";s:19:\"is_update_post_type\";s:1:\"1\";s:21:\"is_update_post_format\";s:1:\"1\";s:23:\"update_categories_logic\";s:11:\"full_update\";s:15:\"taxonomies_list\";s:1:\"0\";s:20:\"taxonomies_only_list\";s:0:\"\";s:22:\"taxonomies_except_list\";s:0:\"\";s:21:\"is_update_attachments\";s:1:\"1\";s:16:\"is_update_images\";s:1:\"1\";s:19:\"update_images_logic\";s:11:\"full_update\";s:15:\"is_update_dates\";s:1:\"1\";s:20:\"is_update_menu_order\";s:1:\"1\";s:16:\"is_update_parent\";s:1:\"1\";s:19:\"is_keep_attachments\";i:0;s:21:\"is_delete_attachments\";s:1:\"0\";s:12:\"is_keep_imgs\";i:0;s:14:\"is_delete_imgs\";s:1:\"0\";s:20:\"do_not_remove_images\";s:1:\"1\";s:23:\"is_update_custom_fields\";s:1:\"1\";s:26:\"update_custom_fields_logic\";s:11:\"full_update\";s:18:\"custom_fields_list\";s:1:\"0\";s:23:\"custom_fields_only_list\";s:0:\"\";s:25:\"custom_fields_except_list\";s:0:\"\";s:18:\"duplicate_matching\";s:4:\"auto\";s:19:\"duplicate_indicator\";s:5:\"title\";s:21:\"custom_duplicate_name\";s:0:\"\";s:22:\"custom_duplicate_value\";s:0:\"\";s:18:\"is_update_previous\";i:0;s:12:\"is_scheduled\";s:0:\"\";s:16:\"scheduled_period\";s:0:\"\";s:13:\"friendly_name\";s:0:\"\";s:19:\"records_per_request\";s:2:\"20\";s:18:\"auto_rename_images\";s:1:\"0\";s:25:\"auto_rename_images_suffix\";s:0:\"\";s:11:\"images_name\";s:8:\"filename\";s:11:\"post_format\";s:8:\"standard\";s:17:\"post_format_xpath\";s:0:\"\";s:8:\"encoding\";s:5:\"UTF-8\";s:9:\"delimiter\";s:1:\",\";s:16:\"image_meta_title\";s:15:\"{imagetitle[1]}\";s:22:\"image_meta_title_delim\";s:1:\",\";s:18:\"image_meta_caption\";s:0:\"\";s:24:\"image_meta_caption_delim\";s:1:\",\";s:14:\"image_meta_alt\";s:17:\"{imagealttext[1]}\";s:20:\"image_meta_alt_delim\";s:1:\",\";s:22:\"image_meta_description\";s:21:\"{imagedescription[1]}\";s:28:\"image_meta_description_delim\";s:1:\",\";s:34:\"image_meta_description_delim_logic\";s:8:\"separate\";s:12:\"status_xpath\";s:0:\"\";s:15:\"download_images\";s:3:\"yes\";s:17:\"converted_options\";s:1:\"1\";s:15:\"update_all_data\";s:3:\"yes\";s:12:\"is_fast_mode\";s:1:\"0\";s:9:\"chuncking\";s:1:\"1\";s:17:\"import_processing\";s:4:\"ajax\";s:26:\"processing_iteration_logic\";s:4:\"auto\";s:16:\"save_template_as\";s:1:\"1\";s:5:\"title\";s:10:\"{title[1]}\";s:7:\"content\";s:12:\"{content[1]}\";s:4:\"name\";s:6:\"config\";s:18:\"is_keep_linebreaks\";s:1:\"1\";s:13:\"is_leave_html\";s:1:\"0\";s:14:\"fix_characters\";i:0;s:9:\"pid_xpath\";s:0:\"\";s:10:\"slug_xpath\";s:0:\"\";s:11:\"title_xpath\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:23:\"download_featured_image\";s:13:\"{imageurl[1]}\";s:23:\"download_featured_delim\";s:1:\",\";s:22:\"gallery_featured_image\";s:13:\"{imageurl[1]}\";s:22:\"gallery_featured_delim\";s:1:\",\";s:14:\"filters_output\";s:0:\"\";s:11:\"is_featured\";s:1:\"1\";s:17:\"is_featured_xpath\";s:0:\"\";s:20:\"set_image_meta_title\";s:1:\"1\";s:22:\"set_image_meta_caption\";s:1:\"0\";s:18:\"set_image_meta_alt\";s:1:\"1\";s:26:\"set_image_meta_description\";s:1:\"1\";s:18:\"auto_set_extension\";s:1:\"0\";s:13:\"new_extension\";s:0:\"\";s:9:\"tax_logic\";a:2:{s:8:\"category\";s:6:\"single\";s:8:\"post_tag\";s:6:\"single\";}s:10:\"tax_assing\";a:2:{s:8:\"category\";s:1:\"1\";s:8:\"post_tag\";s:1:\"1\";}s:11:\"term_assing\";a:2:{s:8:\"category\";s:1:\"1\";s:8:\"post_tag\";s:1:\"1\";}s:20:\"multiple_term_assing\";a:2:{s:8:\"category\";s:1:\"1\";s:8:\"post_tag\";s:1:\"1\";}s:23:\"tax_hierarchical_assing\";a:1:{s:8:\"category\";a:2:{i:0;s:1:\"1\";s:6:\"NUMBER\";s:1:\"1\";}}s:34:\"tax_hierarchical_last_level_assign\";a:1:{s:8:\"category\";s:1:\"0\";}s:16:\"tax_single_xpath\";a:2:{s:8:\"category\";s:14:\"{catgories[1]}\";s:8:\"post_tag\";s:14:\"{tiquettes[1]}\";}s:18:\"tax_multiple_xpath\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:22:\"tax_hierarchical_xpath\";a:1:{s:8:\"category\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}}s:18:\"tax_multiple_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:22:\"tax_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:25:\"tax_manualhierarchy_delim\";a:1:{s:8:\"category\";s:1:\",\";}s:29:\"tax_hierarchical_logic_entire\";a:1:{s:8:\"category\";s:1:\"0\";}s:29:\"tax_hierarchical_logic_manual\";a:1:{s:8:\"category\";s:1:\"0\";}s:18:\"tax_enable_mapping\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:25:\"tax_is_full_search_single\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:27:\"tax_is_full_search_multiple\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:29:\"tax_assign_to_one_term_single\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:31:\"tax_assign_to_one_term_multiple\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:11:\"tax_mapping\";a:2:{s:8:\"category\";s:2:\"[]\";s:8:\"post_tag\";s:2:\"[]\";}s:17:\"tax_logic_mapping\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:31:\"is_tax_hierarchical_group_delim\";a:1:{s:8:\"category\";s:1:\"0\";}s:28:\"tax_hierarchical_group_delim\";a:1:{s:8:\"category\";s:1:\"|\";}s:12:\"nested_files\";a:0:{}s:17:\"xml_reader_engine\";s:1:\"0\";s:13:\"taxonomy_type\";s:0:\"\";s:15:\"taxonomy_parent\";s:0:\"\";s:13:\"taxonomy_slug\";s:4:\"auto\";s:19:\"taxonomy_slug_xpath\";s:0:\"\";s:21:\"taxonomy_display_type\";s:0:\"\";s:27:\"taxonomy_display_type_xpath\";s:0:\"\";s:15:\"import_img_tags\";s:1:\"0\";s:28:\"search_existing_images_logic\";s:6:\"by_url\";s:24:\"enable_import_scheduling\";s:5:\"false\";s:17:\"scheduling_enable\";s:1:\"0\";s:22:\"scheduling_weekly_days\";s:0:\"\";s:17:\"scheduling_run_on\";s:6:\"weekly\";s:22:\"scheduling_monthly_day\";s:0:\"\";s:16:\"scheduling_times\";a:1:{i:0;s:0:\"\";}s:19:\"scheduling_timezone\";s:17:\"America/Matamoros\";s:25:\"is_update_comment_post_id\";i:1;s:24:\"is_update_comment_author\";i:1;s:30:\"is_update_comment_author_email\";i:1;s:28:\"is_update_comment_author_url\";i:1;s:27:\"is_update_comment_author_IP\";i:1;s:23:\"is_update_comment_karma\";i:1;s:26:\"is_update_comment_approved\";i:1;s:26:\"is_update_comment_verified\";i:1;s:24:\"is_update_comment_rating\";i:1;s:23:\"is_update_comment_agent\";i:1;s:25:\"is_update_comment_user_id\";i:1;s:22:\"is_update_comment_type\";i:1;s:18:\"is_update_comments\";i:1;s:21:\"update_comments_logic\";s:11:\"full_update\";s:14:\"comment_author\";s:0:\"\";s:20:\"comment_author_email\";s:0:\"\";s:18:\"comment_author_url\";s:0:\"\";s:17:\"comment_author_IP\";s:0:\"\";s:13:\"comment_karma\";s:0:\"\";s:14:\"comment_parent\";s:0:\"\";s:16:\"comment_approved\";s:1:\"1\";s:22:\"comment_approved_xpath\";s:0:\"\";s:16:\"comment_verified\";s:1:\"1\";s:22:\"comment_verified_xpath\";s:0:\"\";s:13:\"comment_agent\";s:0:\"\";s:12:\"comment_type\";s:0:\"\";s:18:\"comment_type_xpath\";s:0:\"\";s:15:\"comment_user_id\";s:5:\"email\";s:21:\"comment_user_id_xpath\";s:0:\"\";s:12:\"comment_post\";s:0:\"\";s:14:\"comment_rating\";s:0:\"\";s:22:\"comments_repeater_mode\";s:3:\"csv\";s:32:\"comments_repeater_mode_separator\";s:1:\"|\";s:30:\"comments_repeater_mode_foreach\";s:0:\"\";s:8:\"comments\";a:9:{s:7:\"content\";s:0:\"\";s:6:\"author\";s:0:\"\";s:12:\"author_email\";s:0:\"\";s:10:\"author_url\";s:0:\"\";s:9:\"author_ip\";s:0:\"\";s:5:\"karma\";s:0:\"\";s:8:\"approved\";s:0:\"\";s:4:\"type\";s:0:\"\";s:4:\"date\";s:3:\"now\";}s:5:\"xpath\";s:5:\"/node\";}\";s:18:\"is_loaded_template\";s:0:\"\";s:15:\"update_previous\";s:1:\"3\";s:5:\"xpath\";s:5:\"/node\";s:8:\"filepath\";s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wpallimport/uploads/41fdc45d5c11e7503fc687f7b00cafd9/Articles_Export_2023_July_22_2343.xml\";s:5:\"count\";s:2:\"28\";s:8:\"encoding\";s:5:\"UTF-8\";}','no'),(231229,'_wpallimport_session_expires_3_','1690249872','no'),(231266,'_wp_all_import_functions_hash_4','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(231573,'_wp_all_import_functions_hash_5','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(231585,'block_categories_children','a:0:{}','yes'),(231587,'featured_item_category_children','a:0:{}','yes'),(232759,'googlesitekit_tagmanager_settings','a:8:{s:7:\"ownerID\";i:5;s:9:\"accountID\";s:10:\"6076289668\";s:14:\"ampContainerID\";s:0:\"\";s:11:\"containerID\";s:12:\"GTM-KKGLDB6L\";s:19:\"internalContainerID\";s:9:\"136079566\";s:22:\"internalAMPContainerID\";s:0:\"\";s:10:\"useSnippet\";b:1;s:12:\"gaPropertyID\";s:0:\"\";}','yes'),(233244,'_wpallexport_session_new_','a:96:{s:14:\"is_user_export\";b:0;s:22:\"is_woo_customer_export\";b:0;s:17:\"is_comment_export\";b:0;s:18:\"is_taxonomy_export\";b:0;s:20:\"is_woo_review_export\";b:0;s:3:\"cpt\";s:21:\"a:1:{i:0;s:4:\"post\";}\";s:11:\"whereclause\";s:0:\"\";s:10:\"joinclause\";s:6:\"a:0:{}\";s:11:\"exportquery\";s:120258:\"O:8:\"WP_Query\":56:{s:5:\"query\";a:5:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;}s:10:\"query_vars\";a:67:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:5:\"embed\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:14:\"search_columns\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:16:\"suppress_filters\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_menu_item_cache\";b:0;s:19:\"lazy_load_term_meta\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:0;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:0:{}s:8:\"relation\";s:3:\"AND\";s:16:\"\0*\0table_aliases\";a:0:{}s:13:\"queried_terms\";a:0:{}s:13:\"primary_table\";s:9:\"qdx_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:14:\"queried_object\";N;s:17:\"queried_object_id\";N;s:7:\"request\";s:243:\"\n			SELECT SQL_CALC_FOUND_ROWS  qdx_posts.*\n			FROM qdx_posts \n			WHERE 1=1  AND qdx_posts.post_type = \'post\' AND ((qdx_posts.post_status <> \'trash\' AND qdx_posts.post_status <> \'auto-draft\'))\n			\n			ORDER BY qdx_posts.ID ASC\n			LIMIT 0, 10\n		\";s:5:\"posts\";a:10:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:152;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-11-30 21:32:18\";s:13:\"post_date_gmt\";s:19:\"2022-11-30 20:32:18\";s:12:\"post_content\";s:7645:\"<!-- wp:flatsome/uxbuilder -->\n[ux_text text_align=\"left\"]\n<div>Kinesiska lyktor är en perfekt symbol för den kinesiska kulturen. I den här artikeln kan du läsa om deras historia och betydelse, men också om olika typer av lyktor och hur de används.</div>\n[/ux_text]\n[gap]\n<h2>Historia om kinesiska lyktor</h2>\n<p>Kinesiska lyktor dök upp för första gången under Han-dynastin, närmare bestämt under den östra Hans-dynastin (25-220). Historiker tror att de främst användes som lampor, långt innan elektriciteten uppfanns eller gas användes. För att tillverka dem användes flera <strong>hantverkstekniker</strong>, t.ex. målning, pappersskärning eller sömnad. De material som användes varierade och inkluderade bambu, trä, vetestrå eller metall. De vanligaste materialen var dock papper och siden.</p>\n[gap height=\"50px\"]\n[ux_image id=\"568\" image_size=\"original\" height=\"56.25%\"]\n[gap height=\"50px\"]\n<div>Därefter började munkarna tända lyktor <strong>för att tillbe Buddha</strong>, särskilt på den tolfte dagen i den första månaden i månkalendern. Under den östra Hansdynastin beordrade kejsaren Liu Zhuang, som var buddhist, kineserna att använda lyktor för att imitera munkarna, och på så sätt populariserades de kinesiska lyktorna.</div>\n<div>&nbsp;</div>\n<div>Senare, under Tangdynastin (618-907), tillverkade och tände kineserna lyktor för att visa sin <strong>tacksamhet</strong> för det lyckliga liv de levde. Dessa ljus symboliserade Kinas styrka, makt och välstånd.</div>\n<div>&nbsp;</div>\n<div> Slutligen har historiker också dragit slutsatsen att kinesiska lyktor användes under <strong>krig</strong>, som ett kommunikationsmedel för att överföra hemliga meddelanden eller för att signalera en inkräktare.</div>\n[gap]\n<h2>Oldtida typer av kinesiska lyktor</h2>\n<p>Förr i tiden fanns det många olika typer av lyktor. En av dem var de kungliga lyktorna, som, vilket namnet antyder, i allmänhet användes för belysning i slott och palats. De är kända för att framkalla ett mycket <strong>delikat kinesiskt hantverk</strong>.</p>\n[gap height=\"50px\"]\n[ux_image id=\"572\" image_size=\"original\" height=\"56.25%\"]\n[gap height=\"50px\"]\n<p>Lanternor användes också för att kasta skuggor, vanligtvis i underhållningssyfte. Dessa <strong>lyktor</strong> hade samma form som de kungliga lyktorna, förutom att de var täckta med inte ett, utan två lager papper eller siden.</p>\n<p>Därefter limmades ytterligare pappersbitar in i det inre lagret för att <strong>skapa skuggor</strong> när de tändes. Värmen fick papperet att rotera, vilket fick skuggorna att snurra och röra sig över väggarna.</p>\n[gap]\n<h2>Moderna kinesiska lyktor</h2>\n<p>Nuförtiden finns det fler och fler typer av lyktor. Det finns fortfarande ett brett utbud av lyktor i traditionell stil: papperslyktor, ljuslyktor, gasvävslyktor, silkespapperslyktor, rispapperslyktor... Men teknik används ibland också, och de traditionella ljusen ersätts ibland av LED-lampor.</p>\n<p>Så vi hittar elektriska lyktor, ibland med ett mångfärgat ljus, och till och med musiklyktor. Formen på kinesiska lyktor har utvecklats och diversifierats. Således hittar vi i form av djur, seriefigurer, tecken på den kinesiska zodiaken eller blommor som den heliga lotusen.</p>\n<p>\n<Dessutom utvecklas lyktorna med tiden, och vi hittar fler och fler lyktor som är helt biologiskt nedbrytbara, med en vegetabilisk vaxbrännare, eller andra himmelska lyktor som är utformade för att slockna försiktigt när brännaren släcks.</p>\n[gap height=\"50px\"]\n[ux_image id=\"574\" image_size=\"original\" height=\"56.25%\"]\n[gap height=\"50px\"]\n<h2>Användning av kinesiska lyktor</h2>\n<div>I allmänhet använder kineser lyktor på tre sätt: det vanligaste är att hänga upp lyktan. I avlägsna områden kan man till och med hitta <strong>hängande lyktor</strong> som pryder gatlyktor. Dessa hängande lyktor, som ofta är dekorerade med tofsar, är inte alltid ljusstarka och hängs ofta upp framför stånd som lyckoamuletter eller dekorativt framför hus.</div>\n<div>&nbsp;</div>\n<div>Flygande lyktor, även kallade himmelslyktor, är särskilt populära under vårfestivalen, som firas under den första fullmånen i den kinesiska kalendern. De släpps då upp i skyn i tusental, drivna av varm luft, som ballonger.&nbsp; Denna <strong>asiatiska lykta</strong> är inte bara Kinas apparat, och det finns också en stor variation av thailändska flygande lyktor.</div>\n<div>&nbsp;</div>\n<div>Slutligen används <a href=\"https://www.nightlightsevent.com/\">flytande lyktor</a>, utrustade med vattentäta brännare, särskilt under drakbåtsfestivalen, där de placeras på floder och sjöar under firandet. Varje lykta skapar en ljusreflektion på vattnet, vilket ger en helt sagolik atmosfär.</div>\n[gap height=\"50px\"]\n[ux_image id=\"576\" height=\"56.25%\"]\n[gap height=\"50px\"]\n<div>Den kinesiska lyktan är mycket festlig och används i allmänhet under firande och helgdagar. Kinesiska familjer tänder dem gärna under det kinesiska nyåret eller någon annan högtid då alla går och släpper lyktorna (Upptäck festivaler och högtider i Kina).</div>\n<div>&nbsp;</div>\n<div>Det <strong>kinesiska nyåret</strong> avslutas på den femtonde dagen i den första månmånaden med vårfestivalen, även kallad lyktfestivalen. Den här dagen släpps tusentals papperslyktor över hela landet för en mycket romantisk och poetisk luftshow. Familjer tänder hundratals lyktor, ofta med kalligrafiska gåtor för barnen att lösa.</div>\n<div>&nbsp;</div>\n<div>Om de lyckas belönas de med små gåvor eller sötsaker. Det är också vanligt att farbröder köper lyktor till sina brorsöner, om de är under tolv år, före <strong>festivalen</strong>. Detta visar att de önskar sin brorson det bästa, särskilt att de är vid utmärkt hälsa för det kommande året.</div>\n<div>&nbsp;</div>\n<div>I Kina är lyktor, förutom vid nationella högtider, också vanliga vid bröllop, födelseceremonier eller andra tillställningar där man vill bringa <strong>god lycka</strong>. Det är då vanligt att hänga upp lyktor framför sitt hus eller i bröllopssalen, som dekorationer och lyckoamuletter.</div>\n<div>&nbsp;</div>\n<div>I västvärlden har de asiatiska lyktorna erövrat genom sin festliga och dekorativa sida. Särskilt <strong>himlens lykta</strong> är mycket populär på bröllop eller födelsedagskalas och kommer att imponera på gästerna. Lyktor med kransar eller ljus, då i form av bollar som är mer runda än traditionella lyktor, är också mycket vanliga i västerländska hem.</div>\n[gap]\n<h2>Betydelse av kinesiska lyktor</h2>\n<p>Generellt sett symboliserar kinesiska lyktor <strong>vitalitet</strong>, <strong>social status</strong> och särskilt <strong>god lycka</strong>. De finns i en mängd olika färger. Röda lyktor är de mest populära, eftersom den röda färgen i Kina är ett tecken på lycka och välgång. I den kinesiska kulturen är rött också en symbol för vitalitet och energi.</p>\n<p>Används däremot en blå lykta betyder det att en familjemedlem är sjuk, eftersom blå i <strong>kinesisk kultur</strong> är en symbol för sjukdom och låg energi. Vita lyktor, å andra sidan, representerar död och sorg.</p>\n<p>En vit lykta vid ingången till ett hus visar att ett dödsfall har inträffat i familjen och tillkännager sorg. Slutligen tenderar lila att ge otur och är en ganska sällsynt lyktfärg. Materialet är inte viktigt, om du använder en <strong>pappers- eller sidenlykta</strong> beror på din smak.</p>\n[ux_products cat=\"42\" products=\"4\"]\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:40:\"Kinesiska lyktors historia och betydelse\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:38:\"historia-betydelse-kinesiska-lanternor\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:53:02\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:53:02\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=152\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:598;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 05:52:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 04:52:28\";s:12:\"post_content\";s:12068:\"<!-- wp:flatsome/uxbuilder -->\n<p>Det kinesiska tecknet \"箸\" översätts med \"ätpinnar\", som är unika ätredskap som uppfanns av de gamla kinesiska civilisationerna under den neolitiska tidsåldern, 7 000 till 6 000 f.Kr. De gamla ätpinnarna var huvudsakligen gjorda av djurben. Idag, bland de olika bordsartiklar som finns tillgängliga, förkroppsligar ätpinnar perfekt kinesiska kulturella egenskaper och har blivit en viktig symbol för kinesisk tradition.</p>\n[gap]\n<h2>Betydelse av kinesiska ätpinnar</h2>\n<div>Etpinnarna har sitt ursprung i Kina. Även om de är enkla är de en fantastisk uppfinning i mänsklighetens historia. \"Även om ätpinnar bara är två träbitar representerar de fysikens teori om hävstångseffekt\", säger Li Zhengdao, en berömd kinesisk fysiker.</div>\n<div>&nbsp;</div>\n<div>Enligt modern vetenskap gör långvarig användning av ätpinnar fingrarna flexibla, vilket är bra för den fysiska och mentala hälsan. Ätpinnar finns i alla möjliga varianter. Så bland de olika köksredskap som finns tillgängliga idag är ätpinnar med en lyckoamulett mycket populära bland kineserna.</div>\n<div>&nbsp;</div>\n<div>Etpinnar symboliserar den månghundraåriga kinesiska civilisationen och förkroppsligar Kinas 5 000-åriga historia. Oavsett om kineser bor i Kina eller utomlands så värnar de om sin koppling till ätpinnar.</div>\n[gap height=\"50px\"]\n[ux_image id=\"1456\"]\n[gap height=\"50px\"]\n<div>\"En ätpinne kan lätt brytas, tio par ätpinnar står stadigt tillsammans.\" Folk känner till denna vackra och upplysta sång av Fu Disheng, en välkänd sångare i Kina.</div>\n<div>&nbsp;</div>\n<div>En ätpinne är faktiskt så ömtålig att den lätt kan gå sönder. Men tio par ätpinnar har en styrka som är oförstörbar under alla omständigheter. Denna symbol av ätpinnar återspeglar en anda av enighet, uthållighet och kraft, som är starka värderingar i Kina. Denna anda som lever i ätpinnarna kommer alltid att påverka, inspirera och uppmuntra människor.</div>\n<div>&nbsp;</div>\n<div>Med ett ord är ätpinnar en del av den kinesiska gastronomiska kulturen, rik på många århundraden.</div>\n[gap height=\"50px\"]\n[ux_image id=\"9664\"]\n[gap height=\"50px\"]\n<h2>De kinesiska ätpinnarnas historia</h2>\n<p>Ett av de viktigaste inslagen i Kinas kulinariska sedvänjor är användningen av ätpinnar. Ätpinnar, även kallade \"zhu\" (箸) i gamla tider, har en lång historia i Kina. I själva verket förespråkade ritualboken \"Du kan inte äta en måltid utan ätpinnar\". Dessa föremål med flera århundraden av historia dök upp under Sangdynastin.</p>\n[gap]\n<h3>Ursprunget till kinesiska ätpinnar</h3>\n<p>Lan Xiang, intendent för Folk Chopsticks Pavilion, sade att historiska dokument daterar elfenbenspinnarna till 3 100 år sedan. Som det står i dokumenten använde \"Zhou\" (kejsaren i slutet av Sangdynastin) elfenbenspinnar medan Ji Zi, Zhous farbror, oroade sig \"eftersom de var för lyxiga\".</p>\n<p>Efter att kejsaren dödat elefanten för att visa sin makt, sågade han av elfenbenet för att göra ätpinnar som är kända som de första ätpinnarna i historien. Historiskt sett var de dock inte de första ätpinnarna, utan de första som tillverkades av elfenben i Kina. Det är därför kinesiska ätpinnar av elfenben har en stark symbolik.</p>\n[gap height=\"50px\"]\n[ux_image id=\"9644\"]\n[gap height=\"50px\"]\n<div>De kinesiska ätpinnarna är nästan 1 000 år äldre än ätpinnarna av elfenben. De första ätpinnarna var gjorda av bambu eftersom Kina då var täckt av urskogar.</div>\n<div>&nbsp;</div>\n<div>Man bröt grenarna för att laga mat i en gryta. Det var omöjligt att greppa maten för hand eftersom den var mycket het. Så kineserna hittade ett sätt att använda bambugrenarna för att plocka upp maten. Vi antar att de gamla ätpinnarna hade olika storlek.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Sedan Sangdynastin har ätpinnarna samma längd och storlek.</div>\n<div>&nbsp;</div>\n<div>\n<div>Förr i tiden tillverkades ätpinnar av lokala material som grenar, pinnar, djurben och horn. I det primitiva samhället tillverkades ätpinnarna huvudsakligen av trä och bambu.</div>\n<div>&nbsp;</div>\n<div>Elfenbens- och jadepinnar dök upp under Xiang- och Sang-dynastierna, medan koppar- och järnpinnar dök upp under vår och höst och krigande stater (från 770 till 221 f.Kr.), flammande lackpinnar, känsliga silver- och guldpinnar i Han-Wei och sex dynastier (rikena Wu, Jing, Song, Qi, Liang, Chen). Idag finns det ätpinnar tillverkade av olika material, bland annat elfenben, noshörningshorn, gyllene ebenholts och olika jadesorter.</div>\n[gap height=\"50px\"]\n[ux_image id=\"1012\"]\n[gap height=\"50px\"]\n<h3>Legender om kinesiska ätpinnar</h3>\n<p>Personer som använder ätpinnar, inklusive kineser, beundrar uppfinningen, men ingen vet vem som uppfann den. Det finns inga exakta uppgifter om skaparen av denna uppfinning som har gjort betydande bidrag till den mänskliga civilisationen.</p>\n<p>En del tror att den ökande analfabetismen, bland andra orsaker, förklarar denna brist på information. Det finns dock myter kring ätpinnarnas födelse. Här är en sammanfattning av två legender som handlar om ätpinnarnas ursprung:</p>\n<p>\n[gap]\n<h4>Legenden om Jiang Ziya</h4>\n<div>Legenden har spridit sig till områden som Sichuan-provinsen. Det sades att Jiang Ziya inte kunde något annat än att fiska. Han var så fattig att hans fru inte stod ut med att leva med honom och planerade att döda honom för att gifta sig med en annan man.</div>\n<div>&nbsp;</div>\n<div>En dag kom Jiang hem tomhänt efter att ha fiskat. Hans fru sa: \"Du måste vara hungrig. Jag har gjort lite kött till dig. Kom och ät!\" Han var hungrig, så han sträckte ut händerna för att ta köttet. Plötsligt hackade en fågel i fönstret i hans hand. Smärtan fick honom att skrika. I sin smärta försökte Jiang jaga bort fågeln från fönstret men fågeln hackade honom en andra gång.</div>\n<div>&nbsp;</div>\n<div>Jiang var så förvirrad att han inte förstod varför fågeln fortsatte att hacka på honom. För att förstå försökte han plocka upp köttet men samma sak hände. Han förstod att det var för att fågeln var en gudomlig fågel och han jagade den till en kulle så att ingen skulle kunna se den.</div>\n[gap height=\"50px\"]\n[ux_image id=\"635\"]\n[gap height=\"50px\"]\n<p>Stående på en bambugren sjöng den gudomliga fågeln: \"Jiang Ziya, ät inte köttet med dina bara händer, använd det som finns under mina fötter.\" När Jiang hörde detta tog han två små pinnar från bambun och gick hem. Sedan tog han köttet med de två pinnarna. Efter att ha gjort detta kom rök ut ur bambun. Jiang förstod att pinnarna reagerade på giftet som hans fru hade hällt i hans mat.</p>\n[gap height=\"50px\"]\n[ux_image id=\"9660\"]\n[gap height=\"50px\"]\n<p>Jiang Ziya visste att den magiska bambu som den gudomliga fågeln gett honom kunde upptäcka giftet. Så han åt alla sina måltider med dem. Efter händelsen vågade hans fru inte förgifta hans mat och hans grannar lärde sig att äta med en bambugren. Senare följde fler och fler människor denna vana, så seden att äta med ätpinnar fördes vidare från generation till generation.</p>\n[gap]\n<h4>Legenden om Da Yu</h4>\n<p>Den här legenden har spridits över hela nordöstra Kina. Det sägs att Yao och Shun, mytiska härskare i det forntida Kina, beordrade Da Yu att kontrollera en översvämning. Efter att ha fått ordern lovade Yu att eliminera översvämningskatastrofen. Han gjorde sitt bästa för att bekämpa översvämningen dag och natt, till den grad att han varken åt eller sov, än mindre vilade.</p>\n[gap height=\"50px\"]\n[ux_image id=\"1460\"]\n[gap height=\"50px\"]\n<p>Yu åkte båt till en ö där han var så hungrig att han använde en lerkruka för att tillaga köttet. När köttet var välkokt i det kokande vattnet kunde han inte ta det för hand och ville inte slösa tid på att vänta på att det skulle svalna, så han tog två grenar för att plocka upp köttet från soppan.</p>\n<p>Han behöll denna vana tills han blev skicklig på att plocka upp mat med små pinnar, vilket imiterades av hans underordnade som förstod att detta sätt att äta kunde göra att de kunde undvika att röra den heta och feta maten med händerna. Så föddes de första typerna av ätpinnar.</p>\n[gap height=\"50px\"]\n[ux_image id=\"9632\"]\n[gap height=\"50px\"]\n<p>Även om dessa legender inte är historiskt korrekta visar de hur människor tänkte förr i tiden.</p>\n[gap]\n<h2>Hur använder man ätpinnar?</h2>\n<p>Den korrekta användningen av ätpinnar kan beskrivas på följande sätt: höger hand håller i ätpinnarna med tummen och pekfingret som klämmer åt den övre änden av ätpinnarna och de andra tre fingrarna håller naturligt i ätpinnarna, så de två ändarna av ätpinnarna bör förbli i linje. Före måltiden placeras ätpinnarna försiktigt på höger sida av skålen och efter måltiden i mitten av skålen, i vertikal riktning.</p>\n[gap height=\"50px\"]\n[ux_image id=\"9642\"]\n[gap height=\"50px\"]\n<h2>Taboes om ätpinnar</h2>\n<p>Kinesiska ätpinnar har sin beskärda del av bra, men också dåliga manér som du inte bör göra med risk för att bringa dig otur:</p>\n<ul>\n<li\n<li><strong>Oförväntad otur</strong>: Att lägga ätpinnar av ojämn längd på bordet anses vara ett tecken på otur.</li>\n<li><strong>Immortal vägledning</strong>: Om ätpinnarna kläms av tummen, långfingret, ringfingret och lillfingret samtidigt som pekfingret sträcks ut, anses detta innebära otur.</li>\n<li><strong>Sug på ätpinnar med ett ljud</strong>: Att ha en bit ätpinne i munnen och upprepade gånger suga på den med ett ljud är ett oartigt beteende.</li>\n<li><strong>Träffa koppen</strong>: Att slå i tallrikar och skålar anses vara respektlöst och ses ner på av andra.</li>\n<li><strong>Skaka för att göra val</strong>: Att ta ätpinnar för att \"gräva\" i tallrikar är ett dåligt sätt att \"gräva graven\".</li>\n<li><strong>Sänka maten</strong>: Att tappa soppa på andra tallrikar eller på bordet när man plockar upp mat med ätpinnar anses vara respektlöst.</li>\n<li><strong>Himmel och jord upp och ned</strong>: Att använda ätpinnar upp och ned betyder att du är en tiggare.</li>\n<li><strong>Nyckelring</strong>: Att använda en ätpinne för att fästa mat på tallrikar ses som förödmjukande för andra vid bordet.</li>\n<li><strong>Bränna rökelse offentligt</strong>: Ätpinnar bör inte lämnas stående i en skål med ris, eftersom detta liknar ritualen med rökelse som symboliserar att \"mata\" de döda.</li>\n<li><strong>Kors</strong>: Under måltiden ska ätpinnarna inte korsas på bordet eftersom detta uppfattas som negativt.</li>\n<li><strong>Fallande ätpinnar stör den odödlige</strong>: Under en måltid är det oartigt om ätpinnarna råkar falla i golvet, eftersom fallande ätpinnar är en störning av de begravda förfäderna.</li>\n</ul>\n</ul>\n[gap]\n<h2>Materialet i kinesiska ätpinnar</h2>\n<div>Pinnpinnar verkar enkla och flexibla, men de varierar i typ och sammansättning. Det finns mer än 100 olika typer i den kinesiska historien, och de vanligaste är trä, bambu och melamin.</div>\n<div>&nbsp;</div>\n<div>Lan Xiang har delat in kinesiska ätpinnar i fem typer baserat på sin samling och forskning. De är: ätpinnar av bambu, ätpinnar av metall, ätpinnar av elfenben och ben, ätpinnar av jade och kemiska ätpinnar.</div>\n<div>&nbsp;</div>\n<div>De tidigaste och mest primitiva ätpinnarna, trä- och bambuätpinnarna, är fortfarande populära idag (upptäck våra kinesiska bambuätpinnar och våra träätpinnar).</div>\n<div>&nbsp;</div>\n<div>Bambu ätpinnar tillverkas av olika typer av bambu, bland annat nandina bambu, fläckig bambu och phyllostachys pubescens. Bambu anses vara en symbol för traditionella kinesiska värderingar. Den är ett exempel på harmonin mellan naturen och människan. Det finns många tillbehör tillverkade av bambu, särskilt på Bambou Calme med sin kollektion av väskor.</div>\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:42:\"Kinesiska ätpinnar: Ursprung och historia\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:28:\"kinapinnar-ursprung-historia\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:53:10\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:53:10\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=598\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:666;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 19:59:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 18:59:28\";s:12:\"post_content\";s:14851:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>Kina</strong>, liksom många andra östliga kulturer, är djupt rotad i österländsk filosofi, där symbolik spelar en mycket stor roll i dagens kinesiska kultur, särskilt i form av Feng Shui.</div>\n<div>&nbsp;</div>\n<div>Ett viktigt inslag i Feng Shui är användningen av <strong>kinesiska lyckoamuletter</strong> och dekorationer för att förbättra harmonin mellan ditt hem och dess omgivning, förbättra den positiva energin och samtidigt skydda det från otur.</div>\n<div>&nbsp;</div>\n<div><strong>Som vi kommer att se genom de 15 mest populära lyckosymbolerna i den kinesiska kulturen, tar sig kinesiska lyckosymboler många olika former. Dessa lyckosymboler kan också användas med specifika element för att förbättra olika Feng Shui-tillämpningar.</strong></div>\n<div>&nbsp;</div>\n<h2>1) Dzi pärlor</h2>\n[gap height=\"50px\"]\n[ux_image id=\"725\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Dzi-pärlor kommer faktiskt inte från Kina utan från <strong>Tibet</strong>. Det tibetanska ordet Dzi betyder \"briljans\" eller \"glans\" och i Kina är Dzi-pärlor också kända som 天珠, bokstavligen översatt som \"himmelens pärla\".</div>\n<div>&nbsp;</div>\n<div>Dzi-pärlorna, som vanligtvis är gjorda av agat med unika mönster, är också populära som lyckoamuletter i kinesisk Feng Shui-praxis. Dzi-stenar tros vara effektiva inte bara för att avvisa negativ energi utan också för att lagra positiv energi för ägarens lycka.</div>\n<div>&nbsp;</div>\n<div><strong>Dzi-stenar</strong> kan ha olika former och mönster: cirklar, ränder, vågmönster osv. De bärs vanligen som armband eller halsband.</div>\n<div>&nbsp;</div>\n<h2>2) Kinesiska lyckomynt</h2\n[gap height=\"50px\"]\n[ux_image id=\"723\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Det är lätt att känna igen de gamla <strong>kinesiska mynten</strong> på deras fyrkantiga hål i mitten. Myntets runda form symboliserar himlen, medan det fyrkantiga hålet representerar jorden.</div>\n<div>&nbsp;</div>\n<div>På myntens framsidor finns vanligtvis fyra tecken inskrivna runt de fyra sidorna av det fyrkantiga hålet. Detta är myntets yang-sida. På den andra sidan, yin-sidan, finns upp till två tecken.</div>\n<div>&nbsp;</div>\n<div>Det finns olika sätt att använda dessa mynt som en lyckoamulett, vanligtvis genom att binda tre mynt med ett snöre eller band i rött, som är en <strong>lyckofärg</strong> i Kina. Man tror att mynthalsband ger ekonomisk tur.</div>\n<div>&nbsp;</div>\n<h2>3) Den skrattande buddhan</h2>\n[gap height=\"50px\"]\n[ux_products cat=\"45\" products=\"4\"]\n[gap height=\"50px\"]\n<div>En av de vanligaste lyckoamuletterna i kinesisk Feng Shui är den skrattande <strong>Buddha</strong> eller Lyckans Buddha. Denna lyckoamulett symboliserar lycka, välstånd, fertilitet, hälsa och rikedom.</div>\n<div>&nbsp;</div>\n<div>Den skrattande Buddha är baserad på berättelsen om en buddhistisk munk som levde i Kina på 900-talet. Denna munk var ganska excentrisk och passade inte in på de typiska egenskaperna hos en <strong>buddhistisk munk</strong>, men han var alltid glad och hade ett kärleksfullt hjärta, så han älskades av många. Denna munk ansågs sedan vara reinkarnationen av <a href=\"https://www.so-rummet.se/kategorier/religion/buddhismen/buddhismens-historia\">Gautama Buddha</a>, och tros nu symbolisera glädje, skratt och lycka.</div>\n<div>&nbsp;</div>\n<div>Som lyckoamulett kan <strong>Laughing Buddha</strong> placeras var som helst i huset utom i badrummet eller toaletten. Vanligtvis placeras den dock i vardagsrummet eller någon annan plats i ditt hem eller företag där det finns pengar.</div>\n<div>&nbsp;</div>\n<h2>4) Kinesisk lyckokatt</h2\n</p>\n[gap height=\"50px\"]\n[ux_image id=\"720\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div> <strong>lyckokatten</strong> är baserad på den japanska <strong>Maneki-Neko</strong>. Det är en mycket vanlig lyckoamulett inom Feng Shui. Kattens olika färger kan symbolisera olika saker, och det faktum att katten lyfter sin tass åt vänster eller höger förändrar också symboliken.</div>\n<div>&nbsp;</div>\n<div>Om <strong>katten höjer sin vänstra tass</strong> symboliserar den vanligtvis en hankatt som drar till sig rikedom, förmögenhet och professionell framgång i affärer. Så du kan placera den på ditt kontor eller i det område där du brukar arbeta för att öka din framgång.</div>\n<div>&nbsp;</div>\n<div>Om katten å andra sidan höjer sin högra tass är det en honkatt som symboliserar välstånd, fertilitet och familjelycka, samt <strong>god hälsa</strong>.</div>\n<div>&nbsp;</div>\n<h2>5) Det stora kinesiska lyckofartyget</h2>\n[gap height=\"50px\"]\n[ux_image id=\"729\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Förmögenhetsskeppet är också en mycket viktig lyckoamulett i kinesisk Feng Shui. Som namnet antyder är det en skeppsformad dekoration i olika former och storlekar. De bär vanligtvis ädelstenar och miniskatter för att <strong>symbolisera</strong> rikedom och är mycket populära att placera i hem och företag.</div>\n<div>&nbsp;</div>\n<div>Förmögenhetsskeppet tros locka till sig rikedom och lycka. För korrekt Feng Shui har båten vanligtvis segel som helt fångar vinden för att symbolisera att man rör sig mot en bättre framtid.</div>\n<div>&nbsp;</div>\n<div>Det finns lyckobåtar som är helt byggda av ädelstenar och till och med guld, och andra som är byggda av äkta trä och <strong>silkestyg</strong>, som ett äkta skepp.</div>\n<div>&nbsp;</div>\n<h2>6) Trebent groda</h2>\n[gap height=\"50px\"]\n[products ids=\"6000\" columns=\"1\"]\n[gap height=\"50px\"]\n<div>Den trebenta lyckogrodan, även kallad Jin Chanou eller Chan Chu, är också en mycket populär och kraftfull <strong>kinesisk Feng Shui lyckoamulett</strong>. Den tros attrahera och skydda din förmögenhet, samtidigt som den skyddar dig och din familj från otur.</div>\n<div>&nbsp;</div>\n<div>Den trebenta grodan symboliserar pengaflödet, och Feng Shui föreskriver att denna staty inte ska placeras mitt emot din huvuddörr. Den bör inte heller placeras i ditt kök och toalett eller badrum.</div>\n<div>&nbsp;</div>\n<div>Det är vanligt att placera den trebenta grodstatyn i huvudentrén, medan en annan <strong>staty</strong> bredvid den har ryggen mot entrén. Denna konfiguration är tänkt att skydda flödet av pengar som kommer och går utanför hemmet eller företaget.</div>\n<div>&nbsp;</div>\n<h2>7) Träd av ametistkristall</h2>\n[gap height=\"50px\"]\n[ux_image id=\"715\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>I <strong>kinesisk</strong> Feng Shui anses kristaller innehålla positiv helande energi, och många människor använder dem som koncentrationsobjekt i sin meditationsövning.&nbsp;</div>\n<div>&nbsp;</div>\n<div>I det här fallet är ametistkristallerna arrangerade som ett träd (med en trädgren av harts eller plast) och tros ha helande egenskaper som lugnar sinnet. De anses också vara en lyckoamulett för rikedom och välstånd. Ametistkristallträdet sägs förbättra minnet samtidigt som det bibehåller lugnet och kan också hjälpa till med sömnlöshet. Det har samma funktioner som <a href=\"https://kristallerna.se/blogg/vad-ar-en-dromfangare/\">drömfångare</a> för att jaga bort onda andar och hjälpa dig att sova bättre.</div>\n<div>&nbsp;</div>\n<div>Det finns också kristallträd tillverkade av andra material som agat, citrin, rosenkvarts och andra.</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<h2>8. Draksköldpadda</h2>\n[gap height=\"50px\"]\n[ux_products ids=\"5994\"]\n[gap height=\"50px\"]\n<div>Draken och <strong>sköldpaddan</strong> är symboler för skydd, visdom och ädelhet i den kinesiska kulturen. De är två av de fyra himmelska djuren (drake, tiger, fenixfågel och sköldpadda).</div>\n<div>&nbsp;</div>\n<div>Drakesköldpaddan har, som namnet antyder, en sköldpaddas kropp men en drakes huvud, och tros symbolisera god hälsa, långt liv, kraft, mod och <strong>framgång</strong>. En draksköldpaddsstaty tros skydda sin ägare från svek i affärer och främja hälsosam harmoni i hemmet och på arbetsplatsen.</div>\n<div>&nbsp;</div>\n<div>Det finns flera typer av draksköldpaddsstatyer som används som lyckoamuletter, inklusive tre av de viktigaste:</div>\n<div>&nbsp;</div>\n<div>Sköldpaddsdrake som bär en pagod (Wen Chang-pagoden) på ryggen. Den är en lyckoamulett för <strong>akademisk framgång</strong></div>\n<div>Sköldpaddsdrake med en bebis (eller ett par bebisar) sittande på sitt skal. Den tros förbättra fertiliteten och familjeharmonin</div>\n<div>Drake-sköldpadda som sitter på mynt och guldtackor, som du kanske har gissat, symboliserar ekonomisk förmögenhet</div>\n<div>&nbsp;</div>\n<h2>9) Pi Xiu</h2>\n[gap height=\"50px\"]\n<div>Pi Xiu, även känd som Pi Yao, Tian Lu, Bai Jie eller Bi Xie, är en mytisk kinesisk chimera som liknar ett bevingat lejon med drakelement. Som lyckoamuletter i <strong>Feng Shui</strong> tros Pi Xiu-statyer skydda sin ägare från onda andar och negativ energi, vilket förhindrar otur.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Pi Xiu gillar att äta guld, smycken, silver och vatten. Därför tror man att de blir rika från alla håll för sin ägare. Pi Xiu anses vara ett mycket lojalt och lydigt mytologiskt djur, vilket gör den till en favorit som <strong>lyckoamulett för personligt skydd</strong>. Du kan hitta Pi Xiu lyckoamuletter i olika former, som nyckelringar, armband eller till och med statyer.</div>\n<div>&nbsp;</div>\n<h2>10) Chi Lin</h2>\n[gap height=\"50px\"]\n[ux_image id=\"711\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Chi Lin är en annan mytologisk chimär från <strong>det forntida Kina</strong>, en varelse med drakhuvud men hästkropp. Dessutom har Chi Lin fjäll som en karpfisk. Chi Lin kallas också ofta för drakhästen eller ibland för den kinesiska enhörningen.</div>\n<div>&nbsp;</div>\n<div>Chi Lin tros kunna ge skydd åt sin ägare och även förbättra ägarens hälsa och rikedom. Dessutom är den känd för att vara ett skydd mot olika relationsproblem för att främja ett harmoniskt hushåll. Den förknippas dock mest med fertilitetens <strong>lycka</strong>. Om du vill veta mer om denna varelse och många andra kan du klicka här.</div>\n<div>&nbsp;</div>\n<div>Som en lyckoamulett kan du placera Chi Lin-skulpturen nära huvudingången till ditt hem eller din arbetsplats eller i ditt vardagsrum. Den kan också komma i olika andra former som broderi, staty, nyckelring, amuletter etc. Det finns också många olika material, ytbehandlingar och storlekar.</div>\n<div>&nbsp;</div>\n<h2>11) Kinesiskt skyddslejon</h2>\n[gap height=\"50px\"]\n[ux_image id=\"709\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Det kinesiska skyddslejonet eller Fu-hunden är en annan <strong>kinesisk mytologisk varelse</strong>. Traditionellt placeras de framför kejserliga palats, regeringskontor i det gamla Kina och även tempel.</div>\n<div>&nbsp;</div>\n<div>Nuförtiden anses Fu-hundar vara en symbol för en familjs rikedom och sociala status, så de placeras ofta framför stora hus i Kina och <strong>Asien</strong>.</div>\n<div>&nbsp;</div>\n<div>I allmänhet visas kejserliga <strong>guardian lion statues</strong> i par, där honan håller en unge under sin vänstra tass, vilket symboliserar moderns beskydd, och hanen håller en jordglob under sin högra tass, vilket symboliserar skyddet av hans domän (hem).</div>\n<div>&nbsp;</div>\n<h2>12) Lyckobambu Feng Shui</h2>\n[gap height=\"50px\"]\n[ux_image id=\"707\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Lucky <strong>Bamboo</strong>, även känd som Lucky Bamboo, är en mycket viktig växt inom Feng Shui och anses ge positiv och fridfull energi till det hem där den finns. Bambu är en flexibel växt som också är ihålig inuti, och i kinesisk filosofi symboliserar detta flexibiliteten och öppenheten hos individen.</div>\n<div>&nbsp;</div>\n<div>Lucky bamboo kan placeras inne i huset, eller så kan du odla riktiga bambuplantor i din <strong>trädgård</strong>. Det finns också olika tillbehör tillverkade av bambustjälkar som tros ge samma effekt.</div>\n<div>&nbsp;</div>\n<div>Antalet stjälkar spelar också en viktig roll vid användning av <strong>Lucky Bamboo</strong>. Tre stjälkar, till exempel, tros ge tre sorters tur: rikedom, livslängd och lycka. Sju stjälkar symboliserar å andra sidan hälsa, medan åtta stjälkar ger lycka till fertilitet, eftersom ordet \"åtta\" på mandarin är mycket likt det ord som används för \"växa\".</div>\n<div>&nbsp;</div>\n<h2>13) Symbol för dubbel lycka</h2>\n[gap height=\"50px\"]\n[ux_image id=\"705\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Den <strong>kinesiska symbolen</strong> för dubbel lycka är i princip ordet (xi) som skrivs två gånger sida vid sida så att två av dess streck sammanfogas.</div>\n<div>&nbsp;</div>\n<div>Den här symbolens betydelse är bokstavlig: dubbel dos av lycka för dess ägare, och den används ofta som <strong>dekoration</strong> vid högtider och firanden (t.ex. det kinesiska nyåret, födelsedagsfester, barns födelse etc.).</div>\n<div>&nbsp;</div>\n<div>Tecknet Dubbel lycka användes först som bröllopsdekoration, en symbol för bön om att de nygifta skulle bli lyckliga och att deras äktenskap skulle hålla. Men under årens lopp har den även kommit att användas vid andra <strong>kinesiska festligheter</strong>.</div>\n<div>&nbsp;</div>\n<h2>14) Kinesisk fågel Fenix</h2>\n[gap height=\"50px\"]\n[ux_image id=\"703\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Det är en av Kinas fyra väktare (drake, sköldpadda, fenix och tiger), och <strong>fenixen</strong> härskar över alla andra fåglar i Kina.</div>\n<div>&nbsp;</div>\n<div>Hanar av fenix kallas Feng, medan honor kallas Huang. Idag skiljer man dock vanligtvis inte på könen och därför kallas Fenix ofta för Fenghuang, ett kvinnligt väsen som associeras med <strong>draken</strong>, som vanligtvis är ett manligt väsen.</div>\n<div>&nbsp;</div>\n<div>Som <strong>lyckobringare</strong> representerar fenixristningar rättvisa, lydnad och lojalitet, och används ofta som lyckobringare för dem som har otur, eftersom den tros kunna vända under dåliga omständigheter.</div>\n<div>&nbsp;</div>\n<h2>15) Koi karp</h2>\n[gap height=\"50px\"]\n[ux_image id=\"701\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div><strong>Koi</strong> kallas 鲤鱼, Li Yu, eller bokstavligen översatt som \"karpfisk\" i Kina. Det finns många användningsområden för denna lyckoamulett. Till exempel tros en karpstaty placerad på ett skrivbord ge akademisk framgång.</div>\n<div>&nbsp;</div>\n<div>Ett vanligt sätt är att placera 8 karpbitar runt skrivbordet, eftersom 8 är det kinesiska talet för rikedom och välstånd. Några <strong>karpstatyer</strong> placerade i sovrummet tros också ge lycka i ett äktenskap.</div>\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:35:\"De 15 bästa kinesiska lyckokakorna\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:26:\"15-kinesiska-lyckosymboler\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:53:20\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:53:20\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=666\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:731;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 21:41:17\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 20:41:17\";s:12:\"post_content\";s:12971:\"<!-- wp:flatsome/uxbuilder -->\n<div>Finns det några legendariska <strong>kinesiska krigare</strong>? Vad heter de och vad har de för historia?&nbsp;</div>\n<div>&nbsp;</div>\n<div>På Teng Shop brinner vi för <strong>kinesisk kultur</strong>, så vi kommer att ge dig svaren så exakt som möjligt.</div>\n<div>&nbsp;</div>\n<div><strong>I tusentals år har Kina haft mäktiga dynastier och många krig. Det är därför stora krigare som Sun Wu, Cao Cao eller Xiang Yu kunde glänsa under dessa svåra perioder.</strong></div>\n<div>&nbsp;</div>\n<div>I den här artikeln kommer du att upptäcka :&nbsp;</div>\n<ul>\n<div>&nbsp;</div>\n<li>5 mycket berömda kinesiska krigare\n<li>5 mycket berömda kinesiska krigare</li>\n<li>Deras personliga historia</li>\n<li>Dessa <strong>krigares</strong> inverkan på Kina</li>\n<li>Efter att ha läst den här artikeln kommer dessa kinesiska krigare inte längre att ha några hemligheter för dig!</li>\n</ul>\n</ul>\n<div>Låt oss utan vidare dröjsmål tillsammans upptäcka den första krigaren!</div>\n\n[gap]\n\n<h2>1. Sun Wu (Sun Tzu)</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"756\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Sun Wu, eller <strong>Sun Tzu</strong> är förmodligen den mest berömda kinesiska krigaren i världen. Anledningen till hans berömmelse är hans berömda bok \"<strong>Krigskonsten</strong>\". Boken hjälper krigsgeneraler att bättre organisera sig under ett slag eller under ett krig på ett mer allmänt sätt. Samma bok används inom många områden idag, till exempel inom näringslivet, där det sägs att genom att ersätta ordet \"krig\" med ordet \"näringsliv\", så får vi en helt ny läsning av verket.</div>\n<div>&nbsp;</div>\n<div>Vi har inte mycket information om början av Sun Wus liv, men allt tyder på att han skulle ha fötts i den kinesiska staten Ch\'i och att han skulle ha tjänat kung Ho-lu av Wu som <strong>militär specialist</strong> i slutet av Zhou-dynastin (1046 till 256 f.Kr.).</div>\n<div>&nbsp;</div>\n<div>Den här generalens hela berömmelse byggde på det faktum att han fokuserade på ett krig som var mer psykologiskt än brutalt. Vid en tidpunkt då människor helt enkelt ville eliminera alla sina motståndare under ett krig, föreslog Sun Tzu <strong>alternativ som var mycket mindre våldsamma men desto mer formidabla</strong>. Han använde mänsklig psykologi för att neutralisera fiender och försökte alltid rädda så många oskyldiga människor som möjligt.</div>\n<div>&nbsp;</div>\n<div>Du följde lärdomarna från <a href=\"https://suntzusaid.com/\">Krigskonsten</a> och använde bedrägeri och psykologisk press för att krossa dina fiender. Överraskningsattacker och att bryta fiendens allianser är också en del av denna <strong>taktik</strong>, det viktiga är att hålla så många män som möjligt på din sida.</div>\n\n[gap]\n\n<h2>2. Wu Qi</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"754\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Wu Qi (381 f.Kr.) var född i Zuo i delstaten Wei. Han var en av de <strong>ledande militärerna, statsmännen och reformatorerna</strong> under den tidiga perioden av Tre riken i Kina.</div>\n<div>&nbsp;</div>\n<div>Wu Qi studerade konfucianism under Zeng Shen under sina tidiga år, men övergav senare <strong>konfucianismen</strong> för att studera militärkonst. När han befann sig i staten Lu fick han order om att leda kejsarens armé och besegra Qi, en fiende till staten. Därefter begav han sig till Wei, där han blev mycket uppskattad av markisen av Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Han reformerade också det militära systemet och skapade Wei Wu-soldaterna, som \"vann 64 av 76 strider mot <strong>krigsherrarna</strong>\". Han utnämndes till magistrat av kungen av Chu och ledde reformer.</div>\n<div>&nbsp;</div>\n<div>Han utsågs till magistrat i staten Chu och genomförde reformer som på kort tid stärkte staten Chu och gjorde att den kunde \"pacificera Baiyue i söder, gå samman med Chen och Cai i norr, men erövra de tre Jin-dynastierna och <strong>erövra</strong> Qin i väster\". År 381 f.Kr., efter kungens död, mördades Wu Qi för att ha förolämpat det gamla gardet med sina ansträngningar att ändra lagen.</div>\n<div>&nbsp;</div>\n<div>Wu Qi tjänstgjorde i staterna Lu, Wei och Chu och var en mästare på de tre tankeskolorna - <strong>militär</strong>, juridisk och konfucianism - och var känd som \"Sun Wu\". Hans verk, Wu Zi, intar en viktig plats i det gamla Kinas militära kanon.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Under Tangdynastins kejsare Su Zongs regeringstid inkluderades han i kung Wucheng-templet och blev en av de tio filosoferna i Wushu-templet. Under <strong>kejsare</strong> Huizong av Songdynastin utnämndes han postumt till Guangzongbo, en av de sjuttiotvå generalerna i Wu-templet.</div>\n\n[gap]\n\n<h2>3. Qin Shi Huang</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"752\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Qin Shi Huang Ying Zheng (259-210 f.Kr.), med smeknamnet Ying, Zhao och även känd som Zhao Zheng, var en framstående statsman, strateg och reformator i <strong>det antika Kina</strong>. Han var den första politiska person som fullbordade Kinas enande och den första kinesiska monarken som kallade sig kejsare. Han är den allra första reformatorn i Kina och satte punkt för tio år av brutalt krig.</div>\n<div>&nbsp;</div>\n<div>Ying Zheng föddes i Handan, huvudstaden i staten Zhao. Han tillträdde tronen 247 f.Kr., vid tretton års ålder.&nbsp; Mellan 230 och 221 f.Kr. förintade han de sex staterna Han, Zhao, Wei, Chu, Yan och Qi, fullbordade enandet av <strong>Kina</strong> och etablerade en centraliserad och enhetlig multietnisk stat, Qin-dynastin. Det är från denna dynasti som landets namn kommer, Qin är mycket likt ordet \"Kina\".</div>\n<div>&nbsp;</div>\n<div>Vid samma tid antog centralregeringen systemet med tre prinsar och nio ministrar för att hantera statens angelägenheter; på lokal nivå avskaffades det <strong>feodala systemet</strong> och ersattes av grevskapssystemet.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Han var också ansvarig för uppförandet av <strong>Den stora kinesiska muren</strong>. Bygget av denna byggnad, som fortfarande står kvar, beordrades av Ying Zheng för att avvärja de nomadiska och barbariska attacker som kom från norr. Detta gjorde att Mittens rike kunde leva i fred i mer än 15 år, vilket gav landet tid att enas i fred.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<div>Qin upprättade också Kinas första centraliserade regeringsinstitutioner och ersatte det föråldrade militära systemet - som normalt bestod av oorganiserade bondekrigare - med etablerade <strong>militära institutioner</strong> som än idag producerar karriärsoldater som systematiskt tränas i de mest avancerade försvarstaktikerna.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Qin Shi Huang sökte odödlighet och drömde om att bli en gud. Hans tyranniska styre och förkvävande av folkets visdom destabiliserade grunderna för Qins styre. År 210 f.Kr. dog Qin Shi Huang vid Xingtai Shaqiu under sin resa österut.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Den här <strong>kinesiske krigaren</strong> och kejsaren lyckades med konststycket att definiera grundmönstret för det kinesiska politiska systemet i över 2 000 år. Han hyllades av Ming-tänkaren Li Zhi som \"den ende kejsaren från tusen tidsåldrar\".</div>\n\n[gap]\n\n<h2>4. Xiang Yu</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"9227\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Xiang Yu (232 f.Kr. - 202 f.Kr.) var en ättling till Xiang-staten, en <strong>vasallstat</strong> till Zhou-dynastin.</div>\n<div>&nbsp;</div>\n<div>Som ung man lärde sig Xiang Yu ingenting om böcker och svärd, men han hade den stora ambitionen att <strong>strida</strong> mot Qin. I september det första året av den andra Qin-dynastin (209 f.Kr.) följde han med Xiang Liang till Huiji (nuvarande Suzhou i Jiangsu-provinsen) för att slå tillbaka Chen Shengs och Wu Guangs uppror.</div>\n<div>&nbsp;</div>\n<div>Efter Chen Shengs död tog han över ledningen för de viktigaste anti-Qin-styrkorna och installerade Xiong Xin, sonson till kung Huai av Chu, som kung.&nbsp;</div>\n<div>&nbsp;</div>\n<div>År 206 f.Kr. delade Xiang Yu upp herrarna och gjorde Liu Bang till kung över Han, gjorde sig själv till kung över västra Chu och etablerade sin huvudstad i Pengcheng (nuvarande Xuzhou, Jiangsu).&nbsp;</div>\n<div>&nbsp;</div>\n<div>Snart därefter reste Tian Rong och Chen Yu sina trupper mot Chu i Qi och Zhao, och Liu Bang tog tillfället i akt att pacificera de tre <strong>Qin-dynastierna</strong> och rycka in i västra Chu. Även om Xiang Yu var segerrik i början av kriget blev den militära situationen alltmer ogynnsam på grund av splittringen av lorderna och interna konflikter samt dåliga strategiska beslut, och han belägrades slutligen i Gaixia.</div>\n<div>&nbsp;</div>\n<div>Som representant för den <strong>kinesiska militära skolan</strong> var Xiang Yu en krigargeneral känd för sin överlägsna styrka. Li Wanfang kommenterade att \"Yus mod har varit oöverträffat i tusen år.\"</div>\n\n[gap]\n\n<h2>5. Cao Cao</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"748\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Cao Cao, Wu <strong>kejsare av Wei</strong> (155 - 15 mars 220), kom från Qiao län, Pei stat (nu Bozhou, Anhui-provinsen), med efternamnet Mengde. Han var en framstående politiker, militär, litteraturvetare, kalligraf och poet i det gamla Kina. Han var en mäktig minister i den sena östra Han-dynastin, son till Cao Song, son till förste löjtnanten och grundare av Cao Wei-dynastin.</div>\n<div>&nbsp;</div>\n<div>Cao Cao var en alert, <strong>ritterlig</strong> och utsvävande ung man som behärskade sitt hantverk. Redan vid tjugo års ålder befordrades han till peer och utsågs till löjtnant i den norra delen av Luoyang. Senare blev han <strong>kavallerikapten</strong> och deltog i förtrycket av den gula turbanarmén. Han flyttade till Jinan, där han var ansvarig för att eliminera korrupta tjänstemän och förbjuda obscena ritualer.&nbsp;</div>\n<div>&nbsp;</div>\n<div>När Dong Zhuo tog makten skingrade han sin familjs pengar och reste en <strong>armé</strong> för att tillsammans med Yuan Shao och andra kämpa mot honom. Under sitt tredje regeringsår (192) lyckades han splittra och besegra Yanzhous gula turbanarmé på över 300 000 man och välja ut de bästa av dem för att bilda Qingzhouarmén.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Under Jian\'ans första år (196) var han värd för kejsaren av Xian i Xu (öster om Xuchang i Henanprovinsen), där han blev generalsekreterare och tog hand om den <strong>imperiala</strong> administrationen. Under det femte året av Jian\'an (200) besegrade han Yuan Shaos huvudstyrkor i slaget vid Guandu och eliminerade Yuan Shang och Yuan Tan i tur och ordning.</div>\n<div>&nbsp;</div>\n<div>Under Jian\'ans tolfte år (207) besegrade han Wuhuan och enade Norden. Året därpå befordrades han till premiärminister, anföll Jingzhou och utkämpade slaget vid Röda klippan med Sun Quan och Liu Bei, men besegrades. Under Jian\'ans 18:e år (213) kröntes han till hertig av Wei. Under Jian\'ans 20:e år (215) besegrade han Zhang Lu och intog Hanzhong. Följande år kröntes han till kung av Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Slutligen, år 220, dog han i Luoyang vid sextiosex års ålder. Efter att hans son Cao Pi blivit kejsare på Han-folkets vägnar hedrades han postumt som kejsare Taizu Wu och begravdes i Gao Ling.</div>\n<div>&nbsp;</div>\n<div>Cao Cao var begåvad inom poesi och litteratur, kunde krigskonsten och skapade skrivstilen Jian\'an. Han är författare till många dikter och essäer. Han skrev också en kommentar till Sun Tzu, som har överförts till världen. Hans dikter och skrifter samlades i ett manuskript, Cao Cao ji (Cao Caos fullständiga verk). Han excellerade också i kalligrafi, och Zhang Huaiguan från Tangdynastin kallade honom \"ett underbart mästerverk.</div>\n\n[gap]\n\n<h2>Dessa krigares plats i kinesernas liv</h2>\n\n[gap]\n\n<div>Som vi just har sett har dessa 5 kinesiska krigare, på sitt eget sätt, fört den kinesiska världen framåt. Oavsett om det är Sun Tzu som skrev \"Krigskonsten\" eller Qin Shi Huang som beordrade byggandet av den kinesiska muren, har alla dessa <strong>legendariska män</strong> satt sin prägel på den moderna världen.</div>\n<div>&nbsp;</div>\n<div>De anses idag vara inspirerande människor, så att de kan hittas i många verk som böcker eller filmer. Det finns också mycket kända videospel som <strong>Dynasty Warriors</strong> med några av dessa män under kriget mellan de tre kungadömena.</div>\n<div>&nbsp;</div>\n<div>I Kina kan vi också lätt hitta dessa mäns gravar, så att vi kan upptäcka vackra <strong>kinesiska städer</strong> som väntar på ditt besök.</div>\n\n[gap]\n\n[featured_products]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:32:\"5 legendariska kinesiska krigare\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:32:\"5-legendariska-kinesiska-krigare\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=731\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:760;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 01:42:55\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 00:42:55\";s:12:\"post_content\";s:13453:\"<!-- wp:flatsome/uxbuilder -->\n<div>Är du nyfiken på vad <strong>Hanfu</strong> är? Bärs den av män eller kvinnor? Bärs den fortfarande idag?</div>\n<div>&nbsp;</div>\n<div>Med passion för <strong>kinesisk kultur</strong> och traditionellt mode kommer vi att ge dig svaret så exakt som möjligt.</div>\n<div>&nbsp;</div>\n<div><strong>Hanfu är ett traditionellt kinesiskt plagg. Det har burits i mer än 3000 år och har genomgått vissa förändringar under dynastierna. Hanfu har varit bortglömd under många årtionden, men har åter blivit modern och är nu en symbol för Kina.</strong></div>\n<div>&nbsp;</div>\n<div>I den här artikeln kommer du att upptäcka:</div>\n<ul>\n<div>&nbsp;</div>\n<li>Vad är Hanfu</li>\n<li>När och hur man bär den</li>\n<li>Är det fortfarande ett slitet och uppskattat plagg</li>\n</ul>\n</ul\n\n\n\n\n<div>Efter att ha läst den här artikeln kommer du att veta exakt varför detta traditionella plagg är så viktigt i <strong>Kina</strong>.</div>\n<div>&nbsp;</div>\n<div>Utan vidare dröjsmål, låt oss komma igång.</div>\n\n[gap]\n\n<h2>Hanfu, ett traditionellt kinesiskt plagg</h2>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"804\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Hanfu 汉服 betyder bokstavligen \"Han-folkets kläder\".&nbsp; Det är de traditionella kläderna <strong>som ursprungligen bars av Han-kineserna</strong>, den största etniska gruppen i Kina.</div>\n<div>&nbsp;</div>\n<div>Hanfu är ett traditionellt kinesiskt klädesplagg med mycket gammalt ursprung. Det skulle ha mer än 3000 års historia! Det skulle till och med ha burits av den gule kejsaren själv, en stor civiliserande regent som än idag betraktas som Kinas fader.</div>\n<div>&nbsp;</div>\n<div>Ursprunget till detta <strong>plagg</strong> går tillbaka till Shangdynastin (1570 till 1045 f.Kr.). Hanfu är sammansatt enligt följande:</div>\n<ul>\n<div>&nbsp;</div>\n<li>Yi 衣, en tunika med smala ärmar som når ner till knäna och fästs med ett bälte</li>\n<li>Chang裳, en veckad kjol som når till anklarna</li>\n<li>Bixi蔽膝, ett tygstycke som täcker låren och bärs ovanför kjolen.</li>\n</ul>\n<div\n\n\n\n\n<div>Under Zhou-dynastin (770 till 256 f.Kr.) blev plaggets sociala status starkt kodifierad och alla kunde inte bära Hanfu på samma sätt.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"834\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Enligt föreskrifterna var det nödvändigt att uppmärksamma längden på <strong>kjolen</strong> och tunikan, ärmarnas vidd, de ornament som sattes på klänningen... Under denna dynasti förändras Hanfu något genom att bli bredare vid ärmarna och mer dekorerad (att hänga jadestenar på bältet var till exempel mycket uppskattat).</div>\n<div>&nbsp;</div>\n<div>Hanfu blev en metod för att <strong>skilja på sociala klasser</strong>. Ju högre en person placerades, desto mer dekorerades hans Hanfu. Dessutom fanns det också skillnader i ärmarnas storlek, kjolens längd eller klänningens fästning.</div>\n<div>&nbsp;</div>\n<div>Zhou-dynastin uppfann <a href=\"https://www.chinahighlights.com/travelguide/traditional-chinese-clothes.htm#:~:text=The%20Hanfu%2C%20Zhongshan%20suit%20(Mao,typer%20av%20traditionella%20kinesiska%20kläder.\">Shengyi</a> 深衣, eller \"djupt plagg\". Det var egentligen en kort tunika och kjol som sytts ihop. Det nya plagget kunde bäras av både män och kvinnor.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"808\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Efterhand som tekniken blev mer modern kunde vi se vackra och komplexa mönster på <strong>Shengyi</strong> och Hanfu.</div>\n<div>&nbsp;</div>\n<div>Med tiden och de olika dynastier som följde utvecklades Hanfu och blev ännu mer komplex. Till exempel hittar vi:</div>\n<ul>\n<li>Yi衣, ett kort plagg med korsad hals. Bärs av båda könen</li>\n<li>Pao袍, lång klänning eller tunika som stängs åt sidan och endast bärs av män</li>\n<li>Ru襦, öppen skjorta med korsad hals</li>\n<li>Shan衫, öppen jacka med korsad halsringning eller jacka som bärs över Yi</li>\n<li>Chang裳, en ny typ av kjol som bärs av både män och kvinnor</li>\n<li>Ku褲, en typ av vida byxor som främst bärs av män</li>\n</ul>\n<div><strong>Hanfu</p>\n<div><strong>Hanfu har burits av nästan alla kineser i århundraden</strong>. Hovfolk, lärda, studenter, arbetare, alla hade en Hanfu som var anpassad till deras sociala klass.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"836\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Det är i början av Qingdynastin (1644-1911) som Hanfu försvinner lite i taget. Denna dynasti, jämfört med alla de andra, grundades inte av Han <strong>kineser</strong>, som utgjorde majoriteten av den kinesiska befolkningen vid den tiden, utan av Manchu-kineser.</div>\n<div>&nbsp;</div>\n<div> Manchuerna var ett halvnomadiskt folk som gjorde sig kända i Manchuriet. Efter att ha tagit makten i Kina förde de naturligtvis med sig sina egna traditionella kläder. Bland dem finns till exempel den mycket berömda <strong>kinesiska klänningen QiPao</strong>, som snart kommer att ersätta Hanfu för kvinnor.</div>\n<div>&nbsp;</div>\n<div>Qipao och Hanfu har alltså en sammanlänkad men mycket olika historia. <strong>Qipao</strong> är idag mycket populärare än Hanfu, eftersom de moderna versionerna är mycket lättare att bära i vardagen än Hanfu som fortfarande är ett ganska imponerande och komplext plagg. Om du är intresserad av Qipao hittar du en länk till vår samling i bilden nedan.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"47\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>När och hur man bär Hanfu</h2>\n<p>Hanfu är ett sofistikerat och prestigefyllt plagg. Det är uppenbart att man idag inte går till jobbet i Hanfu till exempel. Men det finns många tillfällen att bära detta vackra plagg.</p>\n\n[gap]\n\n<h3>När ska man bära Hanfu</h3>\n<p>För traditionella firanden är det inte förvånande att bära en Hanfu. Det visar respekt för <strong>kinesisk kultur</strong> och sätter dig i den tidens kinesers skor under festligheterna. Detta inkluderar naturligtvis <a href=\"https://www.cchatty.com/Chinese-Traditional-Marriage-Culture-g-100013\">kinesiska bröllop</a>.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"812\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Det är också möjligt att bära Hanfu vid historiska minneshögtider eller vid en ceremoni när man blir myndig, en gammal tradition som vissa kineser försöker återuppliva.</div>\n<div>&nbsp;</div>\n<div>Hanfu <strong>kan bäras vid ett evenemang</strong>, t.ex. en <strong>skol- eller teaterföreställning</strong>. Den kan också bäras <strong>på gatan</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"814\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Slutligen kan vi nämna de buddhistiska och taoistiska <strong>religiösa kläder</strong> som fortfarande idag är Hanfu. De Hanfu som bärs av troende är uppenbarligen mycket sobra, enfärgade och sällan med mönster.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"816\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Sedan 2010 finns det till och med en <strong>officiell Hanfu-festival</strong>, som vanligtvis hålls i Chengdu. Denna <a href=\"http://en.people.cn/n3/2020/1123/c90000-9786322.html\">Hanfu-festival</a> gör det möjligt att upprätthålla traditionen och att låta deltagarna lära sig mer om detta mytomspunna plagg. Även om kineser lär sig om Hanfu i skolan är det framför allt under den här typen av evenemang som vi lär oss intressanta saker.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"818\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Hur man bär Hanfu</h3>\n<div>Hanfu är ett plagg som är enklare att bära än du kanske tror. Det är lika enkelt att klä sig i Hanfu som det är att klä sig i ett <strong>modernt plagg</strong>. På sommaren bär kinesiska kvinnor till exempel gärna en Qixiong Ruqun齐胸襦裙, som är en <strong>enkel klänning</strong> med ett bälte över bröstet.</div>\n<div>&nbsp;</div>\n<div>På vintern är Qiyao-Ruqun齐腰襦裙-klänningar från Wei- och Jin-dynastierna eller Ma Mian Qun马面裙-klänningar att föredra. De består vanligtvis av fler lager än andra klänningar och håller sig varmare. De är mer komplicerade att ta på.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"820\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>För män är Hanfu också mycket enkelt att bära. Även om de mycket traditionella versionerna är lite mer komplexa, är majoriteten av de Hanfu du kommer att kunna prova mycket enkla att ta på: <strong>en enkel klänning, en jacka och ett bälte att spänna fast</strong>.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"822\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p><Om du kommer till Kina är det helt normalt att undra om en icke-kinesisk person kan bära Hanfu. Även om vissa nationalistiska kineser kommer att ha svårt att säga ja, kommer <strong>de allra flesta inte att ta illa upp</strong> av att se en utlänning bära en Hanfu. Så länge det görs med respekt för traditionen, <strong>accepteras det utan problem</strong>.</p>\n\n[gap]\n\n<h2>Ett traditionellt plagg som fortfarande uppskattas av kineserna</h2>\n<div>Trots plaggets ålder har <strong>Hanfu blivit allt populärare i Kina</strong> under de senaste åren.</div>\n<div>&nbsp;</div>\n<div><strong>Modet i Kina</strong> har verkligen förändrats mycket under de senaste åren. På 80- och 90-talen klädde sig kineser väldigt sobert, ofta i svart eller grått. Att gå utanför mallen var ganska ogillat så \"alla\" klädde sig på samma sätt.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"824\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Med åren, Kinas ekonomiska språng och de alltmer västerländska mentaliteterna förändras det <strong>kinesiska modet</strong> mycket snabbt. Kineserna vill inte längre \"vara som alla andra\" utan \"vara annorlunda\".</div>\n<div>&nbsp;</div>\n<div>Vi hittar alla stilar när vi promenerar i Kina. Vi går från vuxna i sobra kostymer till unga människor som är klädda på ett mycket mer överdrivet sätt. De kan mycket väl gå från en streetwear-outfit till en <strong>traditionell outfit</strong>, som Hanfu.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"826\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Hanfu har blivit modernt igen sedan 2000-talet</strong>. En man vid namn Wag Letian, en energiarbetare, gick ut på gatorna i november 2003 iförd sin hemmagjorda Hanfu. Detta sägs vara startskottet för återupplivandet av Hanfu.</div>\n<div>&nbsp;</div>\n<div>Fler och fler människor vågade gå ut på gatan i traditionell klädsel. <strong>Anhängarna av denna sed kallas TongPao同袍</strong>. De använder främst internet för att dela med sig av denna tradition som väckts till liv igen.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"828\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div> <strong>TongPao</strong>, som brinner för detta plagg, har fördjupat sina kunskaper och delar dagligen med sig av mycket information om Hanfu, vilket gör det möjligt att samla tillförlitliga källor och därmed få veta mer om den traditionella kinesiska kulturen.</div>\n<div>&nbsp;</div>\n<div>Det blir allt mindre förvånande att se unga människor gå på stan i <strong>traditionell klädsel</strong>. Likt prinsar eller prinsessor gör dessa unga kineser detta för att respektera traditioner, för fotografering eller för att bli sedda.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"830\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Du behöver inte ens åka till Kina längre för att se dem, på sociala nätverk som Instagram eller Tik Tok är det ganska lätt att hitta foton eller videor av dessa <strong>kineser</strong> klädda i dessa vackra traditionella kläder.</div>\n<div>&nbsp;</div>\n<div>En mycket intressant rapport som publicerades av Tmall (ett slags extremt populärt kinesiskt Amazon) 2018 berättar att <strong>antalet personer som köper Hanfu ökar med 92% per år</strong> i genomsnitt. Kineser födda efter 1995 utgör 48% av kundkretsen. Intresset för detta plagg växer alltså över tid.</div>\n<div>&nbsp;</div>\n<div>Man skulle kunna tro att detta bara är en modeeffekt, men invånarna i Mittens rike verkar vara mycket mer fästa vid sitt lands historia än vad vi är i Europa. Hanfu är<strong>en oskiljaktig del av den kinesiska kulturen</strong>, det är därför den är och alltid kommer att vara närvarande i kinesernas liv.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"832\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>Ett plagg som alltid är på modet</h2>\n<div>Som vi just har sett i den här artikeln är <strong>Hanfu ett tidlöst plagg</strong>, som aldrig upphör att anpassa sig till århundradena och de generationer som bär det. En annan kinesisk uppfinning som fortfarande verkar ha en stor framtid framför sig.</div>\n<div>&nbsp;</div>\n<div>Om tillfälle ges en dag, <strong>tveka inte att prova Hanfu</strong>. Även om den idag främst används som en \"förklädnad\", kommer du att kunna sätta dig in i hur en kines var under de gamla dynastierna och få mycket fina bilder.</div>\n<div>&nbsp;</div>\n<div>Att prova en Hanfu är trevligt, men att ha en egen är ännu trevligare. På Teng Shop erbjuder vi dig <strong>en vacker samling av Hanfu</strong> direkt importerad från Kina. Länk på bilden nedan.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"48\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:19:\"Hanfu: Vad är det?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:12:\"vad-ar-hanfu\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=760\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:840;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 21:35:30\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 20:35:30\";s:12:\"post_content\";s:19420:\"<!-- wp:flatsome/uxbuilder -->\n<div>Vilka monument måste man se i <strong>Kina</strong>? Vad har de för historia? Var är de belägna?</div>\n<div>&nbsp;</div>\n<div><strong>Mellan Kinesiska muren och Himmelstemplet i Peking, Bund i Shanghai, Stora pagoden i Xian och många andra, kinesiska monument är många och alla fyllda med historia och kultur.</strong></div>\n<div>&nbsp;</div>\n<div>Vi är passionerade för kinesisk kultur och dess monument i synnerhet, och nu ska vi leverera vår personliga topplista över de <strong>must-see Chinese monuments</strong>!</div>\n<div>&nbsp;</div>\n<div>Låt oss utan vidare dröjsmål upptäcka dessa 11 extraordinära monument:</div>\n\n[gap]\n\n<h2>Den kinesiska muren, Peking</h2>\n<div>Adress: Kinesiska muren, Peking</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 长城</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"981\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Den kinesiska muren anses vara <strong>ett av den nya världens underverk</strong> och är inte bara en kinesisk sevärdhet utan också <strong>ett av de mest besökta monumenten i världen</strong>. Detta populära kinesiska monument behöver verkligen ingen närmare presentation. Även om den kinesiska murens totala längd inte är lätt att fastställa, dateras början av dess konstruktion tillbaka till 500-talet f.Kr.</div>\n<div>&nbsp;</div>\n<div>Större delen av den nuvarande muren, som allmänt kallas \"<strong>Den Stora Muren</strong>\", byggdes under Qingdynastin för att försvara regionen mot mongoliska upprorsmän. Muren i sin helhet är <strong>21196 km lång</strong>. Själva Qingmuren är 8850 km lång, varav 6259 km är själva muren och resten är diken och naturliga försvarsverk.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"979\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Den här längden av muren innehåller mer än <strong>25 000 vakttorn</strong>. Även om en betydande del av muren nu är i ruiner, ca 30%, hålls vissa delar av muren runt Peking i utmärkt skick tack vare många åtgärder som vidtagits under de senaste decennierna, främst för att de är en <strong>stor turistattraktion</strong>.</div>\n<div>&nbsp;</div>\n<div>De områden nära Peking som tar emot flest turister är <strong>Jinshanling</strong>, en berömd vandringsled, och <strong>Mutianyu</strong>, den bäst bevarade delen av muren. Det finns flera olika rundturer på muren och många sektioner som du kan besöka efter dina egna önskemål.</div>\n\n[gap]\n\n<h2>Vildgåspagoden, Xi\'an</h2\n\n\n<div>Adress: Vildgåspagoden, Xian</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 大雁塔</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"977\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Vildgåspagoden, eller Stora vildgåspagoden, ligger i Xi\'an, Shaanxiprovinsen, Kina, och är en <strong>femvåningspagod</strong> som byggdes på 700-talet. Pagoden ligger i tempelkomplexet Da Ci\'en. Den <strong>byggdes ursprungligen 652</strong> under Tangdynastin, byggdes om igen 704 och renoverades under Mingdynastin och på 1900-talet.</div>\n<div>&nbsp;</div>\n<div>I monumentet finns <strong>sutror och buddhistiska figurer</strong>. Vildgåspagoden byggdes av kejsar Gaozong i Tangdynastin (617-907) för att samla buddhistiska verk och reliker som den lärde <strong>indiern</strong>, munken, resenären och översättaren Xuanzang hade fört med sig från <strong>Indien</strong>. Xuanzang reste över hela Kina för att samla buddhistiska heliga verk.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"975\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Han blev känd för sin 17 år långa resa till Indien och de religiösa platserna i det som nu är Nepal, Pakistan och Bangladesh. Han reste genom dessa länder och samlade buddhistiska skrifter och artefakter eftersom han var bekymrad över att den buddhism som hade nått Kina varken var fullständig eller korrekt tolkad. Hans resa är ursprunget till den berömda kinesiska berättelsen \"<strong>Resan till väst</strong>\", vilket är anledningen till att många kineser vill tro att startpunkten för hans resa är i Xi\'an.</div>\n<div>&nbsp;</div>\n<div>Detta monument är mycket intressant att besöka när man är i Xi\'an, särskilt eftersom det är omgivet av en stor park där det är särskilt trevligt att promenera i timmar. Här finns många små butiker och andra tjänster samt trevliga kaféer med en fantastisk utsikt över <strong>pagodan</strong>.</div>\n<div>&nbsp;</div>\n<div>I Xi\'an finns också den mycket berömda Terrakottaarmén, som egentligen är Qin-kejsarens mausoleum.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"40\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Sommarpalatset, Peking</h2>\n<div>Adress: 19 Xinjiangongmen Rd, Haidian-distriktet</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 颐和园</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"973\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Sommarpalatset beställdes av Qingdynastins kejsare Qianlong år 1750. Det första sommarpalatset kallades Qingyi Yuan eller \"<strong>de klara krusningarnas trädgård</strong>\".</div>\n<div>&nbsp;</div>\n<div>Detta första sommarpalats förstördes dock av de fransk-brittiska allierade styrkorna 1860 och återuppbyggdes 1896. Det förstördes igen 1900 och återuppbyggdes 1912 för att markera Qingdynastins sista handlingar. År 1924 öppnades det officiellt för allmänheten som en <strong>turistattraktion</strong>.</div>\n<div>&nbsp;</div>\n<div>Sommarpalatset är allmänt känt som den största bevarade kejserliga trädgården i Kina. År 1998 lade <strong>UNESCO</strong> till detta komplex på världsarvslistan. Med en yta på över 300 hektar är det en av de största och mest fängslande <strong>landskapsträdgårdarna</strong> inte bara i Kina utan också i hela världen.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"970\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Anläggningen kombinerar konstgjord arkitektur med paviljonger, palats, tempel och broar med vackra naturlandskap med kullar och öppet vatten. Sommarpalatset ligger i<strong> nordvästra Peking</strong> och anses vara den bäst bevarade kejserliga trädgården i världen. Det ligger bara en kort bilresa från centrala Peking, så det är ganska lätt att ta sig dit.</div>\n<div>&nbsp;</div>\n<div><strong>Turister</strong> kan njuta av en <strong>variation av aktiviteter</strong> i sommarpalatskomplexet, från promenader på den berömda långa korridoren, till båtliv på Kunming Lake, för att titta på traditionella föreställningar i den antika teatern. Sommarpalatset utformades för att uppnå harmoni med naturen. Det harmonierar med växter och arkitektoniska vägar, vatten och jord, och betonar filosofin bakom kinesiska trädgårdslandskap i allmänhet.</div>\n\n[gap]\n\n<h2>Hängande templet, Datong</h2>\n<div>Adress: Xian av Hunyuan, Datong</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 悬空寺</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"968\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Det hängande templet Xuankongsi, som ligger cirka <strong>60 kilometer sydost om Datong</strong>, Kina, i Shanxiprovinsen, är <strong>ett av världens bortglömda underverk</strong>. Det hänger på en klippa i berget Hengshan och tycks trotsa gravitationen. Det består av 40 rum som är förbundna med varandra genom en svindlande labyrint av gångar. Detta gamla <strong>kinesiska monument</strong> sägs ha byggts av en munk vid namn Liao Ran i slutet av Norra Wei-dynastin (386-534) och restaurerades år 1900.</div>\n<div>&nbsp;</div>\n<div>Den byggdes genom att man borrade hål i klippsidan där de stolpar som bär upp templen är fästa. Det är intressant att notera att <strong>templet</strong> är tillägnat de tre religionerna: konfucianism, taoism och buddhism, och inte till en enda religion. Alla tre religionerna utövas i templet och representeras av 78 statyer och skulpturer i hela templet. Denna kombination av faktorer gör det hängande templet till en av de mest intressanta religiösa och historiska platserna i <strong>Mellanriket</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"966\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>Förbjudna staden, Peking</h2>\n<div>Adress: 4 Jingshan Front St, Dongcheng</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 紫禁城</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"964\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Den förbjudna staden var den kinesiska kejsarens palats i 500 år, från 1420 till 1912, och omfattar <strong>ett stort komplex på 13 hektar</strong>. Det vidsträckta komplexet förhärligar gammal kinesisk arkitektur och innehåller <strong>980 byggnader</strong>. Det är erkänt som ett UNESCO-monument i Kina. Monumentet har fått sitt namn eftersom det var förbjudet att gå in i komplexet utan kejsarens tillstånd.</div>\n<div>&nbsp;</div>\n<div>I dag rymmer <strong>Den förbjudna staden</strong> <a href=\"https://en.dpm.org.cn/\">Palatsmuseet</a>. Den är uppdelad i två delar: den yttre gården i söder, där kejsaren utövade sin auktoritet över sina undersåtar, och den inre gården i norr, som var hans residens. Hela komplexet, med sin fantastiska arkitektur och byggnader, är en av <strong>de största attraktionerna i Kina</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"962\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Med över en miljon samlarobjekt</strong> i brons, keramik, målningar, jade och slitage är palatsmuseets samlingar otroligt stora. Du börjar ditt besök vid Meridianporten och går ut antingen genom porten för gudomlig skicklighet eller porten för östligt välstånd.</div>\n<div>&nbsp;</div>\n<div>Detta komplex är naturligtvis ett måste när man besöker <strong>Beijing</strong>, särskilt när man vet att det är <strong>placerat mitt i staden</strong>. Monumentet är mycket stort, så planera in en bra morgon eller eftermiddag för att kunna njuta av det till fullo. Tveka inte att ta med en guide så att han kan förklara alla hemligheter och detaljer i konstruktionen. Många guider är närvarande på plats men jag råder dig ändå att ta det i förväg för att undvika bedrägerier.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Kaifeng</h2>\n<div>Adress: Kaifeng, Henan, Kina</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 开封</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"960\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng var den viktigaste metropolen inte bara i Kina utan i hela världen när den stod på toppen av sin storhetstid. Den är känd för att vara <strong>en av de viktigaste antika huvudstäderna</strong> i Kina. Kaifeng ligger ca <strong>72 km från Zhengzhou</strong>, i östra delen av Henanprovinsen, och täcker en yta på 6 444 km². Staden ligger strax söder om Gula floden och vetter mot Huanghuai-slätten i söder. Det finns många attraktioner att utforska i Kaifeng, inklusive :</div>\n<div>&nbsp;</div>\n<div>I den här staden finns det inte bara ett utan flera monument som du kan upptäcka:</div>\n<ul>\n<li\n\n\n<li><strong>Kaifeng Iron Tower</strong>, ett 13-våningar, 56 meter högt torn, som är känt som världens första järntorn (byggt 1049).</li>\n<li><strong>Qingming River Scenery Garden</strong>, en stor trädgård från den norra Songdynastin (960-1127).</li>\n<li><strong>Xiangguo Grand Temple</strong>, ett buddhistiskt tempel från den norra Qi-dynastin (550-577).</li>\n</ul>\n</ul>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"958\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng är också känt för sina <strong>krysantemum</strong>, och krysantemummässan är känd sedan 900-talet. Krysantemummässan hålls fortfarande varje år i oktober/november och omfattar tusentals olika typer av krysantemum.</div>\n<div>&nbsp;</div>\n<div>Staden är också <strong>födelseplats för kinesisk kalligrafi</strong> och Henan-opera, och här finns fyra berömda kalligrafiskolor.</div>\n\n[gap]\n\n<h2>10 000 Buddhas kloster, Hongkong</h2>\n<div>Adress: 220, Pai Tau Village Sha Tin</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 萬佛寺</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"956\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Ten Thousand Buddhas Monastery, beläget på Po Fook Hill i Pai Tau Village, Sha Tin, New Territories, är ett av <strong>de mest kända buddhisttemplen i Hong Kong</strong> och en av de mest populära turistattraktionerna. Templet grundades 1949 av pastor Yuet Kai och stod färdigt 1957. Klostret har inga bostäder och drivs av lekmän.</div>\n<div>&nbsp;</div>\n<div> <strong>Klostret</strong> fick en omfattande utsmyckning 1968, några av paviljongerna byggdes om och alla statyer målades eller täcktes med rent guld. Klostret är byggt på två nivåer på en kulle, i en <strong>bambuskog</strong> med utsikt över Sha Tin, och upptar ett område på över åtta hektar. Det har fem tempel, fyra paviljonger, en veranda och en pagod. Man kommer dit via en brant betongväg med 431 trappsteg.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"954\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Det finns många vackra tempel i <strong>Hong Kong</strong>, men det här är särskilt originellt tack vare sina <strong>12800 Buddhastatyer</strong>. Detta tempel kan mycket väl erbjuda dig en promenad som du kommer att minnas för alltid.</p>\n\n[gap]\n\n<h2>Tian Tans stora buddha</h2>\n<div>Adress: Ngong Ping, Lantau Island, Hong Kong</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 天壇大佛</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"952\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Om du stannar i närheten av Hongkong hittar du ett annat monument som helt klart är värt ett besök: <strong>Den stora Buddhan i Tian Tan</strong>. Den här ligger på ön Lantau och dominerar kullen Ngong Ping.</div>\n<div>&nbsp;</div>\n<div>Den här <strong>34 meter höga statyn</strong> är gjord av <strong>250 ton brons</strong>. Den <strong>byggdes mellan 1990 och 1993</strong> och står på en lotusformad piedestal. Detta konstverk representerar Kinas stolthet över sin buddhistiska tradition.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"950\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Eftersom denna staty ligger nära <strong>Po Lin-klostret</strong> har du något att sysselsätta en stor del av din dag med i en zen och avkopplande atmosfär.</p>\n\n[gap]\n\n<h2>Vita hästens tempel</h2>\n<div>Adress: Nr 6, Luoyang Road, Luolong District, Luoyang</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 白马寺</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"948\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Detta tempel är ett av de viktigaste i Asien eftersom det sägs vara <strong>det äldsta templet i Kina</strong>. Templet byggdes år 68 nära Luoyang och har sin egen rika historia.</div>\n<div>&nbsp;</div>\n<div>Enligt <a href=\"https://www.reseguiden.se/bilder/kina/luoyang/vita-hastens-tempel-219482\">den mest populära legenden</a> anlände två indiska munkar, Kasyapamatanga och Dharmaratna, till Luoyang med <strong>vita hästar</strong>. Med sig hade de många buddhistiska statyer och skrifter. De skulle bli de som för första gången översatte de buddhistiska sutrorna till kinesiska. <strong>Det första buddhistiska templet i Kina</strong> och <strong>de första kinesiska buddhistiska skrifterna</strong> var födda.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"946\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Templet består uppenbarligen av många rum fyllda med gamla statyer och andra buddhistiska reliker. Det finns också vackra trädgårdar i templet som består av mängder av små utländska tempel (indiska, thailändska, burmesiska...) och särskilt <strong>den äldsta pagoden i Kina</strong>.</p>\n\n[gap]\n\n<h2>Potala palatset</h2>\n<div>Adress: 35 Central Beijing Road, Lhasa, Tibet, Kina</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 布达拉宫</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"944\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div> <strong>Potalapalatset</strong> är <strong>ett enormt religiöst och administrativt komplex i Lhasa</strong>, i södra delen av den autonoma regionen Tibet. Monumentet ligger på toppen av Mar-po-ri (Röda berget), 130 meter över Lhasas floddal, och reser sig dramatiskt från sin klippiga bas.</div>\n<div>&nbsp;</div>\n<div>Potrang Karpo, eller Vita palatset, <strong>var en gång säte för den tibetanska regeringen och Dalai Lamas huvudresidens</strong>. Från mitten av 1700-talet användes det som vinterpalats. Potrang Marpo, eller Röda palatset, rymmer flera kapell, heliga statyer och gravarna för åtta Dalai Lamas och är fortfarande en viktig pilgrimsort för <strong>tibetanska buddhister</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"942\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Av de mer än 1 000 rummen i Potala är de heligaste Chogyal Drubphuk och Phakpa Lhakhang, resterna av Srong-brtsan-sgam-pos ursprungliga palats. I det senare finns en helig staty vid namn Arya Lokeshvara. I det heliga komplexet hittar du <strong>mer än 200 000 statyer och 10 000 altare</strong>.</div>\n<div>&nbsp;</div>\n<div>Värdet har erkänts av China Cultural Relics Commission, och palatset skonades under kulturrevolutionen. Potala <strong>utnämndes till UNESCO:s världsarvslista</strong> 1994.</div>\n\n[gap]\n\n<h2>The Bund, Shanghai</h2\n\n\n<div>Adress: Zhongshan East 1st Rd, Wai Tan, Huangpu, Shanghai</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 外灘</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"940\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Det är omöjligt att besöka Shanghai utan att passera <strong>den berömda Bund</strong>. Namnet Bund betyder på kinesiska \"utlänningarnas bank\". Detta beror främst på att du längs hela Bund hittar vackra byggnader i europeisk stil samt banker och <strong>andra koloniala byggnader</strong> från 1930-talet. Idag är många av dessa byggnader ambassader.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"938\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Allt det intressanta med <a href=\"https://www.mittensrike.se/guide/shanghai/the-bund/\">bund</a> ligger inte i de gamla utländska koncessionsbyggnaderna längs stranden, utan i <strong>utsikten över det nya affärsdistriktet</strong> i Lujiazui. Både dag och natt kan man beundra Oriental Pearl, Shanghai Tower, Jin Mao Tower, <strong>Shanghai</strong> World Financial Center och Shanghai IFC Towers</p>\n\n[gap]\n\n<h2>Kina och dess otaliga monument</h2>\n<p>Vi har just presenterat de 8 kinesiska monument som vi tycker är oumbärliga, men det finns faktiskt många fler!</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"936\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Himmelstemplet och fågelboet i Peking, murarna i Xian, Himmelska fridens torg, Yonghe Lamasery, Jade Buddha <strong>templet i Shanghai</strong> eller Crescent Moon Oasis i DunHaung är lika spännande som de monument som nämns ovan.</div>\n<div>&nbsp;</div>\n<div>Kina har många monument, gamla och moderna. Det är upp till dig om du föredrar att resa i ett modernt eller <strong>traditionellt Kina</strong>, även om vi självklart rekommenderar dig en blandning av båda!</div>\n<div>&nbsp;</div>\n<div>Om du är intresserad av <strong>kinesisk kultur</strong> hittar du många produkter relaterade till den kinesiska världen i vår butik, länken finns på bilden nedan!</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"39\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:38:\"11 kinesiska monument som du måste se\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:30:\"11-maste-se-kinesiska-monument\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=840\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:985;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 22:46:53\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 21:46:53\";s:12:\"post_content\";s:8401:\"<!-- wp:flatsome/uxbuilder -->\n<p>I tusentals år har <strong>kinesiska ätpinnar</strong> varit det redskap som valts i Kina och andra östasiatiska länder på grund av sin enkelhet och mångsidighet.</p>\n<p><p>Men i resten av världen är det få människor som kan hantera dem med fingerfärdighet.</p>\n<p>Om du är van vid att använda en <strong>gaffel</strong> och kniv för att hantera din mat, kan du ha svårt att vänja dig vid <strong>ätpinnar</strong> till en början, men när du förstår hur man håller dem blir det mycket lättare att behärska mekaniken!</p>\n<p>Vi förklarar allt i den här artikeln!</p>\n\n[gap]\n\n<h2>Korrekt placering av ätpinnarna</h2>\n\n[gap]\n\n<h3>Steg 1: Ta tag i den första pinnen</h3>\n<div>På ett standardbord placeras dina ätpinnar <strong>sida vid sida framför dig</strong>, horisontellt.</div>\n<div>&nbsp;</div>\n<div>Det är oftast lättare att plocka upp ätpinnarna med hjälp av de första 2 eller 3 fingrarna och tummen.</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div>Se till att ätpinnarna <strong>inte klapprar högt</strong> när du plockar upp dem. Detta kan uppfattas som oartigt på lugna restauranger och i mer formella sammanhang.</div>\n<div>&nbsp;</div>\n<div>Använd din dominerande hand löst. Personer som klämmer åt sina ätpinnar brukar kasta maten omkring sig.</div>\n<div>&nbsp;</div>\n<div>Ta tag i den första ätpinnen och placera den i urtaget <strong>mellan pekfingret och tummen</strong>. Balansera den på ditt <strong>ringfinger</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1018\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Steg 2: Ta den andra pinnen och justera dem</h3>\n<div>Placera den andra ätpinnen i fördjupningen mellan pekfingret och tummen, <strong>precis som den första ätpinnen</strong>, men placera den på långfingret istället för ringfingret.</div>\n<div>&nbsp;</div>\n<div>Se till att ätpinnarnas smala ändar <strong>är jämna med varandra</strong> så att de inte korsar eller \"klämmer\" maten.</div>\n<div>&nbsp;</div>\n<div><strong>För att jämna ut dem</strong> kan du röra vid dem på bordet. Ojämna ätpinnar kommer att vara mycket svåra att använda.</div>\n<div>&nbsp;</div>\n<div>\n<div>Utnyttja tummen, pekfingret och långfingret för att greppa den andra ätpinnen <strong>lite hårdare</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1016\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Steg 3: Mekanismen för trollstaven</h3>\n<p>Öva nu på att <strong>öppna och stänga ätpinnarna</strong>. Se till att ätpinnarnas breda ändar inte bildar ett \"X\" eftersom det gör det svårt att plocka upp mat.</p>\n<p>Om bara den andra ätpinnen rör sig, bra gjort! Du är på rätt väg.<br /> Om det hjälper kan du flytta handen upp och ner på ätpinnarna, men <strong>håll samma position</strong> och experimentera med olika greppnivåer.</p>\n<p>Vissa tycker att det är lättare att manövrera närmare basen, andra högre.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1014\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Steg 4: Börja ta för dig av maten</h3>\n<p><strong>Börja ta tag i maten</strong>! För tillfället kan det vara enklast att luta ätpinnarna 45 grader. När maten är stabil kan du lyfta upp den. Om det verkar instabilt, lägg ner det och försök igen.</p>\n<p>När du har bemästrat en typ av mat kan du gå vidare till olika storlekar och texturer. När du börjar känna dig riktigt säker kan du <strong>öva med nudlar</strong>!</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1012\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Men <strong>för att hantera ätpinnar</strong> på rätt sätt är det första du behöver göra att skaffa <strong>ett riktigt</strong> par kinesiska ätpinnar!</div>\n<div>&nbsp;</div>\n<div>I vår Teng Shop erbjuder vi <strong>en komplett samling</strong> ätpinnar som kan användas om och om igen, allt från <strong>lackade träpinnar</strong> till mycket sofistikerade <strong>versioner i rostfritt stål</strong>, varav vissa är dekorerade med eleganta mönster, och <strong>lärande ätpinnar</strong>, som är perfekta för barn och vuxna som inte vill bli besvärade.</div>\n<div>&nbsp;</div>\n<div><strong>Kommer du att bli frestad av en av dessa?</strong></div>\n\n[gap height=\"50px\"]\n\n[featured_products]\n\n[gap height=\"50px\"]\n\n<h2>Olika regler vid användning av ätpinnar</h2>\n<p>Pinnar är <strong>symboliskt och kulturellt viktiga för Kina</strong> och andra angränsande asiatiska länder. Precis som överallt annars i världen är kineserna stränga när det gäller hur man använder ätpinnar.</p>\n<p>En felaktig användning av deras favoritredskap kan förolämpa dem, vilket du naturligtvis inte vill. Vi föreslår därför en lista med <strong>8 grundläggande regler</strong> som du måste följa i Kina och på andra håll:</p>\n<p>\n\n[gap]\n\n<h3>1 - När man delar mat</h3>\n<div>Att sitta vid ett asiatiskt bord (hemma eller på restaurang) innebär ofta att <strong>dela stora tallrikar med mat</strong>. Det är inte lämpligt att dyka in i den gemensamma måltiden med ätpinnar som du just har använt.</div>\n<div>&nbsp;</div>\n<div><strong>Du har två alternativ:</strong></div>\n<ul>\n<div>&nbsp;</div>\n<li>Använd ett par <strong>offentliga ätpinnar</strong> som aldrig rör vid din tallrik (eller någon annans)</li>\n<li>Välj <strong>med den andra</strong> (icke ätande) änden av dina ätpinnar. Detta är den stora änden som du förhoppningsvis inte tuggar på!</li>\n</ul>\n</ul\n\n[gap]\n\n<h3>2 - Använd inte ätpinnarna för att servera dig själv</h3>\n<p>För att servera mat. Om någon bjuder dig på lunch eller middag ska du <strong>använda händerna</strong> för att skicka serveringsskålarna istället för att använda dina ätpinnar. Ta aldrig emot mat <strong>med dina ätpinnar</strong> eftersom det påminner kineserna om en begravningsrit där de kremerade benen från en älskad person skickas bakom familjemedlemmar med ätpinnar.</p>\n\n[gap]\n\n<h3>3 - Stick inte i maten</h3>\n<p>Peka inte på maten <strong>med ändarna</strong> på dina ätpinnar. Om allt annat misslyckas kan detta verka som ett bra alternativ, men det anses vara oförskämt.</p>\n\n[gap]\n\n<h3>4 - Stick aldrig ätpinnarna i maten</h3>\n<p>Sätt aldrig dina ätpinnar <strong>direkt i en skål med ris</strong>. Det kan verka som ett harmlöst sätt att få dem att hålla sig på plats, men det är en kardinalsynd när det gäller att använda ätpinnar. Positionen liknar de rökelsepinnar som kineserna sticker ner i riset för att hedra sina döda.</p>\n\n[gap]\n\n<h3>5 - Korsa inte dina ätpinnar</h3>\n<p>Korsa inte dina ätpinnar. Om du har ätit klart lägger du dem <strong>på sidan av din tallrik</strong> till vänster.</p>\n<p><strong>Peka inte med dina ätpinnar på andra</strong>. Att peka är i allmänhet förbjudet i asiatiska kulturer och detsamma gäller ätpinnar.</p>\n\n[gap]\n\n<h3>6 - Håll ihop ätpinnarna</h3>\n<p><strong>När du placerar ätpinnarna</strong> ska du hålla dem på sidan av din skål eller tallrik i deras avsedda område. Du kommer att få ett litet block att vila dem på, men om inte, bör du placera ätpinnarna så att ändarna möts. <strong>Håll dem aldrig korsade på tallriken</strong> eftersom det är ett tecken på förnekelse, vilket betyder att du inte gillar värden och förnekar deras vänlighet.</p>\n\n[gap]\n\n<h3>7 - Spela inte med dina pinnar</h3>\n<p>Använd dem inte för att trumma, knacka, snurra eller slå ihop ätpinnarna. När du trummar på din tallrik med ätpinnarna förknippas det med tiggeri.</p>\n\n[gap]\n\n<h3>8 - Luta alltid dina ätpinnar</h3>\n<p>När du lägger ner ätpinnarna ska du se till att de aldrig pekar direkt på personen som sitter mittemot dig. Detta anses vara en oförskämd gest, <strong>så luta dem något</strong>.</p>\n\n[gap]\n\n<h3>9 - När du äter ris</h3>\n<p>När du äter ris, <strong>var beredd på att gräva ner dig</strong>. Om en skål med ris ställs framför dig och du bara har två små bambustavar kan det kännas som om du befinner dig i en ström utan paddel.</p>\n<p>Men det är helt acceptabelt (ganska normalt) <strong>att lyfta risskålen nära munnen</strong> och äta därifrån. Du kommer inte att se dum ut, du kommer att se kryddad ut!</p>\n<p>Fäst inte heller skålen vid munnen, utan lyft den nära dig så att riskornen inte samlas runt matplatsen.</p>\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:38:\"Hur håller man i kinesiska ätpinnar?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:33:\"hur-man-haller-kinesiska-atpinnar\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=985\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1022;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 00:54:18\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 23:54:18\";s:12:\"post_content\";s:7470:\"<!-- wp:flatsome/uxbuilder -->\n<div>Matkulturen är djupt rotad i Kinas historia. Som besökare eller gäst i ett kinesiskt hem eller på en kinesisk restaurang kommer du att upptäcka att <strong>bordsskick</strong> är viktigt och att artighet alltid bidrar till att du njuter av måltiden och blir på gott humör!</div>\n<div>&nbsp;</div>\n<div>Det är verkligen en beundransvärd sed att <strong>respektera andra vid bordet</strong>, inklusive äldre, lärare och gäster, samtidigt som man tar väl hand om barnen.</div>\n<div>&nbsp;</div>\n<div>Kineserna insisterar alltid på filial piety. Seden att <strong>presentera de bästa rätterna</strong> till de äldsta familjemedlemmarna först har följts i otaliga generationer. <strong>I forntiden</strong> levde vanligt folk ett fattigt liv, men de gjorde ändå sitt bästa för att stödja den äldre mamman eller pappan, som tog det för givet.</div>\n<div>&nbsp;</div>\n<div>Även om värdarna i Kina alla är vänliga och gästvänliga bör du också visa dem respekt</strong>. Innan du börjar äta kan värden säga några välkomstord till dig. Gästerna bör inte börja äta förrän värden säger: \"Smaklig måltid\" eller något liknande, eftersom det annars tyder på bristande respekt och orsakar missnöje.</div>\n<div>&nbsp;</div>\n<div>När värdarna ställer fram tallrikarna på bordet placerar de <strong>huvudrätterna i mitten</strong> och tillbehören runt dem. När huvudrätterna är <strong>förberedda i en dekorativ form</strong>, antingen genom skärning eller på annat sätt, kommer de att placeras framför huvudgästerna och de äldre vid bordet.</div>\n<div>&nbsp;</div>\n<div>Nu går vi vidare till de olika traditionella kinesiska köken.&nbsp;Upptäck det nu!</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"36\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>De bästa traditionella köken i Kina</h2>\n<div><strong>Det kinesiska köket</strong> är rikt och mångsidigt och varierar i stil och smak från region till region. Dess historia går tusentals år tillbaka och har utvecklats över tiden enligt förändringar i miljön (t.ex. klimat) och lokala preferenser. Det kinesiska köket varierar också beroende på social klass och etnicitet, och påverkas ofta av köket i andra <strong>kulturer</strong>.</div>\n<div>&nbsp;</div>\n<div>Alla dessa faktorer bidrar till ett oöverträffat utbud av matlagningstekniker, ingredienser, <strong>rätter</strong> och matstilar som utgör det som nu är känt som det kinesiska köket.</div>\n<div>&nbsp;</div>\n<div>Av de olika regionala stilarna inom det kinesiska köket är det kantonesiska köket i Guangdong det mest kända i världen. Många västerländska kinesiska restauranger har anammat en <strong>kantonesisk stil</strong> på grund av majoriteten av de kinesiska emigranter från Guangdong som bosatte sig i USA och Europa på 1800-talet.</div>\n<div>&nbsp;</div>\n<div>I själva verket består Hakkasan-menyn främst av kantonesiska rätter eller Hakka-rätter (därav namnet Hakkasan), ett kök som utvecklades av Hakka-folket som bodde i provinsen <strong>Guangdong</strong>. Det finns dock ett antal olika stilar från olika regioner som bidrar till det övergripande kinesiska köket.</div>\n\n[gap]\n\n<h3>Anhui (Hui)</h3>\n<p>Anhui-köket härstammar från de inhemska matlagningsstilarna hos invånarna i Huangshan-bergsområdet i <strong>Kina</strong>. Även om det liknar Jiangsu-köket, lägger det mindre tonvikt på skaldjur och mer på ett brett utbud av lokalt odlade örter och grönsaker, både från land och hav.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1062\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Fujian (Min)</h3>\n<p>Fujians kök är influerat av dess kustläge och bergiga terräng. Ingredienser som skogssvamp, <strong>bambuskott</strong>, fisk, skaldjur och sköldpaddor används regelbundet. Köket i denna region är känt för sin speciella betoning på umamismak; rätterna är notoriskt lätta och smakrika.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1060\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Zhejiang (Zhe)</h3>\n<p>I allmänhet är <strong>Zhejiang</strong> mat fräsch och lätt snarare än fet. Den består av minst fyra olika köksstilar: Hangzhou, som kännetecknas av rika maträtter och bambuskott; Shaoxing, som specialiserar sig på fågel och <strong>fisk</strong>; Ningbo, som specialiserar sig på skaldjur; och Shanghai, med xiao long bao.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1058\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Shandong (Lu)</h3>\n<p>Härledd från de inhemska kulinariska stilarna i Shandong, en kustprovins i norra Kina, består Shandong-köket av två dominerande stilar: Jiaodong, som kännetecknas av lätta <strong>skaldjursrätter</strong>, och Jinan, en stil som kännetecknas av att man använder soppa i sina rätter. Även om Shandong-köket är mindre tillgängligt i västvärlden anses det ofta vara en av de mest inflytelserika matlagningsstilarna i <strong>kinesisk kulinarisk</strong> historia.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1056\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Hunan (Xiang)</h3>\n<p>Liksom det sichuanska köket är det hunanska köket känt för att vara <strong>hett och kryddigt</strong>, med riklig användning av vitlök, chili och schalottenlök. Till skillnad från det sichuanska köket är det dock känt för att vara rent hett, i motsats till den heta och bedövande hettan i det <strong>sichuanska köket</strong>.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1054\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Kantonesiska (Yu)</h3>\n<p>På grund av Guangdongs närhet till <strong>Sydkinesiska havet</strong> har invånarna i regionen tillgång till ett rikligt utbud av importerade livsmedel och färska skaldjur. Det kantonesiska köket innehåller nästan allt ätbart kött, inklusive <strong>kycklingfötter</strong>, anktunga, ormar och sniglar. Lamm och get äts dock sällan på grund av deras tillgänglighet.</p>\n<p>Många <strong>tillagningstekniker</strong> används, inklusive wok hei (stekning) och ångkokning. Kryddor används sparsamt och färska örter tillsätts sällan i rätterna. Bland rätterna finns dim sum, små bitar av <strong>mat</strong> som vanligtvis serveras till frukost eller lunch med te; grillad char siu, klibbig och rödbränd i färgen; och klara buljonger smaksatta med köttbuljong.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1051\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Jiangsu (Su)</h3>\n<p><p>Jiangsu-köket består av flera olika stilar av kinesiskt kök, nämligen Huaiyang, Yangzhou, Nanjing, Suzhou och Zhenjiang. <strong>Maten i Jiangsuköket är känd för att vara mjuk</strong>, men inte så mjuk att den faller sönder: köttet är mört men faller inte av benet när man lyfter på det.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1049\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Szechuan (Chuan)</h3>\n<p>Szechuan köket producerar det mest utbredda köket i Kina. Det är känt för sin användning av starka smaker. <strong>Szechuan chili</strong>, vitlök och peppar används flitigt i rätterna. Sichuanpeppar har en unik smak: den är intensivt doftande, citronaktig och ger en bedövande känsla i munnen. Szechuanköket innehåller ofta livsmedel som har konserverats genom inläggning, <strong>saltning och torkning</strong>.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1047\" image_size=\"original\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:62:\"Kinesisk matkultur: De olika typerna av rätter att upptäcka!\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"kinesisk-mat-kultur\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1022\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:8;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1068;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 18:06:05\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 17:06:05\";s:12:\"post_content\";s:5362:\"<!-- wp:flatsome/uxbuilder -->\n<div>Vi råkar leva på en plats i tiden där vi verkar fortsätta att springa på det metaforiska löpbandet för att skaffa oss fler och fler saker.</div>\n<div>&nbsp;</div>\n<div><strong>Kinesisk zenfilosofi</strong>, inspirerad av buddhismen, är dock en studie i kontraster. Den lär oss att finna tröst i tomhet, skönhet i ofullkomlighet och elegans i enkelhet.</div>\n<div>&nbsp;</div>\n<div>Och när dessa principer införlivas i språket för <strong>inredningsdesign</strong> kan de förvandla ditt hem till en meditativ tillflyktsort från omvärlden.</div>\n<div>&nbsp;</div>\n<div>Här är några sätt att införa Zen-inspirerad design i ditt hem.</div>\n\n[gap]\n\n<h2>1) Släpp in det naturliga ljuset</h2>\n<p>Zen förespråkar öppenhet i alla aspekter av livet och en stor del av det innebär att bli ett med <strong>naturen</strong>, att hålla sig nära den. Det här vardagsrummet är det perfekta exemplet på hur man tar in utsidan genom att släppa in ljuset.</p>\n<p>Cynosuren är glasväggen som badar rummet i naturligt ljus och ger en vidsträckt grön utsikt över utomhusmiljön. Skapa en liknande atmosfär genom att utforska alla möjligheter med naturligt ljus i ditt hem.</p>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"42\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>2) Använd dämpade jordnära färger</h2>\n<div>Zen-inspirerade utrymmen inger <strong>en känsla av lugn i miljön</strong>. Ljusa färger, även pastellfärger, anses ha en mycket energisk karaktär. Dämpade, neutrala och jordnära färger ger en känsla av lugn och ro.</div>\n<div>&nbsp;</div>\n<div>Målet är <strong>att hålla alla distraktioner, stora som små</strong>, på avstånd. Solida neutrala färger är ett enkelt och ekonomiskt sätt att uppnå detta. Du kan också välja möbler med dämpade toner.</div>\n\n[gap]\n\n<h2>3) Att sätta på en plattformssäng</h2>\n<div>Stillhet i <strong>Zen-kulturen</strong> handlar om att odla inre frid som ökar självkännedomen och en känsla av jämnmod. Denna princip manifesteras i inredningen genom permanenta inredningsdetaljer, t.ex. plattformssängar.</div>\n<div>&nbsp;</div>\n<div>Plattformssängar är ett vanligt inslag i <strong>Japansk-inspirerad Zen-design</strong>. De består av en träplattform som är placerad mycket lågt på marken. En madrass placeras helt enkelt ovanpå och det finns en avsiktlig avsaknad av andra element för att bevara rummets stillhet.</div>\n\n[gap]\n\n<h2>4) Installera en vattenspegel</h2\n\n\n<p><strong>Zen-utrymmen</strong> framkallar lugn och ro, både inomhus och utomhus. Ljudet av vatten som rinner i hemmet skapar lugnande, harmonisk musik som höjer energin och lugnar sinnet.</p>\n<p>Om det inte är möjligt att skapa en central vattenspegel som den på bilden, kan du överväga att ta in en av de plug-and-play inomhusfontäner som är lätt tillgängliga lokalt.</p>\n<p><Placera dem i matsalen, vardagsrummet eller på en innergård - eller ännu hellre på en plats där det milda ljudet av rinnande vatten på något sätt kan förstärkas.</p>\n\n[gap]\n\n<h2>5) Att införa minimalism och enkelhet</h2>\n<div><strong>Enkelhet</strong> är en del av den genetiska koden för Zen. Allt onödigt elimineras, så att det negativa utrymme som skapas i slutändan blir en del av själva designen. Resultatet är en fängslande naken estetik.</div>\n<div>&nbsp;</div>\n<div>Det första steget på vägen mot minimalism är att göra sig av med allt som rör till det i hemmet. Oanvända föremål kan doneras och resten kan gömmas undan i förvaringsutrymmen. När det gäller möbler, välj möbler som är eleganta, moderna, lätta och osmyckade. Skapa en känsla av lätthet genom att välja föremål med <strong>enkel design</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"45\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>6) Omorganisera presentationen</h2>\n<div>Utöver att ta bort oönskade saker och föremål från vår omgivning, uppmanar Zen oss att hitta balans och harmoni med de saker som finns kvar.</div>\n<div>&nbsp;</div>\n<div>Du kan göra detta genom att <strong>arrangera om möbler</strong>, skapa vinkelräta vinklar i deras placering och ta bort allt som stör flödet och harmonin i ett utrymme. Du kan också använda subtila färger och komplettera texturer och belysning för att skapa balans.</div>\n<div>&nbsp;</div>\n<div>Det här rummet kombinerar en enkel, ren layout med ett neutralt, tvåtonigt färgtema för att skapa den mest <strong>serene atmosfär</strong>.</div>\n\n[gap]\n\n<h2>7) Välj grönt</h2>\n<div>Att se naturen som en del av vårt väsen och vice versa är en viktig princip i <strong>Zen-filosofin</strong>. För att skapa ett lugnande utrymme, ta in naturen. Använd krukväxter eller ta in ett träd eller två i huset.</div>\n<div>&nbsp;</div>\n<div>Sand, stenar och klippor kan användas för att förstärka naturen i vardagsrummet med <strong>trä och bambu</strong>. Du kan också till exempel välja en handgjord rökelsehållare, som kommer att göra ditt hem mycket hälsosamt.</div>\n<div>&nbsp;</div>\n<div>Du kan också skapa en grön hörna i ditt kök eller på en fönsterbräda och odla växter och örter. Om du inte har gröna fingrar kan du placera några <strong>bonsai</strong>-växter runt huset.</div>\n\n[gap height=\"50px\"]\n\n[ux_product_categories]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:38:\"Hur gör man sitt hem zen & kinesiskt?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:34:\"hur-man-gor-sitt-hem-zen-kinesiskt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1068\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:9;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1085;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 18:35:00\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 17:35:00\";s:12:\"post_content\";s:6429:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>Kinesiska bröllop</strong>, liksom västerländska bröllop, är alla unika på sitt eget sätt. Vissa bröllop tenderar att vara mer traditionella med parader och bröllopsceremonier, medan andra inkluderar mer moderna och västerländska seder.</div>\n<div>&nbsp;</div>\n<div>Även om kinesiska bröllop är lite mer komplicerade för oss att förstå än traditionella västerländska bröllop, är det fortfarande lätt att navigera, även om det är första gången!</div>\n<div>&nbsp;</div>\n<div>Som gäst kan det vara viktigt vad du har på dig på ett kinesiskt bröllop.</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div>Det är därför vi ska svara på frågan i den här artikeln: Hur klär man sig för ett kinesiskt bröllop? Genom 9 rekommendationer för att vara med i klädkoden på ett <strong>traditionellt kinesiskt bröllop</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"47\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>1. Bär inte rött</h2>\n<p><strong>Kinesiska brudar bär vanligtvis rött på sin bröllopsdag</strong>, så att bära det som gäst kommer att betraktas som oförskämt. Det är ungefär som i västvärlden, där det är oartigt att klä sig i vitt när du är gäst. Du vill ju inte se ut som om du försöker stjäla uppmärksamheten från bruden! Välj en annan, mer diskret färg till din klänning, eller din skjorta om du är man.</p>\n\n[gap]\n\n<h2>2. Använd varma färger</h2>\n<p>Lila, rosa och persika symboliserar alla nytt liv och lycka i <strong>kinesisk kultur</strong>. Så att bära dessa <a href=\"https://www.thatsmandarin.com/guest-blogs-media/the-meaning-of-different-colors-in-chinese-culture/\">färger</a> indikerar att du vill det bästa för den nya unionen och hjälper också till att ge lycka och lycka till det nya paret. De är också bra färgval eftersom de tenderar att se smickrande ut på många olika hudtoner och hårfärger, och kan fungera under alla årstider. Att bära gult eller orange anses också vara acceptabelt.</p>\n\n[gap]\n\n<h2>3. Undvik att bära för mycket svart eller vitt</h2>\n<p>Både vitt och svart symboliserar sorg och död i den kinesiska kulturen. Att bära dessa färger på ett <strong>bröllop</strong> kan bringa otur för paret och anses helt enkelt vara oförskämt, så undvik dem. Du kan dock komma undan med att bära inslag av svart eller vitt på din klänning, särskilt om paret är modernt.</p>\n\n[gap]\n\n<h2>4. Du kan inkludera festliga accenter och accessoarer</h2>\n<p>Små inslag av guld, som är en populär färg i den kinesiska kulturen, kan verkligen piffa upp din look utan att bryta mot klädkoden. Du kan också inkludera små detaljer inspirerade av kinesisk kultur i din outfit, till exempel en <strong>Mandarinkrage</strong> på din klänning.</p>\n<p>Du kan också lägga till accessoarer från kinesisk kultur, t.ex. ett <a href=\"https://www.nl.ecom-expansion.com/collections/kinesiska-paraplyer/\">kinesiskt paraply</a> eller en <strong>traditionell solfjäder</strong>. Men om du överbelastar din outfit med orientaliska accenter kan du komma att överdriva det.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1106\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n[gap]\n\n<h2>5. Längden på klänningen beror på bröllopet</h2>\n<p>Även om vissa aspekter av det <strong>kinesiska</strong> bröllopet är mycket traditionella, gillar brudar fortfarande att ha kontroll över festen. I allmänhet bör du, om du kan, kolla med brudparet hur formellt de vill att det ska vara innan du köper din klänning eller kostym.</p>\n<p>Om inte inbjudan specifikt anger att det är en mycket formell tillställning är det bäst att välja en kjollängd över knäet. Om bröllopet är mycket <strong>traditionellt</strong> måste du kolla med brudparet för specifika riktlinjer.</p>\n\n[gap]\n\n<h2>6. Förbli elegant</h2>\n<p>Korta klänningar kan visserligen vara lämpliga, men de bör alltid vara eleganta. <strong>Klänningar</strong> som är för flashiga eller sexiga kan anses vara olämpliga, precis som de skulle vara på de flesta bröllop runt om i världen, inte bara i den kinesiska kulturen.</p>\n<p>Och även om bröllopet inte är särskilt formellt bör du anstränga dig för att vara <strong>elegant och välklädd</strong>, oavsett om du är man eller kvinna!</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1104\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>7. Bär något som representerar dig väl</h2>\n<p>Särskilt om du ska gå på ett bröllop där du inte känner så många människor bör du verkligen tänka på vad din klädsel säger om dig. I <strong>traditionell kinesisk kultur</strong> kan hur du presenterar dig själv påverka din familjs heder.</p>\n<p>Även om många familjer är mer flexibla idag kommer du fortfarande att behöva tänka på hur du bäst representerar dig själv.</p>\n<p>Detta innebär att du undviker flashiga färger, alltför sexiga silhuetter eller detaljer som kan uppfattas som vulgära. <strong>Kinesisk tradition</strong> anses fortfarande vara ganska konservativ.</p>\n\n[gap]\n\n<h2>8. Kläder är lika acceptabla som klänningar</h2>\n<p>Vissa kinesiska bröllop är inte alls lika formella som västerländska bröllop, och det är vanligtvis helt lämpligt att bära en kjol och blus istället för en <strong>qipao</strong>, särskilt om du tror att du kommer att vara mer bekväm där.</p>\n<p>På vissa kinesiska bröllop får du lite skäll om du klär dig för formellt. Naturligtvis varierar detta från bröllop till bröllop. Så det är bäst att kolla med brudparet eller någon som står närmare <strong>festen</strong>.</p>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"49\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>9. Se till att din klänning sträcker sig</h2>\n<div>Kinesiska bröllop är kända för sina <strong> oändliga bufféer</strong>, och du kommer åtminstone att vilja prova varje rätt. Om du bär något som är för tajt i mitten kan du ångra det i slutet av kvällen! Draperade tyger är ett bra val, eftersom de inte bara är snygga utan också täcker problemområden utan att begränsa dina rörelser.</div>\n<div>&nbsp;</div>\n<div>Nu vet du vad du ska ha på dig på ditt nästa kinesiska bröllop. I vår butik hittar du en rad traditionella kläder som kommer att passa dig perfekt för att vara på topp på ditt <strong>framtida kinesiska bröllop</strong>.</div>\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:46:\"Hur klär man sig för ett kinesiskt bröllop?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:38:\"hur-man-klar-sig-for-kinesiskt-brollop\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1085\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:10:\"post_count\";i:10;s:12:\"current_post\";i:-1;s:11:\"in_the_loop\";b:0;s:4:\"post\";r:100;s:8:\"comments\";N;s:13:\"comment_count\";i:0;s:15:\"current_comment\";i:-1;s:7:\"comment\";N;s:11:\"found_posts\";i:28;s:13:\"max_num_pages\";d:3;s:21:\"max_num_comment_pages\";i:0;s:9:\"is_single\";b:0;s:10:\"is_preview\";b:0;s:7:\"is_page\";b:0;s:10:\"is_archive\";b:0;s:7:\"is_date\";b:0;s:7:\"is_year\";b:0;s:8:\"is_month\";b:0;s:6:\"is_day\";b:0;s:7:\"is_time\";b:0;s:9:\"is_author\";b:0;s:11:\"is_category\";b:0;s:6:\"is_tag\";b:0;s:6:\"is_tax\";b:0;s:9:\"is_search\";b:0;s:7:\"is_feed\";b:0;s:15:\"is_comment_feed\";b:0;s:12:\"is_trackback\";b:0;s:7:\"is_home\";b:0;s:17:\"is_privacy_policy\";b:0;s:6:\"is_404\";b:0;s:8:\"is_embed\";b:0;s:8:\"is_paged\";b:0;s:8:\"is_admin\";b:1;s:13:\"is_attachment\";b:0;s:11:\"is_singular\";b:0;s:9:\"is_robots\";b:0;s:10:\"is_favicon\";b:0;s:13:\"is_posts_page\";b:0;s:20:\"is_post_type_archive\";b:0;s:25:\"\0WP_Query\0query_vars_hash\";s:32:\"c82e1a097ca23bb8fe6ecedff22080a1\";s:28:\"\0WP_Query\0query_vars_changed\";b:0;s:17:\"thumbnails_cached\";b:0;s:37:\"\0*\0allow_query_attachment_by_filename\";b:0;s:19:\"\0WP_Query\0stopwords\";N;s:23:\"\0WP_Query\0compat_fields\";a:2:{i:0;s:15:\"query_vars_hash\";i:1;s:18:\"query_vars_changed\";}s:24:\"\0WP_Query\0compat_methods\";a:2:{i:0;s:16:\"init_query_flags\";i:1;s:15:\"parse_tax_query\";}}\";s:11:\"export_type\";s:8:\"specific\";s:21:\"filter_rules_hierarhy\";s:2:\"[]\";s:21:\"product_matching_mode\";s:6:\"strict\";s:17:\"wp_query_selector\";s:8:\"wp_query\";s:18:\"taxonomy_to_export\";s:0:\"\";s:23:\"sub_post_type_to_export\";s:0:\"\";s:18:\"created_at_version\";s:5:\"1.8.3\";s:3:\"ids\";s:366:\"a:41:{i:0;i:1;i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;i:32;i:1;i:33;i:1;i:34;i:1;i:35;i:1;i:36;i:1;i:37;i:1;i:38;i:1;i:39;i:1;i:40;i:1;}\";s:8:\"cc_label\";s:974:\"a:41:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:3:\"url\";i:8;s:5:\"title\";i:9;s:7:\"caption\";i:10;s:11:\"description\";i:11;s:3:\"alt\";i:12;s:8:\"featured\";i:13;s:3:\"url\";i:14;s:8:\"category\";i:15;s:8:\"post_tag\";i:16;s:12:\"_wp_old_slug\";i:17;s:18:\"_yoast_wpseo_title\";i:18;s:21:\"_yoast_wpseo_metadesc\";i:19;s:17:\"_wp_page_template\";i:20;s:13:\"_thumbnail_id\";i:21;s:29:\"_yoast_wpseo_primary_category\";i:22;s:26:\"_yoast_wpseo_content_score\";i:23;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:24;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:25;s:7:\"_pingme\";i:26;s:6:\"status\";i:27;s:6:\"author\";i:28;s:15:\"author_username\";i:29;s:12:\"author_email\";i:30;s:17:\"author_first_name\";i:31;s:16:\"author_last_name\";i:32;s:4:\"slug\";i:33;s:6:\"format\";i:34;s:8:\"template\";i:35;s:6:\"parent\";i:36;s:11:\"parent_slug\";i:37;s:5:\"order\";i:38;s:14:\"comment_status\";i:39;s:11:\"ping_status\";i:40;s:13:\"post_modified\";}\";s:6:\"cc_php\";s:366:\"a:41:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;i:0;i:6;i:0;i:7;i:0;i:8;i:0;i:9;i:0;i:10;i:0;i:11;i:0;i:12;i:0;i:13;i:0;i:14;i:0;i:15;i:0;i:16;i:0;i:17;i:0;i:18;i:0;i:19;i:0;i:20;i:0;i:21;i:0;i:22;i:0;i:23;i:0;i:24;i:0;i:25;i:0;i:26;i:0;i:27;i:0;i:28;i:0;i:29;i:0;i:30;i:0;i:31;i:0;i:32;i:0;i:33;i:0;i:34;i:0;i:35;i:0;i:36;i:0;i:37;i:0;i:38;i:0;i:39;i:0;i:40;i:0;}\";s:7:\"cc_code\";s:489:\"a:41:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";}\";s:6:\"cc_sql\";s:489:\"a:41:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";}\";s:7:\"cc_type\";s:810:\"a:41:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:9:\"image_url\";i:8;s:11:\"image_title\";i:9;s:13:\"image_caption\";i:10;s:17:\"image_description\";i:11;s:9:\"image_alt\";i:12;s:14:\"image_featured\";i:13;s:14:\"attachment_url\";i:14;s:4:\"cats\";i:15;s:4:\"cats\";i:16;s:2:\"cf\";i:17;s:2:\"cf\";i:18;s:2:\"cf\";i:19;s:2:\"cf\";i:20;s:2:\"cf\";i:21;s:2:\"cf\";i:22;s:2:\"cf\";i:23;s:2:\"cf\";i:24;s:2:\"cf\";i:25;s:2:\"cf\";i:26;s:6:\"status\";i:27;s:6:\"author\";i:28;s:15:\"author_username\";i:29;s:12:\"author_email\";i:30;s:17:\"author_first_name\";i:31;s:16:\"author_last_name\";i:32;s:4:\"slug\";i:33;s:6:\"format\";i:34;s:8:\"template\";i:35;s:6:\"parent\";i:36;s:11:\"parent_slug\";i:37;s:5:\"order\";i:38;s:14:\"comment_status\";i:39;s:11:\"ping_status\";i:40;s:13:\"post_modified\";}\";s:10:\"cc_options\";s:1308:\"a:41:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:8;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:9;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:10;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:11;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:12;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:13;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";}\";s:8:\"cc_value\";s:974:\"a:41:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:3:\"url\";i:8;s:5:\"title\";i:9;s:7:\"caption\";i:10;s:11:\"description\";i:11;s:3:\"alt\";i:12;s:8:\"featured\";i:13;s:3:\"url\";i:14;s:8:\"category\";i:15;s:8:\"post_tag\";i:16;s:12:\"_wp_old_slug\";i:17;s:18:\"_yoast_wpseo_title\";i:18;s:21:\"_yoast_wpseo_metadesc\";i:19;s:17:\"_wp_page_template\";i:20;s:13:\"_thumbnail_id\";i:21;s:29:\"_yoast_wpseo_primary_category\";i:22;s:26:\"_yoast_wpseo_content_score\";i:23;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:24;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:25;s:7:\"_pingme\";i:26;s:6:\"status\";i:27;s:6:\"author\";i:28;s:15:\"author_username\";i:29;s:12:\"author_email\";i:30;s:17:\"author_first_name\";i:31;s:16:\"author_last_name\";i:32;s:4:\"slug\";i:33;s:6:\"format\";i:34;s:8:\"template\";i:35;s:6:\"parent\";i:36;s:11:\"parent_slug\";i:37;s:5:\"order\";i:38;s:14:\"comment_status\";i:39;s:11:\"ping_status\";i:40;s:13:\"post_modified\";}\";s:7:\"cc_name\";s:1047:\"a:41:{i:0;s:2:\"ID\";i:1;s:5:\"Title\";i:2;s:7:\"Content\";i:3;s:7:\"Excerpt\";i:4;s:4:\"Date\";i:5;s:9:\"Post Type\";i:6;s:9:\"Permalink\";i:7;s:9:\"Image URL\";i:8;s:11:\"Image Title\";i:9;s:13:\"Image Caption\";i:10;s:17:\"Image Description\";i:11;s:14:\"Image Alt Text\";i:12;s:14:\"Image Featured\";i:13;s:14:\"Attachment URL\";i:14;s:11:\"Catégories\";i:15;s:11:\"Étiquettes\";i:16;s:12:\"_wp_old_slug\";i:17;s:18:\"_yoast_wpseo_title\";i:18;s:21:\"_yoast_wpseo_metadesc\";i:19;s:17:\"_wp_page_template\";i:20;s:13:\"_thumbnail_id\";i:21;s:29:\"_yoast_wpseo_primary_category\";i:22;s:26:\"_yoast_wpseo_content_score\";i:23;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:24;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:25;s:7:\"_pingme\";i:26;s:6:\"Status\";i:27;s:9:\"Author ID\";i:28;s:15:\"Author Username\";i:29;s:12:\"Author Email\";i:30;s:17:\"Author First Name\";i:31;s:16:\"Author Last Name\";i:32;s:4:\"Slug\";i:33;s:6:\"Format\";i:34;s:8:\"Template\";i:35;s:6:\"Parent\";i:36;s:11:\"Parent Slug\";i:37;s:5:\"Order\";i:38;s:14:\"Comment Status\";i:39;s:11:\"Ping Status\";i:40;s:18:\"Post Modified Date\";}\";s:11:\"cc_settings\";s:489:\"a:41:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";}\";s:15:\"update_previous\";s:1:\"4\";s:13:\"friendly_name\";s:36:\"Articles Export - 2023 July 25 20:10\";s:18:\"order_item_per_row\";i:1;s:29:\"order_item_fill_empty_columns\";i:1;s:8:\"filepath\";s:0:\"\";s:16:\"current_filepath\";s:0:\"\";s:10:\"bundlepath\";s:0:\"\";s:8:\"wp_query\";s:0:\"\";s:9:\"export_to\";s:3:\"csv\";s:15:\"export_to_sheet\";s:3:\"csv\";s:9:\"delimiter\";s:1:\",\";s:8:\"encoding\";s:5:\"UTF-8\";s:21:\"is_generate_templates\";i:1;s:18:\"is_generate_import\";i:1;s:9:\"import_id\";i:0;s:13:\"template_name\";s:36:\"Articles Export - 2023 July 25 20:10\";s:12:\"is_scheduled\";i:0;s:16:\"scheduled_period\";s:0:\"\";s:15:\"scheduled_email\";s:0:\"\";s:26:\"cc_combine_multiple_fields\";s:6:\"a:0:{}\";s:32:\"cc_combine_multiple_fields_value\";s:6:\"a:0:{}\";s:6:\"fields\";s:68:\"a:4:{i:0;s:7:\"default\";i:1;s:5:\"other\";i:2;s:2:\"cf\";i:3;s:4:\"cats\";}\";s:5:\"rules\";s:6:\"a:0:{}\";s:21:\"records_per_iteration\";s:2:\"50\";s:11:\"include_bom\";s:1:\"0\";s:17:\"include_functions\";i:1;s:19:\"split_large_exports\";s:1:\"0\";s:25:\"split_large_exports_count\";s:5:\"10000\";s:16:\"split_files_list\";s:6:\"a:0:{}\";s:12:\"main_xml_tag\";s:4:\"data\";s:14:\"record_xml_tag\";s:4:\"post\";s:16:\"save_template_as\";i:0;s:4:\"name\";s:0:\"\";s:21:\"export_only_new_stuff\";s:1:\"0\";s:26:\"export_only_modified_stuff\";s:1:\"0\";s:24:\"creata_a_new_export_file\";s:1:\"0\";s:15:\"attachment_list\";s:6:\"a:0:{}\";s:21:\"order_include_poducts\";i:0;s:25:\"order_include_all_poducts\";i:0;s:21:\"order_include_coupons\";i:0;s:25:\"order_include_all_coupons\";i:0;s:23:\"order_include_customers\";i:0;s:27:\"order_include_all_customers\";i:0;s:9:\"migration\";s:0:\"\";s:17:\"xml_template_type\";s:6:\"simple\";s:19:\"custom_xml_template\";s:0:\"\";s:26:\"custom_xml_template_header\";s:0:\"\";s:24:\"custom_xml_template_loop\";s:0:\"\";s:26:\"custom_xml_template_footer\";s:0:\"\";s:27:\"custom_xml_template_options\";s:6:\"a:0:{}\";s:22:\"custom_xml_cdata_logic\";s:4:\"auto\";s:21:\"show_cdata_in_preview\";i:0;s:17:\"export_variations\";s:1:\"3\";s:23:\"export_variations_title\";i:1;s:41:\"export_only_customers_that_made_purchases\";i:0;s:18:\"include_header_row\";i:1;s:9:\"wpml_lang\";s:3:\"all\";s:24:\"enable_export_scheduling\";s:5:\"false\";s:17:\"scheduling_enable\";s:1:\"0\";s:22:\"scheduling_weekly_days\";s:0:\"\";s:17:\"scheduling_run_on\";s:6:\"weekly\";s:22:\"scheduling_monthly_day\";s:0:\"\";s:16:\"scheduling_times\";s:17:\"a:1:{i:0;s:0:\"\";}\";s:19:\"scheduling_timezone\";s:17:\"America/Matamoros\";s:17:\"allow_client_mode\";s:1:\"0\";s:24:\"enable_real_time_exports\";s:1:\"0\";s:32:\"enable_real_time_exports_running\";i:0;s:35:\"do_not_generate_file_on_new_records\";s:1:\"0\";s:14:\"security_token\";s:0:\"\";s:4:\"file\";s:0:\"\";}','no'),(233245,'_wpallexport_session_expires_new_','1690488612','no'),(238616,'woocommerce_custom_orders_table_enabled','no','yes'),(238617,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),(238618,'woocommerce_custom_orders_table_created','yes','yes'),(238916,'upload_path','','yes'),(238917,'upload_url_path','','yes'),(238918,'db_upgraded','','yes'),(239645,'parcelpanel_integration_app_enabled_1004','0','yes'),(239646,'parcelpanel_integration_app_enabled_1005','0','yes'),(239647,'parcelpanel_integration_app_enabled_1006','0','yes'),(240415,'litespeed.conf.optm-js_delay_inc','[]','yes'),(241347,'wpo_wcpdf_random_string','ebbf1c5122f03a6196e06b9feca614d9','yes'),(241348,'wpo_wcpdf_settings_general','a:4:{s:16:\"download_display\";s:7:\"display\";s:13:\"template_path\";s:14:\"default/Simple\";s:13:\"currency_font\";s:0:\"\";s:10:\"paper_size\";s:2:\"a4\";}','yes'),(241349,'wpo_wcpdf_documents_settings_invoice','a:1:{s:7:\"enabled\";i:1;}','yes'),(241350,'wpo_wcpdf_documents_settings_packing-slip','a:1:{s:7:\"enabled\";i:1;}','yes'),(241351,'wpo_wcpdf_settings_debug','a:2:{s:14:\"enable_cleanup\";i:1;s:12:\"cleanup_days\";i:7;}','yes'),(241354,'wpo_wcpdf_version','3.7.5','yes'),(241355,'wpo_wcpdf_installed_template_paths','a:0:{}','yes'),(243398,'_transient_googlesitekit_analytics-4_data_available','1','yes'),(243423,'_transient_googlesitekit_search-console_data_available','1','yes'),(250451,'_transient_timeout_woocommerce_blocks_asset_api_script_data_ssl','1706984160','no'),(250452,'_transient_woocommerce_blocks_asset_api_script_data_ssl','{\"script_data\":{\"build\\/wc-settings.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-settings.js\",\"version\":\"526af596d7652d2db0af\",\"dependencies\":[\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/wc-blocks-middleware.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-middleware.js\",\"version\":\"ca04183222edaf8a26be\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"build\\/wc-blocks-data.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-data.js\",\"version\":\"326bfa85ea7d1844658b\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"build\\/wc-blocks-vendors.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-vendors.js\",\"version\":\"11185cdb49a21786ec8b\",\"dependencies\":[\"wp-polyfill\"]},\"build\\/wc-blocks-registry.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-registry.js\",\"version\":\"7a619513a517fee9fa99\",\"dependencies\":[\"react\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks.js\",\"version\":\"fdc9b3862613e30e3175\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/wc-blocks-shared-context.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks-shared-hocs.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-hocs.js\",\"version\":\"5e01ba7861e4c09bce65\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/price-format.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-format.js\",\"version\":\"eb7a7398126f71912b09\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"build\\/blocks-checkout.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/blocks-checkout.js\",\"version\":\"a411b6a2a26155a3c1de\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/blocks-components.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/blocks-components.js\",\"version\":\"dab91a510c739bb474ea\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/wc-interactivity-dropdown.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-interactivity-dropdown.js\",\"version\":\"41c6537b89187fc31e77\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"build\\/active-filters.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters.js\",\"version\":\"352d42158892872f339e\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/active-filters-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters-frontend.js\",\"version\":\"c17e052aa02adba59daf\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/all-products.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products.js\",\"version\":\"c3796cd1f21d2f820667\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-products-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products-frontend.js\",\"version\":\"b377b5077e48f874f359\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-reviews.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-reviews.js\",\"version\":\"f19cb52ba61fb0de7e40\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/reviews-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-frontend.js\",\"version\":\"04abb3ff840c6846e91b\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/attribute-filter.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter.js\",\"version\":\"7c068ac315c95bc9f929\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/attribute-filter-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter-frontend.js\",\"version\":\"5142e819ff092ff52925\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/breadcrumbs.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/breadcrumbs.js\",\"version\":\"eb931ca65c3889f5aeb3\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/catalog-sorting.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/catalog-sorting.js\",\"version\":\"7e8251371b81748052f1\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/legacy-template.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/legacy-template.js\",\"version\":\"4ab3597f0d016d5ff5e4\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/classic-shortcode.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/classic-shortcode.js\",\"version\":\"aaa6bf96f4d18df37858\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/customer-account.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/customer-account.js\",\"version\":\"e1623fbc577dfd33781e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/featured-category.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-category.js\",\"version\":\"7d3f1b015d71cae6641c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/featured-product.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-product.js\",\"version\":\"8c49109524d64d9dec58\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/filter-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper.js\",\"version\":\"bb86c749736b5f943dc4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/filter-wrapper-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper-frontend.js\",\"version\":\"9ce52f91ac330d6b12ea\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"build\\/handpicked-products.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/handpicked-products.js\",\"version\":\"8a09533b7fcfc4310005\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/mini-cart.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart.js\",\"version\":\"6eeac5d3ab7ef060f90d\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/mini-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-frontend.js\",\"version\":\"61e99d9cd2611bcf7267\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/store-notices.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/store-notices.js\",\"version\":\"a7828808665fd5ebd61d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/price-filter.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter.js\",\"version\":\"a8312dcab8bbf0429641\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/price-filter-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter-frontend.js\",\"version\":\"c0790b0adc4f3424b1e1\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"build\\/product-add-to-cart.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-add-to-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-best-sellers.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-best-sellers.js\",\"version\":\"81724189a76188e97907\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-button.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-button-interactivity-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button-interactivity-frontend.js\",\"version\":\"89dc8199a6e1381372e8\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/product-categories.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-categories.js\",\"version\":\"207a1dc1e3cba4c26983\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"build\\/product-category.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-category.js\",\"version\":\"09f54a2afdf51d363f73\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-collection.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-collection.js\",\"version\":\"b6646078c099f499864f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-collection-no-results.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-collection-no-results.js\",\"version\":\"18a100f13adea804d4c2\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-new.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-new.js\",\"version\":\"8d36358f8edf0cc5ed5d\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-on-sale.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-on-sale.js\",\"version\":\"165558960acde5f8883c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-template.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-template.js\",\"version\":\"2717c6cdb225f1990b6f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/product-query.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query.js\",\"version\":\"858e981db995c4f9330c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-query-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-results-count.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-results-count.js\",\"version\":\"3612c28ddcdeb72a6ce7\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-search.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-search.js\",\"version\":\"73c1c18c40bae14345a5\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-summary.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-summary.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-tag.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-tag.js\",\"version\":\"e03c732b7e7d79998da9\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-title.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-title-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-top-rated.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-top-rated.js\",\"version\":\"5aa0d3e194bbc6a9c724\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/products-by-attribute.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/products-by-attribute.js\",\"version\":\"7de15ff0423e13d0113e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/rating-filter.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/rating-filter.js\",\"version\":\"a16d9863ed6a3f963124\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/reviews-by-category.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-category.js\",\"version\":\"4ab308198f6e4094cff7\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/reviews-by-product.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-product.js\",\"version\":\"47ca5f01a6fde485410e\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/single-product.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/single-product.js\",\"version\":\"1cc141dac0c58d6a80c5\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-store-data\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/stock-filter.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter.js\",\"version\":\"73137ea186d0ccf935e0\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/stock-filter-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter-frontend.js\",\"version\":\"77d483150fd997e4cfe3\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/page-content-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/page-content-wrapper.js\",\"version\":\"89fec669e4155be77487\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-status.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-status.js\",\"version\":\"2e06b7c64e4372fd6ae9\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-summary.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-summary.js\",\"version\":\"c18a18ee1bc41e369cc6\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-date\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-totals.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-totals.js\",\"version\":\"28908f11cadc155e57dc\",\"dependencies\":[\"react\",\"wc-price-format\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-totals-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-totals-wrapper.js\",\"version\":\"d7fceb59979ef7dd83ae\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-downloads.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-downloads.js\",\"version\":\"2caf533aa419162eb0ff\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-downloads-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-downloads-wrapper.js\",\"version\":\"df8557f90bf48d7209ca\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-billing-address.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-billing-address.js\",\"version\":\"e7413ec7bfb2719dbacf\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-shipping-address.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-shipping-address.js\",\"version\":\"365f246176217513d853\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-billing-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-billing-wrapper.js\",\"version\":\"49cf6e1def62b8df6ba7\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-shipping-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-shipping-wrapper.js\",\"version\":\"bae2cb91bc273a1d5a17\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-additional-information.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-additional-information.js\",\"version\":\"26aedde81a520ea395e8\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/cart.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart.js\",\"version\":\"997f325194b99b9afcb7\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-frontend.js\",\"version\":\"fac5397cafbd3773725e\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-taxes-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/filled-cart-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-cart-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/empty-cart-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-cart-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-totals-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-totals-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-items-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-items-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-line-items-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-line-items-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-express-payment-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-express-payment-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/proceed-to-checkout-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/proceed-to-checkout-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-accepted-payment-methods-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-discount-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-fee-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-heading-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-heading-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-shipping-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-cross-sells-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-cross-sells-products-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-products-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout.js\",\"version\":\"3d9bc0b1aca96f94493a\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-frontend.js\",\"version\":\"929837ae514d0192f8e7\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-actions-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-actions-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-billing-address-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-billing-address-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-contact-information-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-contact-information-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-express-payment-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-express-payment-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-fields-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-fields-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-note-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-note-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-discount-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-fee-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-payment-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-payment-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-shipping-address-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-address-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-shipping-methods-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-methods-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-shipping-method-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-method-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-pickup-options-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-pickup-options-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-terms-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-terms-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-totals-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-totals-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents.js\",\"version\":\"7b67d37ffaac13c35450\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/empty-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-mini-cart-contents-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/filled-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-mini-cart-contents-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-footer-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-footer-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-items-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-items-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-products-table-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-products-table-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-shopping-button-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-shopping-button-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-cart-button-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-cart-button-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-checkout-button-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-checkout-button-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-title-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-title-items-counter-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-title-label-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-label-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/wc-shipping-method-pickup-location.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-shipping-method-pickup-location.js\",\"version\":\"c8bfa319a220a4546d39\",\"dependencies\":[\"react\",\"react-dom\",\"wc-settings\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/mini-cart-component-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-component-frontend.js\",\"version\":\"771b7e581e7c088e5e69\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]}},\"version\":\"11.6.2\",\"hash\":\"6cd0b5bdd9f720ae56caf8d440f6c292\"}','no'),(250500,'wcpay_was_in_use','no','yes'),(259027,'mwp_key_last_used_6bb7c941-b1ac-489f-bd77-29bccf4c655f','1695997416','yes'),(259059,'mwp_key_last_used_a666c965-b04f-4e55-88ce-a79d63a2aff9','1695997541','yes'),(266629,'litespeed.conf.optm-dns_preconnect','[]','yes'),(266641,'woocommerce_feature_marketplace_enabled','yes','yes'),(267042,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"kotaro21.mail@gmail.com\";s:7:\"version\";s:5:\"6.4.2\";s:9:\"timestamp\";i:1701920949;}','no'),(272195,'ast_trackship_notice_ignore','true','yes'),(286232,'rank_math_viewed_seo_analyer','1','no'),(286234,'rank_math_review_notice_delayed','1','no'),(286241,'rank_math_aioseo_block_posts','a:2:{s:5:\"posts\";a:0:{}s:5:\"count\";i:0;}','no'),(286263,'rank_math_pro_notice_added','1','no'),(286400,'_transient_woocommerce_webhook_ids_status_active','a:5:{i:0;i:25;i:1;i:24;i:2;i:23;i:3;i:22;i:4;i:21;}','yes'),(286589,'woocommerce_checkout_address_2_field','optional','yes'),(286889,'wp_attachment_pages_enabled','1','yes'),(286910,'can_compress_scripts','0','yes'),(287878,'mwp_key_last_used_1dd0bb68-d127-4e0e-9369-7b1888d24fb2','1699505569','yes'),(287883,'mwp_key_last_used_13163472','1700087995','yes'),(288664,'widget_shortcodes-ultimate','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(288665,'su_option_custom-formatting','on','yes'),(288666,'su_option_skip','on','yes'),(288667,'su_option_prefix','su_','yes'),(288668,'su_option_custom-css','','yes'),(288669,'su_option_supported_blocks','a:3:{i:0;s:14:\"core/paragraph\";i:1;s:14:\"core/shortcode\";i:2;s:13:\"core/freeform\";}','yes'),(288670,'su_option_generator_access','manage_options','yes'),(288671,'su_option_enable_shortcodes_in','a:1:{i:0;s:16:\"term_description\";}','yes'),(288672,'su_option_hide_deprecated','on','yes'),(288673,'su_option_unsafe_features','','yes'),(288674,'su_option_version','7.0.1','no'),(288675,'su_option_dismissed_notices','a:2:{s:4:\"rate\";b:1;s:15:\"unsafe-features\";b:1;}','yes'),(288678,'su_option_unsafe_features_auto_off','1','yes'),(288716,'su_presets_spoiler','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:8:{s:5:\"title\";s:14:\"en savoir plus\";s:4:\"open\";s:2:\"no\";s:5:\"style\";s:7:\"default\";s:4:\"icon\";s:5:\"caret\";s:6:\"anchor\";s:0:\"\";s:13:\"anchor_in_url\";s:2:\"no\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:21:\"Hidden content TEST 1\";}}}','yes'),(289110,'googlesitekit_has_connected_admins','0','yes'),(289521,'woo_sc_setting','a:10:{s:6:\"enable\";s:1:\"1\";s:8:\"multi_sc\";s:1:\"0\";s:8:\"position\";s:18:\"before_add_to_cart\";s:14:\"btn_horizontal\";s:5:\"right\";s:12:\"btn_vertical\";s:2:\"50\";s:15:\"size_chart_name\";s:9:\"Maattabel\";s:11:\"button_type\";s:4:\"text\";s:9:\"btn_color\";s:7:\"#c35050\";s:10:\"text_color\";s:7:\"#ffffff\";s:10:\"custom_css\";s:0:\"\";}','yes'),(289522,'woo_sc_template','default_template','yes'),(289526,'product-size-chart-for-woo_start_use','1','yes'),(289556,'wpvivid_remote_init','init','no'),(289774,'ast-pro_license_status','1','yes'),(289775,'ast-pro_license_key','f0d54d287498492da1c611872aa73052','yes'),(289776,'zorem_license_connected','1','yes'),(289777,'zorem_license_email','info@theme-pro.com','yes'),(289778,'ast-pro_instance_id','fe79d7deb1e7167b1bf63ef996f2745b','yes'),(289779,'_transient_zorem_subscription_status_ast-pro','1','yes'),(289780,'_transient_timeout_zorem_subscription_status_ast-pro','2011248240','yes'),(289783,'ast_pro_update_version','3.0','yes'),(289804,'ast_pro_trackship_notice_ignore','true','yes'),(289808,'ast_pro_usage_data_selector','1','yes'),(289809,'ast_pro_optin_email_notification','0','yes'),(289810,'ast_pro_enable_usage_data','0','yes'),(289917,'autocomplete_ali2woo','0','yes'),(289921,'ast_db_update_notice_updated_ignore','true','yes'),(290209,'mainwp_module_log_settings','a:1:{s:7:\"enabled\";i:1;}','no'),(290211,'mainwp_enableLegacyBackupFeature','0','no'),(290212,'mainwp_selected_theme','default','no'),(290213,'mainwp_db_version','9.0.0.4','no'),(290214,'mainwp_update_check_version','0.0.1','no'),(290215,'mainwp_plugin_version','4.5.3','no'),(290217,'mainwp_module_log_db_version','1.0.1.2','no'),(290219,'mainwp_extensions','a:0:{}','no'),(290220,'mainwp_extensions_all_activation_cached','','yes'),(290221,'mainwp_cron_last_stats','1699888963','no'),(290222,'mainwp_cron_last_ping','1699888963','no'),(290223,'mainwp_updatescheck_start_last_timestamp','1699892563','no'),(290224,'mainwp_updatescheck_start_last_schedule_timestamp','1699892563','no'),(290225,'mainwp_updatescheck_last_run','[\"2023-11-13 16:22:43\"]','no'),(290226,'mainwp_automaticUpdate_backupChecks','','no'),(290227,'mainwp_updatescheck_mail_update_core_new','','no'),(290228,'mainwp_updatescheck_mail_update_plugins_new','','no'),(290229,'mainwp_updatescheck_mail_update_themes_new','','no'),(290230,'mainwp_updatescheck_mail_update_core','','no'),(290231,'mainwp_updatescheck_mail_update_plugins','','no'),(290232,'mainwp_updatescheck_mail_update_themes','','no'),(290233,'mainwp_updatescheck_mail_ignore_core','','no'),(290234,'mainwp_updatescheck_mail_ignore_plugins','','no'),(290235,'mainwp_updatescheck_mail_ignore_themes','','no'),(290236,'mainwp_updatescheck_mail_ignore_core_new','','no'),(290237,'mainwp_updatescheck_mail_ignore_plugins_new','','no'),(290238,'mainwp_updatescheck_mail_ignore_themes_new','','no'),(290239,'mainwp_updatescheck_individual_digest_websites','','no'),(290240,'mainwp_updatescheck_sites_icon','','no'),(290241,'mainwp_last_synced_all_sites','1699888963','yes'),(290242,'mainwp_updatescheck_last_timestamp','1699892563','no'),(290243,'mainwp_updatescheck_last','13/11/2023','no'),(290244,'mainwp_updatescheck_ready_sendmail','','no'),(290246,'mainwp_showhide_events_notice','a:3:{s:16:\"request_reviews1\";i:30;s:26:\"request_reviews1_starttime\";i:1699889000;s:11:\"trust_child\";i:1;}','yes'),(290247,'mainwp_logger_check_daily','13/11/2023','no'),(290248,'mainwp_actionlogs_enabled_timestamp','1699889001','no'),(290250,'mainwp_dailydigest_last','13/11/2023','no'),(290251,'mainwp_updatescheck_dailydigest_last_timestamp','1699892628','no'),(290252,'mainwp_log_wait_lasttime','1699889028','no'),(290274,'mainwp_rest_api_keys','a:0:{}','no'),(290278,'mainwp_installation_warning_hide_the_notice','yes','yes'),(290830,'mainwp_child_update_version','1.6','yes'),(290831,'mainwp_child_plugin_version','4.6','yes'),(290832,'mainwp_child_auth','a:7:{i:5;s:32:\"0e95951c650ff16fd211eb070bc1c6ec\";s:4:\"last\";i:1704326406;i:4;s:32:\"ed8128226d62307623b6a4ba272b46f4\";i:3;s:32:\"8e96190c8ec6a032ab10bfcef165770f\";i:2;s:32:\"808af30f170489feb055432bec2ac01b\";i:1;s:32:\"1cbfe5da5bad8c749aeff0d4e82b7212\";i:0;s:32:\"85b01facecfe3160fbe4c709d408e985\";}','yes'),(290833,'mainwp_child_branding_settings','a:4:{s:13:\"contact_label\";s:20:\"Contacter le support\";s:18:\"cancelled_branding\";b:0;s:23:\"branding_preserve_title\";s:0:\"\";s:21:\"branding_disconnected\";s:0:\"\";}','no'),(290834,'mainwp_child_activated_once','1','no'),(290835,'mainwp_cache_control_cache_solution','WP Rocket','yes'),(290836,'mainwp_child_actions_data_checked','1704326430','yes'),(290844,'clean_task','a:0:{}','no'),(290878,'wpvivid_clean_task_2','a:1:{s:21:\"wpvivid-655555df936c0\";a:8:{s:2:\"id\";s:21:\"wpvivid-655555df936c0\";s:4:\"type\";s:6:\"Manual\";s:7:\"options\";a:22:{s:7:\"ismerge\";s:1:\"1\";s:4:\"lock\";s:1:\"0\";s:12:\"backup_files\";s:8:\"files+db\";s:5:\"local\";s:1:\"1\";s:6:\"remote\";s:1:\"0\";s:4:\"type\";s:6:\"Manual\";s:13:\"backup_prefix\";s:23:\"www.se.cach0166.odns.fr\";s:11:\"file_prefix\";s:62:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35\";s:13:\"log_file_name\";s:28:\"wpvivid-655555df936c0_backup\";s:13:\"log_file_path\";s:109:\"/home/cach0166/se.cach0166.odns.fr/wp-content/wpvividbackups/wpvivid_log/wpvivid-655555df936c0_backup_log.txt\";s:6:\"prefix\";s:62:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35\";s:3:\"dir\";s:60:\"/home/cach0166/se.cach0166.odns.fr/wp-content/wpvividbackups\";s:10:\"backup_dir\";s:14:\"wpvividbackups\";s:14:\"exclude-tables\";a:6:{i:0;s:16:\"wpvk_wpvivid_log\";i:1;s:30:\"wpvk_wpvivid_increment_big_ids\";i:2;s:20:\"wpvk_wpvivid_options\";i:3;s:24:\"wpvk_wpvivid_record_task\";i:4;s:21:\"wpvk_wpvivid_merge_db\";i:5;s:22:\"wpvk_wpvivid_merge_ids\";}s:14:\"include-tables\";a:0:{}s:13:\"exclude_files\";a:11:{i:0;s:89:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/plugins\\/wpvivid\\-backuprestore#\";i:1;s:77:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/plugins\\/wp\\-cerber#\";i:2;s:69:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/plugins\\/\\.#\";i:3;s:87:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/plugins\\/wpvivid\\-backup\\-pro#\";i:4;s:83:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/plugins\\/wpvividdashboard#\";i:5;s:73:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/uploads\\/backup#\";i:6;s:65:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/upgrade#\";i:7;s:73:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/wpvivid_uploads#\";i:8;s:65:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/wpvivid#\";i:9;s:72:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/wpvividbackups#\";i:10;s:82:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-content\\/wpvivid_uploads\\/Isolate#\";}s:13:\"include_files\";a:2:{i:0;s:54:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-admin#\";i:1;s:57:\"#^\\/home\\/cach0166\\/se\\.cach0166\\.odns\\.fr\\/wp\\-includes#\";}s:15:\"include_plugins\";a:0:{}s:14:\"include_themes\";a:0:{}s:10:\"save_local\";i:1;s:14:\"backup_options\";a:1:{s:8:\"compress\";a:1:{s:13:\"compress_type\";s:3:\"zip\";}}s:14:\"remote_options\";b:0;}s:6:\"status\";a:7:{s:15:\"task_start_time\";i:1700091359;s:13:\"task_end_time\";i:1700091359;s:10:\"start_time\";i:1700091360;s:8:\"run_time\";i:1700091838;s:7:\"timeout\";i:1700091816;s:3:\"str\";s:6:\"cancel\";s:12:\"resume_count\";i:0;}s:7:\"setting\";a:11:{s:17:\"db_connect_method\";s:4:\"wpdb\";s:12:\"memory_limit\";s:4:\"256M\";s:18:\"max_execution_time\";i:300;s:23:\"compress_file_use_cache\";b:0;s:19:\"compress_file_count\";i:500;s:13:\"max_file_size\";i:200;s:17:\"max_sql_file_size\";i:200;s:17:\"exclude_file_size\";i:0;s:16:\"max_resume_count\";i:6;s:10:\"zip_method\";s:10:\"ziparchive\";s:8:\"is_merge\";b:1;}s:4:\"data\";a:3:{s:5:\"doing\";s:6:\"backup\";s:6:\"backup\";a:3:{s:5:\"doing\";s:14:\"backup_uploads\";s:8:\"progress\";i:42;s:7:\"sub_job\";a:4:{s:9:\"backup_db\";a:2:{s:8:\"progress\";s:31:\"Sauvegarde backup_db terminée.\";s:8:\"job_data\";a:0:{}}s:13:\"backup_themes\";a:2:{s:8:\"progress\";s:35:\"Sauvegarde backup_themes terminée.\";s:8:\"job_data\";a:0:{}}s:13:\"backup_plugin\";a:2:{s:8:\"progress\";s:35:\"Sauvegarde backup_plugin terminée.\";s:8:\"job_data\";a:0:{}}s:14:\"backup_uploads\";a:2:{s:8:\"progress\";s:42:\"Démarrer la sauvegarde de backup_uploads.\";s:8:\"job_data\";a:0:{}}}}s:6:\"upload\";a:5:{s:5:\"doing\";s:0:\"\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:8:\"job_data\";a:0:{}s:7:\"sub_job\";a:0:{}}}s:4:\"jobs\";a:7:{i:0;a:8:{s:11:\"backup_type\";s:9:\"backup_db\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:16:\"mysql_file_index\";i:2;s:8:\"sub_jobs\";a:148:{s:21:\"wpvk_wfls_role_counts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpvk_wfls_role_counts\";s:4:\"size\";i:0;s:4:\"rows\";s:1:\"0\";}s:22:\"wpvk_EWD_OTP_Customers\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpvk_EWD_OTP_Customers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpvk_EWD_OTP_Fields_Meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpvk_EWD_OTP_Fields_Meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpvk_EWD_OTP_Order_Statuses\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpvk_EWD_OTP_Order_Statuses\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpvk_EWD_OTP_Orders\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_EWD_OTP_Orders\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_EWD_OTP_Sales_Reps\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_EWD_OTP_Sales_Reps\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:17:\"wpvk_mainwp_group\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpvk_mainwp_group\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_mainwp_request_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_mainwp_request_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:17:\"wpvk_mainwp_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpvk_mainwp_users\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpvk_mainwp_wp_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpvk_mainwp_wp_actions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpvk_mainwp_wp_backup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpvk_mainwp_wp_backup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpvk_mainwp_wp_clients\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpvk_mainwp_wp_clients\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpvk_mainwp_wp_status\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpvk_mainwp_wp_status\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:20:\"wpvk_mo_campaign_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_mo_campaign_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpvk_mo_campaign_logmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpvk_mo_campaign_logmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpvk_mo_conversions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_mo_conversions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:26:\"wpvk_mo_email_campaignmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpvk_mo_email_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:26:\"wpvk_mo_optin_campaignmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpvk_mo_optin_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:25:\"wpvk_parcelpanel_location\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpvk_parcelpanel_location\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:15:\"wpvk_pmxe_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpvk_pmxe_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"112\";}s:19:\"wpvk_pmxe_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_pmxe_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:15:\"wpvk_pmxi_files\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpvk_pmxi_files\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"6\";}s:14:\"wpvk_pmxi_hash\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpvk_pmxi_hash\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}s:17:\"wpvk_pmxi_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpvk_pmxi_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"3\";}s:16:\"wpvk_pmxi_images\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpvk_pmxi_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}s:15:\"wpvk_pmxi_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpvk_pmxi_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"112\";}s:19:\"wpvk_pmxi_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_pmxi_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:28:\"wpvk_rank_math_internal_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpvk_rank_math_internal_meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"197\";}s:29:\"wpvk_s2w_error_product_images\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpvk_s2w_error_product_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpvk_vi_wbe_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_vi_wbe_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_wc_category_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_wc_category_lookup\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"18\";}s:22:\"wpvk_wc_reserved_stock\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpvk_wc_reserved_stock\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpvk_wfblockediplog\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_wfblockediplog\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"8\";}s:15:\"wpvk_wfcrawlers\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpvk_wfcrawlers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}s:18:\"wpvk_wffilechanges\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpvk_wffilechanges\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:11:\"wpvk_wflocs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpvk_wflocs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:18:\"wpvk_wfls_settings\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpvk_wfls_settings\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}s:19:\"wpvk_wfreversecache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_wfreversecache\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"2\";}s:21:\"wpvk_wfsecurityevents\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpvk_wfsecurityevents\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpvk_wftrafficrates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_wftrafficrates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:18:\"wpvk_wfwaffailures\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpvk_wfwaffailures\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:38:\"wpvk_woocommerce_shipping_zone_methods\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:38:\"wpvk_woocommerce_shipping_zone_methods\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}s:31:\"wpvk_woocommerce_shipping_zones\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpvk_woocommerce_shipping_zones\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpvk_actionscheduler_claims\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpvk_actionscheduler_claims\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:27:\"wpvk_actionscheduler_groups\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpvk_actionscheduler_groups\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"10\";}s:23:\"wpvk_adfoin_integration\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_adfoin_integration\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:15:\"wpvk_adfoin_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpvk_adfoin_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:10:\"wpvk_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpvk_links\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:14:\"wpvk_mainwp_wp\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpvk_mainwp_wp\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:30:\"wpvk_mainwp_wp_backup_progress\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpvk_mainwp_wp_backup_progress\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:31:\"wpvk_mainwp_wp_clients_contacts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpvk_mainwp_wp_clients_contacts\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:35:\"wpvk_mainwp_wp_clients_field_values\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:35:\"wpvk_mainwp_wp_clients_field_values\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:29:\"wpvk_mainwp_wp_clients_fields\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpvk_mainwp_wp_clients_fields\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:22:\"wpvk_mainwp_wp_options\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpvk_mainwp_wp_options\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:30:\"wpvk_mainwp_wp_settings_backup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpvk_mainwp_wp_settings_backup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:19:\"wpvk_mainwp_wp_sync\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_mainwp_wp_sync\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_mo_email_campaigns\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_mo_email_campaigns\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:28:\"wpvk_trackship_shipment_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpvk_trackship_shipment_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:24:\"wpvk_wc_gpf_render_cache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpvk_wc_gpf_render_cache\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:33:\"wpvk_wc_product_attributes_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:33:\"wpvk_wc_product_attributes_lookup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:36:\"wpvk_wc_product_download_directories\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:36:\"wpvk_wc_product_download_directories\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:19:\"wpvk_wc_rate_limits\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_wc_rate_limits\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:24:\"wpvk_wc_tax_rate_classes\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpvk_wc_tax_rate_classes\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:16:\"wpvk_wc_webhooks\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpvk_wc_webhooks\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"5\";}s:13:\"wpvk_wfhoover\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_wfhoover\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_wflivetraffichuman\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_wflivetraffichuman\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:21:\"wpvk_wfls_2fa_secrets\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpvk_wfls_2fa_secrets\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:37:\"wpvk_woocommerce_attribute_taxonomies\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:37:\"wpvk_woocommerce_attribute_taxonomies\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:20:\"wpvk_woocommerce_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_woocommerce_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:28:\"wpvk_woocommerce_order_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpvk_woocommerce_order_items\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:31:\"wpvk_woocommerce_payment_tokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpvk_woocommerce_payment_tokens\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:25:\"wpvk_woocommerce_sessions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpvk_woocommerce_sessions\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"1\";}s:14:\"wpvk_yith_wcwl\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpvk_yith_wcwl\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"80\";}s:21:\"wpvk_yoast_migrations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpvk_yoast_migrations\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"24\";}s:16:\"wpvk_commentmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpvk_commentmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:18:\"wpvk_litespeed_url\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpvk_litespeed_url\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpvk_mainwp_wp_group\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_mainwp_wp_group\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:24:\"wpvk_mainwp_wp_logs_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpvk_mainwp_wp_logs_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_mo_optin_campaigns\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_mo_optin_campaigns\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_redirection_groups\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_redirection_groups\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"2\";}s:13:\"wpvk_snippets\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_snippets\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"3\";}s:17:\"wpvk_social_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpvk_social_users\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:13:\"wpvk_termmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_termmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"107\";}s:10:\"wpvk_terms\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpvk_terms\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"35\";}s:32:\"wpvk_trackship_shipping_provider\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:32:\"wpvk_trackship_shipping_provider\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"490\";}s:13:\"wpvk_usermeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_usermeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"60\";}s:23:\"wpvk_wc_customer_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_wc_customer_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpvk_wc_download_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_wc_download_log\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:27:\"wpvk_wc_order_coupon_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpvk_wc_order_coupon_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:30:\"wpvk_wc_order_operational_data\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpvk_wc_order_operational_data\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:24:\"wpvk_wc_order_tax_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpvk_wc_order_tax_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:19:\"wpvk_wc_orders_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_wc_orders_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpvk_wfnotifications\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_wfnotifications\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"108\";}s:25:\"wpvk_woocommerce_api_keys\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpvk_woocommerce_api_keys\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:31:\"wpvk_woocommerce_order_itemmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpvk_woocommerce_order_itemmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:34:\"wpvk_woocommerce_payment_tokenmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:34:\"wpvk_woocommerce_payment_tokenmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:40:\"wpvk_woocommerce_shipping_zone_locations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:40:\"wpvk_woocommerce_shipping_zone_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}s:35:\"wpvk_woocommerce_tax_rate_locations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:35:\"wpvk_woocommerce_tax_rate_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpvk_yith_wcwl_lists\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_yith_wcwl_lists\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"39\";}s:25:\"wpvk_parcelpanel_tracking\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpvk_parcelpanel_tracking\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:31:\"wpvk_parcelpanel_tracking_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpvk_parcelpanel_tracking_items\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:20:\"wpvk_redirection_404\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_redirection_404\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:21:\"wpvk_redirection_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpvk_redirection_logs\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:18:\"wpvk_term_taxonomy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpvk_term_taxonomy\";s:4:\"size\";i:65536;s:4:\"rows\";s:2:\"35\";}s:10:\"wpvk_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpvk_users\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"1\";}s:19:\"wpvk_wc_order_stats\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_wc_order_stats\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:14:\"wpvk_wfblocks7\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpvk_wfblocks7\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:11:\"wpvk_wfhits\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpvk_wfhits\";s:4:\"size\";i:65536;s:4:\"rows\";s:2:\"33\";}s:16:\"wpvk_wfsnipcache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpvk_wfsnipcache\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_wc_order_addresses\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_wc_order_addresses\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:28:\"wpvk_wc_order_product_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpvk_wc_order_product_lookup\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:13:\"wpvk_wfissues\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_wfissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"1\";}s:20:\"wpvk_wfpendingissues\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_wfpendingissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:49:\"wpvk_woocommerce_downloadable_product_permissions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:49:\"wpvk_woocommerce_downloadable_product_permissions\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:26:\"wpvk_woocommerce_tax_rates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpvk_woocommerce_tax_rates\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_litespeed_url_file\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_litespeed_url_file\";s:4:\"size\";i:98304;s:4:\"rows\";s:1:\"0\";}s:29:\"wpvk_rank_math_internal_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpvk_rank_math_internal_links\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"297\";}s:26:\"wpvk_wc_admin_note_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpvk_wc_admin_note_actions\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"182\";}s:19:\"wpvk_wc_admin_notes\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_wc_admin_notes\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"139\";}s:13:\"wpvk_wflogins\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_wflogins\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"176\";}s:23:\"wpvk_yoast_primary_term\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_yoast_primary_term\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"502\";}s:13:\"wpvk_comments\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_comments\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:17:\"wpvk_pmxi_imports\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpvk_pmxi_imports\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"6\";}s:22:\"wpvk_redirection_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpvk_redirection_items\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:30:\"wpvk_yoast_indexable_hierarchy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpvk_yoast_indexable_hierarchy\";s:4:\"size\";i:114688;s:4:\"rows\";s:3:\"625\";}s:24:\"wpvk_zorem_email_sms_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpvk_zorem_email_sms_log\";s:4:\"size\";i:131072;s:4:\"rows\";s:1:\"0\";}s:19:\"wpvk_mainwp_wp_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpvk_mainwp_wp_logs\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:23:\"wpvk_trackship_shipment\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_trackship_shipment\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:14:\"wpvk_wc_orders\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpvk_wc_orders\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:27:\"wpvk_woo_shippment_provider\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpvk_woo_shippment_provider\";s:4:\"size\";i:147456;s:4:\"rows\";s:3:\"811\";}s:24:\"wpvk_parcelpanel_courier\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpvk_parcelpanel_courier\";s:4:\"size\";i:196608;s:4:\"rows\";s:4:\"1164\";}s:23:\"wpvk_term_relationships\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpvk_term_relationships\";s:4:\"size\";i:229376;s:4:\"rows\";s:4:\"1946\";}s:13:\"wpvk_wfstatus\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_wfstatus\";s:4:\"size\";i:245760;s:4:\"rows\";s:3:\"943\";}s:20:\"wpvk_yoast_seo_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_yoast_seo_links\";s:4:\"size\";i:278528;s:4:\"rows\";s:3:\"847\";}s:22:\"wpvk_mainwp_action_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpvk_mainwp_action_log\";s:4:\"size\";i:294912;s:4:\"rows\";s:1:\"5\";}s:21:\"wpvk_pmxe_google_cats\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpvk_pmxe_google_cats\";s:4:\"size\";i:409600;s:4:\"rows\";s:4:\"5512\";}s:25:\"wpvk_actionscheduler_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpvk_actionscheduler_logs\";s:4:\"size\";i:540672;s:4:\"rows\";s:4:\"3452\";}s:28:\"wpvk_actionscheduler_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpvk_actionscheduler_actions\";s:4:\"size\";i:1015808;s:4:\"rows\";s:4:\"1281\";}s:27:\"wpvk_wc_product_meta_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpvk_wc_product_meta_lookup\";s:4:\"size\";i:1327104;s:4:\"rows\";s:4:\"3718\";}s:17:\"wpvk_pmxe_exports\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpvk_pmxe_exports\";s:4:\"size\";i:1589248;s:4:\"rows\";s:1:\"4\";}s:36:\"wpvk_woocommerce_gpf_google_taxonomy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:36:\"wpvk_woocommerce_gpf_google_taxonomy\";s:4:\"size\";i:1720320;s:4:\"rows\";s:4:\"5481\";}s:20:\"wpvk_yoast_indexable\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_yoast_indexable\";s:4:\"size\";i:1835008;s:4:\"rows\";s:3:\"582\";}s:13:\"wpvk_wfconfig\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_wfconfig\";s:4:\"size\";i:2490368;s:4:\"rows\";s:3:\"270\";}s:20:\"wpvk_wfknownfilelist\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpvk_wfknownfilelist\";s:4:\"size\";i:5783552;s:4:\"rows\";s:5:\"19468\";}s:12:\"tmp319060_options\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:12:\"tmp319060_options\";s:4:\"size\";i:6799360;s:4:\"rows\";s:4:\"4507\";}s:15:\"wpvk_wffilemods\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpvk_wffilemods\";s:4:\"size\";i:11026432;s:4:\"rows\";s:5:\"16254\";}s:13:\"wpvk_postmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpvk_postmeta\";s:4:\"size\";i:27869184;s:4:\"rows\";s:6:\"150222\";}s:10:\"wpvk_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpvk_posts\";s:4:\"size\";i:29835264;s:4:\"rows\";s:4:\"7759\";}}s:16:\"mysql_dump_files\";a:1:{i:0;s:74:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35.part001.sql\";}s:8:\"zip_file\";a:1:{s:76:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_db.zip\";a:2:{s:8:\"filename\";s:76:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_db.zip\";s:8:\"finished\";i:1;}}}i:1;a:6:{s:11:\"backup_type\";s:13:\"backup_themes\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:2000;s:8:\"zip_file\";a:1:{s:80:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_themes.zip\";a:2:{s:8:\"filename\";s:80:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_themes.zip\";s:8:\"finished\";i:1;}}}i:2;a:6:{s:11:\"backup_type\";s:13:\"backup_plugin\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:15500;s:8:\"zip_file\";a:1:{s:80:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_plugin.zip\";a:2:{s:8:\"filename\";s:80:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_plugin.zip\";s:8:\"finished\";i:1;}}}i:3;a:6:{s:11:\"backup_type\";s:14:\"backup_uploads\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:10:\"file_index\";i:4;s:5:\"index\";i:12500;s:8:\"zip_file\";a:4:{s:89:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_uploads.part001.zip\";a:3:{s:8:\"filename\";s:89:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_uploads.part001.zip\";s:8:\"finished\";i:1;s:4:\"json\";a:5:{s:9:\"file_type\";s:6:\"upload\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.1\";}}s:89:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_uploads.part002.zip\";a:3:{s:8:\"filename\";s:89:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_uploads.part002.zip\";s:8:\"finished\";i:1;s:4:\"json\";a:5:{s:9:\"file_type\";s:6:\"upload\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.1\";}}s:89:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_uploads.part003.zip\";a:3:{s:8:\"filename\";s:89:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_uploads.part003.zip\";s:8:\"finished\";i:1;s:4:\"json\";a:5:{s:9:\"file_type\";s:6:\"upload\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.1\";}}s:89:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_uploads.part004.zip\";a:2:{s:8:\"filename\";s:89:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35_backup_uploads.part004.zip\";s:8:\"finished\";i:0;}}}i:4;a:5:{s:11:\"backup_type\";s:14:\"backup_content\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:0;}i:5;a:5:{s:11:\"backup_type\";s:11:\"backup_core\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:0;}i:6;a:6:{s:11:\"backup_type\";s:12:\"backup_merge\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:10:\"child_file\";a:0:{}s:5:\"index\";i:0;}}s:12:\"dump_setting\";a:14:{s:8:\"database\";s:15:\"cach0166_wp2105\";s:4:\"host\";s:9:\"localhost\";s:4:\"user\";s:15:\"cach0166_wp2105\";s:4:\"pass\";s:10:\"8-9@01pHaS\";s:8:\"site_url\";s:31:\"https://www.nl.ecom-expansion.com\";s:8:\"home_url\";s:31:\"https://www.nl.ecom-expansion.com\";s:11:\"content_url\";s:42:\"https://www.nl.ecom-expansion.com/wp-content\";s:6:\"prefix\";s:5:\"wpvk_\";s:17:\"db_connect_method\";s:4:\"wpdb\";s:11:\"file_prefix\";s:62:\"www.se.cach0166.odns.fr_wpvivid-655555df936c0_2023-11-16-00-35\";s:4:\"path\";s:60:\"/home/cach0166/se.cach0166.odns.fr/wp-content/wpvividbackups\";s:13:\"max_file_size\";i:209715200;s:14:\"exclude-tables\";a:6:{i:0;s:16:\"wpvk_wpvivid_log\";i:1;s:30:\"wpvk_wpvivid_increment_big_ids\";i:2;s:20:\"wpvk_wpvivid_options\";i:3;s:24:\"wpvk_wpvivid_record_task\";i:4;s:21:\"wpvk_wpvivid_merge_db\";i:5;s:22:\"wpvk_wpvivid_merge_ids\";}s:14:\"include-tables\";a:0:{}}}}','no'),(290978,'mainwp_child_nonce','0','no'),(290979,'mainwp_premium_updates','a:0:{}','no'),(291045,'_transient_timeout_woocommerce_blocks_asset_api_script_data','1706826069','no');
INSERT INTO `wpj7_options` VALUES (291046,'_transient_woocommerce_blocks_asset_api_script_data','{\"script_data\":{\"build\\/wc-settings.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-settings.js\",\"version\":\"526af596d7652d2db0af\",\"dependencies\":[\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/wc-blocks-middleware.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-middleware.js\",\"version\":\"ca04183222edaf8a26be\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"build\\/wc-blocks-data.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-data.js\",\"version\":\"326bfa85ea7d1844658b\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"build\\/wc-blocks-vendors.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-vendors.js\",\"version\":\"11185cdb49a21786ec8b\",\"dependencies\":[\"wp-polyfill\"]},\"build\\/wc-blocks-registry.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-registry.js\",\"version\":\"7a619513a517fee9fa99\",\"dependencies\":[\"react\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks.js\",\"version\":\"fdc9b3862613e30e3175\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/wc-blocks-shared-context.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks-shared-hocs.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-hocs.js\",\"version\":\"5e01ba7861e4c09bce65\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/price-format.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-format.js\",\"version\":\"eb7a7398126f71912b09\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"build\\/blocks-checkout.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/blocks-checkout.js\",\"version\":\"a411b6a2a26155a3c1de\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/blocks-components.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/blocks-components.js\",\"version\":\"dab91a510c739bb474ea\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/wc-interactivity-dropdown.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-interactivity-dropdown.js\",\"version\":\"41c6537b89187fc31e77\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"build\\/active-filters.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters.js\",\"version\":\"352d42158892872f339e\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/active-filters-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters-frontend.js\",\"version\":\"c17e052aa02adba59daf\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/all-products.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products.js\",\"version\":\"c3796cd1f21d2f820667\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-products-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products-frontend.js\",\"version\":\"b377b5077e48f874f359\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-reviews.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-reviews.js\",\"version\":\"f19cb52ba61fb0de7e40\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/reviews-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-frontend.js\",\"version\":\"04abb3ff840c6846e91b\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/attribute-filter.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter.js\",\"version\":\"7c068ac315c95bc9f929\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/attribute-filter-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter-frontend.js\",\"version\":\"5142e819ff092ff52925\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/breadcrumbs.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/breadcrumbs.js\",\"version\":\"eb931ca65c3889f5aeb3\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/catalog-sorting.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/catalog-sorting.js\",\"version\":\"7e8251371b81748052f1\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/legacy-template.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/legacy-template.js\",\"version\":\"4ab3597f0d016d5ff5e4\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/classic-shortcode.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/classic-shortcode.js\",\"version\":\"aaa6bf96f4d18df37858\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/customer-account.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/customer-account.js\",\"version\":\"e1623fbc577dfd33781e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/featured-category.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-category.js\",\"version\":\"7d3f1b015d71cae6641c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/featured-product.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-product.js\",\"version\":\"8c49109524d64d9dec58\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/filter-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper.js\",\"version\":\"bb86c749736b5f943dc4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/filter-wrapper-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper-frontend.js\",\"version\":\"9ce52f91ac330d6b12ea\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"build\\/handpicked-products.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/handpicked-products.js\",\"version\":\"8a09533b7fcfc4310005\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/mini-cart.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart.js\",\"version\":\"6eeac5d3ab7ef060f90d\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/mini-cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-frontend.js\",\"version\":\"61e99d9cd2611bcf7267\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/store-notices.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/store-notices.js\",\"version\":\"a7828808665fd5ebd61d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/price-filter.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter.js\",\"version\":\"a8312dcab8bbf0429641\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/price-filter-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter-frontend.js\",\"version\":\"c0790b0adc4f3424b1e1\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"build\\/product-add-to-cart.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-add-to-cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-best-sellers.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-best-sellers.js\",\"version\":\"81724189a76188e97907\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-button.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-button-interactivity-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button-interactivity-frontend.js\",\"version\":\"89dc8199a6e1381372e8\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/product-categories.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-categories.js\",\"version\":\"207a1dc1e3cba4c26983\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"build\\/product-category.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-category.js\",\"version\":\"09f54a2afdf51d363f73\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-collection.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-collection.js\",\"version\":\"b6646078c099f499864f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-collection-no-results.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-collection-no-results.js\",\"version\":\"18a100f13adea804d4c2\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-new.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-new.js\",\"version\":\"8d36358f8edf0cc5ed5d\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-on-sale.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-on-sale.js\",\"version\":\"165558960acde5f8883c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-template.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-template.js\",\"version\":\"2717c6cdb225f1990b6f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/product-query.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query.js\",\"version\":\"858e981db995c4f9330c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-query-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-results-count.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-results-count.js\",\"version\":\"3612c28ddcdeb72a6ce7\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-search.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-search.js\",\"version\":\"73c1c18c40bae14345a5\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-summary.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-summary.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-tag.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-tag.js\",\"version\":\"e03c732b7e7d79998da9\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-title.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-title-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/product-top-rated.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-top-rated.js\",\"version\":\"5aa0d3e194bbc6a9c724\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/products-by-attribute.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/products-by-attribute.js\",\"version\":\"7de15ff0423e13d0113e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/rating-filter.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/rating-filter.js\",\"version\":\"a16d9863ed6a3f963124\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/reviews-by-category.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-category.js\",\"version\":\"4ab308198f6e4094cff7\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/reviews-by-product.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-product.js\",\"version\":\"47ca5f01a6fde485410e\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/single-product.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/single-product.js\",\"version\":\"1cc141dac0c58d6a80c5\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-store-data\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/stock-filter.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter.js\",\"version\":\"73137ea186d0ccf935e0\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/stock-filter-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter-frontend.js\",\"version\":\"77d483150fd997e4cfe3\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/page-content-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/page-content-wrapper.js\",\"version\":\"89fec669e4155be77487\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-status.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-status.js\",\"version\":\"2e06b7c64e4372fd6ae9\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-summary.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-summary.js\",\"version\":\"c18a18ee1bc41e369cc6\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-date\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-totals.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-totals.js\",\"version\":\"28908f11cadc155e57dc\",\"dependencies\":[\"react\",\"wc-price-format\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-totals-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-totals-wrapper.js\",\"version\":\"d7fceb59979ef7dd83ae\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-downloads.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-downloads.js\",\"version\":\"2caf533aa419162eb0ff\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-downloads-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-downloads-wrapper.js\",\"version\":\"df8557f90bf48d7209ca\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-billing-address.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-billing-address.js\",\"version\":\"e7413ec7bfb2719dbacf\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-shipping-address.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-shipping-address.js\",\"version\":\"365f246176217513d853\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-billing-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-billing-wrapper.js\",\"version\":\"49cf6e1def62b8df6ba7\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-shipping-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-shipping-wrapper.js\",\"version\":\"bae2cb91bc273a1d5a17\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/order-confirmation-additional-information.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/order-confirmation-additional-information.js\",\"version\":\"26aedde81a520ea395e8\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/cart.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart.js\",\"version\":\"997f325194b99b9afcb7\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-frontend.js\",\"version\":\"fac5397cafbd3773725e\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-taxes-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/filled-cart-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-cart-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/empty-cart-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-cart-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-totals-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-totals-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-items-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-items-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-line-items-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-line-items-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-express-payment-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-express-payment-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/proceed-to-checkout-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/proceed-to-checkout-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-accepted-payment-methods-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-discount-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-fee-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-heading-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-heading-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-shipping-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-cross-sells-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-cross-sells-products-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-products-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout.js\",\"version\":\"3d9bc0b1aca96f94493a\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-frontend.js\",\"version\":\"929837ae514d0192f8e7\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-actions-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-actions-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-billing-address-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-billing-address-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-contact-information-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-contact-information-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-express-payment-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-express-payment-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-fields-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-fields-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-note-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-note-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-discount-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-fee-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-payment-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-payment-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-shipping-address-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-address-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-shipping-methods-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-methods-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-shipping-method-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-method-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-pickup-options-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-pickup-options-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-terms-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-terms-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/checkout-totals-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-totals-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-contents.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents.js\",\"version\":\"7b67d37ffaac13c35450\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/empty-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-mini-cart-contents-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/filled-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-mini-cart-contents-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-footer-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-footer-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-items-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-items-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-products-table-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-products-table-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-shopping-button-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-shopping-button-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-cart-button-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-cart-button-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-checkout-button-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-checkout-button-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-title-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-title-items-counter-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]},\"build\\/mini-cart-title-label-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-label-block.js\",\"version\":\"11.6.2\",\"dependencies\":[]}},\"version\":\"11.6.2\",\"hash\":\"6cd0b5bdd9f720ae56caf8d440f6c292\"}','no'),(291080,'mainwp_cache_control_log','{\"status\":\"Disabled\",\"action\":\"SUCCESS\"}','yes'),(291145,'mainwp_child_clone_sites','0','no'),(291146,'mainwp_child_siteid','4','no'),(291147,'mainwp_child_actions_saved_number_of_days','30','no'),(291152,'mainwp_child_auto_purge_cache','0','yes'),(291153,'mainwp_child_cloud_flair_enabled','0','yes'),(291154,'mainwp_child_pingnonce','6eb8efbbe0','no'),(291253,'wpvivid_init','init','no'),(291254,'wpvivid_schedule_setting','a:1:{s:6:\"enable\";b:0;}','no'),(291255,'wpvivid_compress_setting','a:7:{s:13:\"compress_type\";s:3:\"zip\";s:13:\"max_file_size\";i:200;s:11:\"no_compress\";b:1;s:13:\"use_temp_file\";i:1;s:13:\"use_temp_size\";i:16;s:17:\"exclude_file_size\";i:0;s:24:\"subpackage_plugin_upload\";b:0;}','no'),(291256,'wpvivid_local_setting','a:2:{s:4:\"path\";s:14:\"wpvividbackups\";s:10:\"save_local\";i:1;}','no'),(291257,'wpvivid_upload_setting','a:1:{s:15:\"remote_selected\";a:0:{}}','no'),(291258,'wpvivid_common_setting','a:10:{s:18:\"max_execution_time\";i:300;s:16:\"max_backup_count\";i:3;s:14:\"show_admin_bar\";b:1;s:14:\"domain_include\";b:1;s:15:\"estimate_backup\";b:1;s:16:\"max_resume_count\";i:6;s:12:\"memory_limit\";s:4:\"256M\";s:20:\"restore_memory_limit\";s:4:\"512M\";s:12:\"migrate_size\";s:4:\"2048\";s:17:\"log_save_location\";s:26:\"wpvividbackups/wpvivid_log\";}','no'),(291259,'wpvivid_email_setting','a:3:{s:7:\"send_to\";a:0:{}s:6:\"always\";b:1;s:12:\"email_enable\";b:0;}','no'),(291260,'wpvivid_saved_api_token','a:0:{}','no'),(291262,'wpvivid_last_msg','a:8:{s:2:\"id\";s:21:\"wpvivid-65931ccb76c26\";s:4:\"type\";s:6:\"Manual\";s:7:\"options\";a:22:{s:7:\"ismerge\";s:1:\"1\";s:4:\"lock\";s:1:\"0\";s:12:\"backup_files\";s:8:\"files+db\";s:5:\"local\";s:1:\"1\";s:6:\"remote\";s:1:\"0\";s:4:\"type\";s:6:\"Manual\";s:13:\"backup_prefix\";s:25:\"www.nl.ecom-expansion.com\";s:11:\"file_prefix\";s:64:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12\";s:13:\"log_file_name\";s:28:\"wpvivid-65931ccb76c26_backup\";s:13:\"log_file_path\";s:111:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups/wpvivid_log/wpvivid-65931ccb76c26_backup_log.txt\";s:6:\"prefix\";s:64:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12\";s:3:\"dir\";s:62:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups\";s:10:\"backup_dir\";s:14:\"wpvividbackups\";s:14:\"exclude-tables\";a:6:{i:0;s:16:\"wpj7_wpvivid_log\";i:1;s:30:\"wpj7_wpvivid_increment_big_ids\";i:2;s:20:\"wpj7_wpvivid_options\";i:3;s:24:\"wpj7_wpvivid_record_task\";i:4;s:21:\"wpj7_wpvivid_merge_db\";i:5;s:22:\"wpj7_wpvivid_merge_ids\";}s:14:\"include-tables\";a:0:{}s:13:\"exclude_files\";a:12:{i:0;s:91:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wpvivid\\-backuprestore#\";i:1;s:79:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wp\\-cerber#\";i:2;s:71:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/\\.#\";i:3;s:89:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wpvivid\\-backup\\-pro#\";i:4;s:85:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wpvividdashboard#\";i:5;s:67:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/upgrade#\";i:6;s:65:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/cache#\";i:7;s:65:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/cache#\";i:8;s:75:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvivid_uploads#\";i:9;s:67:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvivid#\";i:10;s:74:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvividbackups#\";i:11;s:84:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvivid_uploads\\/Isolate#\";}s:13:\"include_files\";a:2:{i:0;s:56:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-admin#\";i:1;s:59:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-includes#\";}s:15:\"include_plugins\";a:0:{}s:14:\"include_themes\";a:0:{}s:10:\"save_local\";i:1;s:14:\"backup_options\";a:1:{s:8:\"compress\";a:1:{s:13:\"compress_type\";s:3:\"zip\";}}s:14:\"remote_options\";b:0;}s:6:\"status\";a:7:{s:15:\"task_start_time\";i:1704139979;s:13:\"task_end_time\";i:1704140162;s:10:\"start_time\";i:1704139980;s:8:\"run_time\";i:1704140162;s:7:\"timeout\";i:1704140149;s:3:\"str\";s:7:\"running\";s:12:\"resume_count\";i:0;}s:7:\"setting\";a:11:{s:17:\"db_connect_method\";s:4:\"wpdb\";s:12:\"memory_limit\";s:4:\"256M\";s:18:\"max_execution_time\";i:300;s:23:\"compress_file_use_cache\";b:0;s:19:\"compress_file_count\";i:500;s:13:\"max_file_size\";i:200;s:17:\"max_sql_file_size\";i:200;s:17:\"exclude_file_size\";i:0;s:16:\"max_resume_count\";i:6;s:10:\"zip_method\";s:10:\"ziparchive\";s:8:\"is_merge\";b:1;}s:4:\"data\";a:3:{s:5:\"doing\";s:6:\"backup\";s:6:\"backup\";a:3:{s:5:\"doing\";s:12:\"backup_merge\";s:8:\"progress\";i:100;s:7:\"sub_job\";a:7:{s:9:\"backup_db\";a:2:{s:8:\"progress\";s:30:\"Backing up backup_db finished.\";s:8:\"job_data\";a:0:{}}s:13:\"backup_themes\";a:2:{s:8:\"progress\";s:34:\"Backing up backup_themes finished.\";s:8:\"job_data\";a:0:{}}s:13:\"backup_plugin\";a:2:{s:8:\"progress\";s:34:\"Backing up backup_plugin finished.\";s:8:\"job_data\";a:0:{}}s:14:\"backup_uploads\";a:2:{s:8:\"progress\";s:35:\"Backing up backup_uploads finished.\";s:8:\"job_data\";a:0:{}}s:14:\"backup_content\";a:2:{s:8:\"progress\";s:35:\"Backing up backup_content finished.\";s:8:\"job_data\";a:0:{}}s:11:\"backup_core\";a:2:{s:8:\"progress\";s:32:\"Backing up backup_core finished.\";s:8:\"job_data\";a:0:{}}s:12:\"backup_merge\";a:2:{s:8:\"progress\";s:33:\"Backing up backup_merge finished.\";s:8:\"job_data\";a:0:{}}}}s:6:\"upload\";a:5:{s:5:\"doing\";s:0:\"\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:8:\"job_data\";a:0:{}s:7:\"sub_job\";a:0:{}}}s:4:\"jobs\";a:7:{i:0;a:8:{s:11:\"backup_type\";s:9:\"backup_db\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:16:\"mysql_file_index\";i:2;s:8:\"sub_jobs\";a:167:{s:21:\"wpj7_wfls_role_counts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wfls_role_counts\";s:4:\"size\";i:0;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_EWD_OTP_Customers\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_EWD_OTP_Customers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_EWD_OTP_Fields_Meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_EWD_OTP_Fields_Meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_EWD_OTP_Order_Statuses\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_EWD_OTP_Order_Statuses\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_EWD_OTP_Orders\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_EWD_OTP_Orders\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_EWD_OTP_Sales_Reps\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_EWD_OTP_Sales_Reps\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:33:\"wpj7_cartflows_ca_email_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:33:\"wpj7_cartflows_ca_email_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}s:17:\"wpj7_mainwp_group\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_mainwp_group\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_mainwp_request_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_mainwp_request_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:17:\"wpj7_mainwp_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_mainwp_users\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_mainwp_wp_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_wp_actions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_mainwp_wp_backup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_mainwp_wp_backup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_mainwp_wp_clients\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_wp_clients\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_mainwp_wp_status\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_mainwp_wp_status\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_mo_campaign_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_mo_campaign_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_mo_campaign_logmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_mo_campaign_logmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_mo_conversions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_mo_conversions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_mo_email_campaignmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_mo_email_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_mo_optin_campaignmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_mo_optin_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:25:\"wpj7_parcelpanel_location\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_parcelpanel_location\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_pmxe_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_pmxe_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"112\";}s:19:\"wpj7_pmxe_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_pmxe_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_pmxi_files\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_pmxi_files\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"6\";}s:14:\"wpj7_pmxi_hash\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_pmxi_hash\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}s:17:\"wpj7_pmxi_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_pmxi_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"3\";}s:16:\"wpj7_pmxi_images\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_pmxi_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}s:15:\"wpj7_pmxi_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_pmxi_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:28:\"wpj7_rank_math_internal_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_rank_math_internal_meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"216\";}s:29:\"wpj7_s2w_error_product_images\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpj7_s2w_error_product_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_sfa_abandoned_carts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_sfa_abandoned_carts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_vi_wbe_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_vi_wbe_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wc_category_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wc_category_lookup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wc_reserved_stock\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wc_reserved_stock\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wfblockediplog\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wfblockediplog\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"48\";}s:15:\"wpj7_wfcrawlers\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_wfcrawlers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"3\";}s:18:\"wpj7_wffilechanges\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_wffilechanges\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:11:\"wpj7_wflocs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpj7_wflocs\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"69\";}s:18:\"wpj7_wfls_settings\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_wfls_settings\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"30\";}s:19:\"wpj7_wfreversecache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wfreversecache\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"1\";}s:21:\"wpj7_wfsecurityevents\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wfsecurityevents\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wftrafficrates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wftrafficrates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:18:\"wpj7_wfwaffailures\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_wfwaffailures\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:38:\"wpj7_woocommerce_shipping_zone_methods\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:38:\"wpj7_woocommerce_shipping_zone_methods\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}s:31:\"wpj7_woocommerce_shipping_zones\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_woocommerce_shipping_zones\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:11:\"wpj7_wpaicg\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpj7_wpaicg\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wpaicg_chatlogs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wpaicg_chatlogs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wpaicg_chattokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_chattokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:25:\"wpj7_wpaicg_form_feedback\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_wpaicg_form_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_wpaicg_form_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wpaicg_form_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wpaicg_formtokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_formtokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wpaicg_image_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_image_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wpaicg_imagetokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wpaicg_imagetokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wpaicg_prompt_feedback\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wpaicg_prompt_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wpaicg_promptbase_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wpaicg_promptbase_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_wpaicg_prompttokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wpaicg_prompttokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_actionscheduler_claims\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_actionscheduler_claims\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_actionscheduler_groups\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_actionscheduler_groups\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"10\";}s:23:\"wpj7_adfoin_integration\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_adfoin_integration\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_adfoin_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_adfoin_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:34:\"wpj7_cartflows_ca_cart_abandonment\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:34:\"wpj7_cartflows_ca_cart_abandonment\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:38:\"wpj7_cartflows_ca_email_templates_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:38:\"wpj7_cartflows_ca_email_templates_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"42\";}s:10:\"wpj7_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_links\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_mainwp_wp\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_mainwp_wp\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_mainwp_wp_backup_progress\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_mainwp_wp_backup_progress\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_mainwp_wp_clients_contacts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_mainwp_wp_clients_contacts\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:35:\"wpj7_mainwp_wp_clients_field_values\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:35:\"wpj7_mainwp_wp_clients_field_values\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:29:\"wpj7_mainwp_wp_clients_fields\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpj7_mainwp_wp_clients_fields\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_mainwp_wp_options\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_wp_options\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_mainwp_wp_settings_backup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_mainwp_wp_settings_backup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_mainwp_wp_sync\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_mainwp_wp_sync\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_mo_email_campaigns\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_mo_email_campaigns\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_term_relationships\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_term_relationships\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"3\";}s:28:\"wpj7_trackship_shipment_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_trackship_shipment_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:24:\"wpj7_wc_gpf_render_cache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wc_gpf_render_cache\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:33:\"wpj7_wc_product_attributes_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:33:\"wpj7_wc_product_attributes_lookup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:36:\"wpj7_wc_product_download_directories\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:36:\"wpj7_wc_product_download_directories\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:19:\"wpj7_wc_rate_limits\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_rate_limits\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_wc_tax_rate_classes\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wc_tax_rate_classes\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:16:\"wpj7_wc_webhooks\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_wc_webhooks\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"5\";}s:13:\"wpj7_wfhoover\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfhoover\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wflivetraffichuman\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wflivetraffichuman\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_wfls_2fa_secrets\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wfls_2fa_secrets\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:37:\"wpj7_woocommerce_attribute_taxonomies\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:37:\"wpj7_woocommerce_attribute_taxonomies\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_woocommerce_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_woocommerce_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:28:\"wpj7_woocommerce_order_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_woocommerce_order_items\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_woocommerce_payment_tokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_woocommerce_payment_tokens\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:25:\"wpj7_woocommerce_sessions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_woocommerce_sessions\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"1\";}s:22:\"wpj7_wpaicg_token_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_token_logs\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_yith_wcwl\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_yith_wcwl\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"80\";}s:21:\"wpj7_yoast_migrations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_yoast_migrations\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"24\";}s:31:\"wpj7_cartflows_ca_email_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_cartflows_ca_email_history\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:16:\"wpj7_commentmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_commentmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_mainwp_wp_group\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_mainwp_wp_group\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_mainwp_wp_logs_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_mainwp_wp_logs_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_mo_optin_campaigns\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_mo_optin_campaigns\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_redirection_groups\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_redirection_groups\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"2\";}s:13:\"wpj7_snippets\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_snippets\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"3\";}s:17:\"wpj7_social_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_social_users\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:18:\"wpj7_term_taxonomy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_term_taxonomy\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"17\";}s:13:\"wpj7_termmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_termmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}s:10:\"wpj7_terms\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_terms\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"18\";}s:32:\"wpj7_trackship_shipping_provider\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:32:\"wpj7_trackship_shipping_provider\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"490\";}s:13:\"wpj7_usermeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_usermeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"65\";}s:23:\"wpj7_wc_customer_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wc_customer_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wc_download_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wc_download_log\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wc_order_coupon_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wc_order_coupon_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_wc_order_operational_data\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_wc_order_operational_data\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_wc_order_tax_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wc_order_tax_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wc_orders_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_orders_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wfnotifications\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wfnotifications\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"115\";}s:25:\"wpj7_woocommerce_api_keys\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_woocommerce_api_keys\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_woocommerce_order_itemmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_woocommerce_order_itemmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:34:\"wpj7_woocommerce_payment_tokenmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:34:\"wpj7_woocommerce_payment_tokenmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:40:\"wpj7_woocommerce_shipping_zone_locations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:40:\"wpj7_woocommerce_shipping_zone_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}s:35:\"wpj7_woocommerce_tax_rate_locations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:35:\"wpj7_woocommerce_tax_rate_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wpaicg_rsslogs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wpaicg_rsslogs\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_yith_wcwl_lists\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_yith_wcwl_lists\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"39\";}s:25:\"wpj7_parcelpanel_tracking\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_parcelpanel_tracking\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_parcelpanel_tracking_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_parcelpanel_tracking_items\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_redirection_404\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_redirection_404\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_redirection_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_redirection_logs\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:10:\"wpj7_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_users\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"1\";}s:19:\"wpj7_wc_order_stats\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_order_stats\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_wfblocks7\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_wfblocks7\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:16:\"wpj7_wfsnipcache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_wfsnipcache\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_wpr_rocket_cache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wpr_rocket_cache\";s:4:\"size\";i:65536;s:4:\"rows\";s:2:\"10\";}s:29:\"wpj7_rank_math_internal_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpj7_rank_math_internal_links\";s:4:\"size\";i:81920;s:4:\"rows\";s:3:\"257\";}s:26:\"wpj7_wc_admin_note_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_wc_admin_note_actions\";s:4:\"size\";i:81920;s:4:\"rows\";s:3:\"186\";}s:23:\"wpj7_wc_order_addresses\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wc_order_addresses\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:28:\"wpj7_wc_order_product_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_wc_order_product_lookup\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:13:\"wpj7_wfissues\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"2\";}s:20:\"wpj7_wfpendingissues\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wfpendingissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:49:\"wpj7_woocommerce_downloadable_product_permissions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:49:\"wpj7_woocommerce_downloadable_product_permissions\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_woocommerce_tax_rates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_woocommerce_tax_rates\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wc_admin_notes\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_admin_notes\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"140\";}s:11:\"wpj7_wfhits\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpj7_wfhits\";s:4:\"size\";i:98304;s:4:\"rows\";s:2:\"73\";}s:13:\"wpj7_wflogins\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wflogins\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"206\";}s:15:\"wpj7_wpml_mails\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_wpml_mails\";s:4:\"size\";i:98304;s:4:\"rows\";s:2:\"22\";}s:23:\"wpj7_yoast_primary_term\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_yoast_primary_term\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"456\";}s:13:\"wpj7_comments\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_comments\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:17:\"wpj7_pmxi_imports\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_pmxi_imports\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"6\";}s:22:\"wpj7_redirection_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_redirection_items\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wc_product_meta_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wc_product_meta_lookup\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wpr_rucss_used_css\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wpr_rucss_used_css\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_yoast_indexable_hierarchy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_yoast_indexable_hierarchy\";s:4:\"size\";i:114688;s:4:\"rows\";s:3:\"626\";}s:24:\"wpj7_zorem_email_sms_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_zorem_email_sms_log\";s:4:\"size\";i:131072;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_mainwp_wp_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_mainwp_wp_logs\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_trackship_shipment\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_trackship_shipment\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_wc_orders\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_wc_orders\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_woo_shippment_provider\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_woo_shippment_provider\";s:4:\"size\";i:147456;s:4:\"rows\";s:3:\"817\";}s:19:\"wpj7_pmxi_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_pmxi_templates\";s:4:\"size\";i:180224;s:4:\"rows\";s:1:\"5\";}s:20:\"wpj7_yoast_seo_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_yoast_seo_links\";s:4:\"size\";i:278528;s:4:\"rows\";s:3:\"847\";}s:22:\"wpj7_mainwp_action_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_action_log\";s:4:\"size\";i:294912;s:4:\"rows\";s:1:\"5\";}s:24:\"wpj7_parcelpanel_courier\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_parcelpanel_courier\";s:4:\"size\";i:327680;s:4:\"rows\";s:4:\"1187\";}s:21:\"wpj7_pmxe_google_cats\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_pmxe_google_cats\";s:4:\"size\";i:409600;s:4:\"rows\";s:4:\"5512\";}s:13:\"wpj7_wfstatus\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfstatus\";s:4:\"size\";i:425984;s:4:\"rows\";s:3:\"941\";}s:13:\"wpj7_postmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_postmeta\";s:4:\"size\";i:1114112;s:4:\"rows\";s:3:\"297\";}s:13:\"wpj7_wfconfig\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfconfig\";s:4:\"size\";i:1523712;s:4:\"rows\";s:3:\"270\";}s:17:\"wpj7_pmxe_exports\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_pmxe_exports\";s:4:\"size\";i:1589248;s:4:\"rows\";s:1:\"4\";}s:20:\"wpj7_yoast_indexable\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_yoast_indexable\";s:4:\"size\";i:1835008;s:4:\"rows\";s:3:\"596\";}s:36:\"wpj7_woocommerce_gpf_google_taxonomy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:36:\"wpj7_woocommerce_gpf_google_taxonomy\";s:4:\"size\";i:2260992;s:4:\"rows\";s:4:\"5688\";}s:28:\"wpj7_actionscheduler_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_actionscheduler_actions\";s:4:\"size\";i:3670016;s:4:\"rows\";s:4:\"1615\";}s:25:\"wpj7_actionscheduler_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_actionscheduler_logs\";s:4:\"size\";i:4308992;s:4:\"rows\";s:4:\"4829\";}s:12:\"wpj7_options\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:12:\"wpj7_options\";s:4:\"size\";i:6504448;s:4:\"rows\";s:4:\"1301\";}s:10:\"wpj7_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_posts\";s:4:\"size\";i:7913472;s:4:\"rows\";s:3:\"356\";}s:20:\"wpj7_wfknownfilelist\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wfknownfilelist\";s:4:\"size\";i:8929280;s:4:\"rows\";s:5:\"32081\";}s:15:\"wpj7_wffilemods\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_wffilemods\";s:4:\"size\";i:18399232;s:4:\"rows\";s:5:\"29803\";}}s:16:\"mysql_dump_files\";a:1:{i:0;s:76:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12.part001.sql\";}s:8:\"zip_file\";a:1:{s:78:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_db.zip\";a:2:{s:8:\"filename\";s:78:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_db.zip\";s:8:\"finished\";i:1;}}}i:1;a:6:{s:11:\"backup_type\";s:13:\"backup_themes\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:2000;s:8:\"zip_file\";a:1:{s:82:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_themes.zip\";a:2:{s:8:\"filename\";s:82:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_themes.zip\";s:8:\"finished\";i:1;}}}i:2;a:6:{s:11:\"backup_type\";s:13:\"backup_plugin\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:23500;s:8:\"zip_file\";a:1:{s:82:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_plugin.zip\";a:2:{s:8:\"filename\";s:82:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_plugin.zip\";s:8:\"finished\";i:1;}}}i:3;a:6:{s:11:\"backup_type\";s:14:\"backup_uploads\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:1000;s:8:\"zip_file\";a:1:{s:83:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_uploads.zip\";a:2:{s:8:\"filename\";s:83:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_uploads.zip\";s:8:\"finished\";i:1;}}}i:4;a:6:{s:11:\"backup_type\";s:14:\"backup_content\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:3000;s:8:\"zip_file\";a:1:{s:83:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_content.zip\";a:2:{s:8:\"filename\";s:83:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_content.zip\";s:8:\"finished\";i:1;}}}i:5;a:6:{s:11:\"backup_type\";s:11:\"backup_core\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:3000;s:8:\"zip_file\";a:1:{s:80:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_core.zip\";a:2:{s:8:\"filename\";s:80:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_core.zip\";s:8:\"finished\";i:1;}}}i:6;a:7:{s:11:\"backup_type\";s:12:\"backup_merge\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:10:\"child_file\";a:6:{s:78:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_db.zip\";a:11:{s:5:\"files\";a:1:{i:0;s:78:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_db.sql\";}s:6:\"tables\";a:167:{i:0;a:3:{s:4:\"name\";s:21:\"wpj7_wfls_role_counts\";s:4:\"size\";i:0;s:4:\"rows\";s:1:\"0\";}i:1;a:3:{s:4:\"name\";s:22:\"wpj7_EWD_OTP_Customers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:2;a:3:{s:4:\"name\";s:24:\"wpj7_EWD_OTP_Fields_Meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:3;a:3:{s:4:\"name\";s:27:\"wpj7_EWD_OTP_Order_Statuses\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:4;a:3:{s:4:\"name\";s:19:\"wpj7_EWD_OTP_Orders\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:5;a:3:{s:4:\"name\";s:23:\"wpj7_EWD_OTP_Sales_Reps\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:6;a:3:{s:4:\"name\";s:33:\"wpj7_cartflows_ca_email_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}i:7;a:3:{s:4:\"name\";s:17:\"wpj7_mainwp_group\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:8;a:3:{s:4:\"name\";s:23:\"wpj7_mainwp_request_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:9;a:3:{s:4:\"name\";s:17:\"wpj7_mainwp_users\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:10;a:3:{s:4:\"name\";s:22:\"wpj7_mainwp_wp_actions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:11;a:3:{s:4:\"name\";s:21:\"wpj7_mainwp_wp_backup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:12;a:3:{s:4:\"name\";s:22:\"wpj7_mainwp_wp_clients\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:13;a:3:{s:4:\"name\";s:21:\"wpj7_mainwp_wp_status\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:14;a:3:{s:4:\"name\";s:20:\"wpj7_mo_campaign_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:15;a:3:{s:4:\"name\";s:24:\"wpj7_mo_campaign_logmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:16;a:3:{s:4:\"name\";s:19:\"wpj7_mo_conversions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:17;a:3:{s:4:\"name\";s:26:\"wpj7_mo_email_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:18;a:3:{s:4:\"name\";s:26:\"wpj7_mo_optin_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:19;a:3:{s:4:\"name\";s:25:\"wpj7_parcelpanel_location\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:20;a:3:{s:4:\"name\";s:15:\"wpj7_pmxe_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"112\";}i:21;a:3:{s:4:\"name\";s:19:\"wpj7_pmxe_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:22;a:3:{s:4:\"name\";s:15:\"wpj7_pmxi_files\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"6\";}i:23;a:3:{s:4:\"name\";s:14:\"wpj7_pmxi_hash\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}i:24;a:3:{s:4:\"name\";s:17:\"wpj7_pmxi_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"3\";}i:25;a:3:{s:4:\"name\";s:16:\"wpj7_pmxi_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}i:26;a:3:{s:4:\"name\";s:15:\"wpj7_pmxi_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:27;a:3:{s:4:\"name\";s:28:\"wpj7_rank_math_internal_meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"216\";}i:28;a:3:{s:4:\"name\";s:29:\"wpj7_s2w_error_product_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:29;a:3:{s:4:\"name\";s:24:\"wpj7_sfa_abandoned_carts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:30;a:3:{s:4:\"name\";s:19:\"wpj7_vi_wbe_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:31;a:3:{s:4:\"name\";s:23:\"wpj7_wc_category_lookup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:32;a:3:{s:4:\"name\";s:22:\"wpj7_wc_reserved_stock\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:33;a:3:{s:4:\"name\";s:19:\"wpj7_wfblockediplog\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"48\";}i:34;a:3:{s:4:\"name\";s:15:\"wpj7_wfcrawlers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"3\";}i:35;a:3:{s:4:\"name\";s:18:\"wpj7_wffilechanges\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:36;a:3:{s:4:\"name\";s:11:\"wpj7_wflocs\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"69\";}i:37;a:3:{s:4:\"name\";s:18:\"wpj7_wfls_settings\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"30\";}i:38;a:3:{s:4:\"name\";s:19:\"wpj7_wfreversecache\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"1\";}i:39;a:3:{s:4:\"name\";s:21:\"wpj7_wfsecurityevents\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:40;a:3:{s:4:\"name\";s:19:\"wpj7_wftrafficrates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:41;a:3:{s:4:\"name\";s:18:\"wpj7_wfwaffailures\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:42;a:3:{s:4:\"name\";s:38:\"wpj7_woocommerce_shipping_zone_methods\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}i:43;a:3:{s:4:\"name\";s:31:\"wpj7_woocommerce_shipping_zones\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:44;a:3:{s:4:\"name\";s:11:\"wpj7_wpaicg\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:45;a:3:{s:4:\"name\";s:20:\"wpj7_wpaicg_chatlogs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:46;a:3:{s:4:\"name\";s:22:\"wpj7_wpaicg_chattokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:47;a:3:{s:4:\"name\";s:25:\"wpj7_wpaicg_form_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:48;a:3:{s:4:\"name\";s:21:\"wpj7_wpaicg_form_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:49;a:3:{s:4:\"name\";s:22:\"wpj7_wpaicg_formtokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:50;a:3:{s:4:\"name\";s:22:\"wpj7_wpaicg_image_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:51;a:3:{s:4:\"name\";s:23:\"wpj7_wpaicg_imagetokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:52;a:3:{s:4:\"name\";s:27:\"wpj7_wpaicg_prompt_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:53;a:3:{s:4:\"name\";s:27:\"wpj7_wpaicg_promptbase_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:54;a:3:{s:4:\"name\";s:24:\"wpj7_wpaicg_prompttokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:55;a:3:{s:4:\"name\";s:27:\"wpj7_actionscheduler_claims\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:56;a:3:{s:4:\"name\";s:27:\"wpj7_actionscheduler_groups\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"10\";}i:57;a:3:{s:4:\"name\";s:23:\"wpj7_adfoin_integration\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:58;a:3:{s:4:\"name\";s:15:\"wpj7_adfoin_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:59;a:3:{s:4:\"name\";s:34:\"wpj7_cartflows_ca_cart_abandonment\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:60;a:3:{s:4:\"name\";s:38:\"wpj7_cartflows_ca_email_templates_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"42\";}i:61;a:3:{s:4:\"name\";s:10:\"wpj7_links\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:62;a:3:{s:4:\"name\";s:14:\"wpj7_mainwp_wp\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:63;a:3:{s:4:\"name\";s:30:\"wpj7_mainwp_wp_backup_progress\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:64;a:3:{s:4:\"name\";s:31:\"wpj7_mainwp_wp_clients_contacts\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:65;a:3:{s:4:\"name\";s:35:\"wpj7_mainwp_wp_clients_field_values\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:66;a:3:{s:4:\"name\";s:29:\"wpj7_mainwp_wp_clients_fields\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:67;a:3:{s:4:\"name\";s:22:\"wpj7_mainwp_wp_options\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:68;a:3:{s:4:\"name\";s:30:\"wpj7_mainwp_wp_settings_backup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:69;a:3:{s:4:\"name\";s:19:\"wpj7_mainwp_wp_sync\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:70;a:3:{s:4:\"name\";s:23:\"wpj7_mo_email_campaigns\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:71;a:3:{s:4:\"name\";s:23:\"wpj7_term_relationships\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"3\";}i:72;a:3:{s:4:\"name\";s:28:\"wpj7_trackship_shipment_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}i:73;a:3:{s:4:\"name\";s:24:\"wpj7_wc_gpf_render_cache\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:74;a:3:{s:4:\"name\";s:33:\"wpj7_wc_product_attributes_lookup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:75;a:3:{s:4:\"name\";s:36:\"wpj7_wc_product_download_directories\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}i:76;a:3:{s:4:\"name\";s:19:\"wpj7_wc_rate_limits\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:77;a:3:{s:4:\"name\";s:24:\"wpj7_wc_tax_rate_classes\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}i:78;a:3:{s:4:\"name\";s:16:\"wpj7_wc_webhooks\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"5\";}i:79;a:3:{s:4:\"name\";s:13:\"wpj7_wfhoover\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:80;a:3:{s:4:\"name\";s:23:\"wpj7_wflivetraffichuman\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:81;a:3:{s:4:\"name\";s:21:\"wpj7_wfls_2fa_secrets\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:82;a:3:{s:4:\"name\";s:37:\"wpj7_woocommerce_attribute_taxonomies\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:83;a:3:{s:4:\"name\";s:20:\"wpj7_woocommerce_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:84;a:3:{s:4:\"name\";s:28:\"wpj7_woocommerce_order_items\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:85;a:3:{s:4:\"name\";s:31:\"wpj7_woocommerce_payment_tokens\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:86;a:3:{s:4:\"name\";s:25:\"wpj7_woocommerce_sessions\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"1\";}i:87;a:3:{s:4:\"name\";s:22:\"wpj7_wpaicg_token_logs\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:88;a:3:{s:4:\"name\";s:14:\"wpj7_yith_wcwl\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"80\";}i:89;a:3:{s:4:\"name\";s:21:\"wpj7_yoast_migrations\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"24\";}i:90;a:3:{s:4:\"name\";s:31:\"wpj7_cartflows_ca_email_history\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:91;a:3:{s:4:\"name\";s:16:\"wpj7_commentmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:92;a:3:{s:4:\"name\";s:20:\"wpj7_mainwp_wp_group\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:93;a:3:{s:4:\"name\";s:24:\"wpj7_mainwp_wp_logs_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:94;a:3:{s:4:\"name\";s:23:\"wpj7_mo_optin_campaigns\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:95;a:3:{s:4:\"name\";s:23:\"wpj7_redirection_groups\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"2\";}i:96;a:3:{s:4:\"name\";s:13:\"wpj7_snippets\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"3\";}i:97;a:3:{s:4:\"name\";s:17:\"wpj7_social_users\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:98;a:3:{s:4:\"name\";s:18:\"wpj7_term_taxonomy\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"17\";}i:99;a:3:{s:4:\"name\";s:13:\"wpj7_termmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}i:100;a:3:{s:4:\"name\";s:10:\"wpj7_terms\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"18\";}i:101;a:3:{s:4:\"name\";s:32:\"wpj7_trackship_shipping_provider\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"490\";}i:102;a:3:{s:4:\"name\";s:13:\"wpj7_usermeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"65\";}i:103;a:3:{s:4:\"name\";s:23:\"wpj7_wc_customer_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:104;a:3:{s:4:\"name\";s:20:\"wpj7_wc_download_log\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:105;a:3:{s:4:\"name\";s:27:\"wpj7_wc_order_coupon_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:106;a:3:{s:4:\"name\";s:30:\"wpj7_wc_order_operational_data\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:107;a:3:{s:4:\"name\";s:24:\"wpj7_wc_order_tax_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:108;a:3:{s:4:\"name\";s:19:\"wpj7_wc_orders_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:109;a:3:{s:4:\"name\";s:20:\"wpj7_wfnotifications\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"115\";}i:110;a:3:{s:4:\"name\";s:25:\"wpj7_woocommerce_api_keys\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:111;a:3:{s:4:\"name\";s:31:\"wpj7_woocommerce_order_itemmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:112;a:3:{s:4:\"name\";s:34:\"wpj7_woocommerce_payment_tokenmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:113;a:3:{s:4:\"name\";s:40:\"wpj7_woocommerce_shipping_zone_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}i:114;a:3:{s:4:\"name\";s:35:\"wpj7_woocommerce_tax_rate_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:115;a:3:{s:4:\"name\";s:19:\"wpj7_wpaicg_rsslogs\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:116;a:3:{s:4:\"name\";s:20:\"wpj7_yith_wcwl_lists\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"39\";}i:117;a:3:{s:4:\"name\";s:25:\"wpj7_parcelpanel_tracking\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:118;a:3:{s:4:\"name\";s:31:\"wpj7_parcelpanel_tracking_items\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:119;a:3:{s:4:\"name\";s:20:\"wpj7_redirection_404\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:120;a:3:{s:4:\"name\";s:21:\"wpj7_redirection_logs\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:121;a:3:{s:4:\"name\";s:10:\"wpj7_users\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"1\";}i:122;a:3:{s:4:\"name\";s:19:\"wpj7_wc_order_stats\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:123;a:3:{s:4:\"name\";s:14:\"wpj7_wfblocks7\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:124;a:3:{s:4:\"name\";s:16:\"wpj7_wfsnipcache\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:125;a:3:{s:4:\"name\";s:21:\"wpj7_wpr_rocket_cache\";s:4:\"size\";i:65536;s:4:\"rows\";s:2:\"10\";}i:126;a:3:{s:4:\"name\";s:29:\"wpj7_rank_math_internal_links\";s:4:\"size\";i:81920;s:4:\"rows\";s:3:\"257\";}i:127;a:3:{s:4:\"name\";s:26:\"wpj7_wc_admin_note_actions\";s:4:\"size\";i:81920;s:4:\"rows\";s:3:\"186\";}i:128;a:3:{s:4:\"name\";s:23:\"wpj7_wc_order_addresses\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:129;a:3:{s:4:\"name\";s:28:\"wpj7_wc_order_product_lookup\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:130;a:3:{s:4:\"name\";s:13:\"wpj7_wfissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"2\";}i:131;a:3:{s:4:\"name\";s:20:\"wpj7_wfpendingissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:132;a:3:{s:4:\"name\";s:49:\"wpj7_woocommerce_downloadable_product_permissions\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:133;a:3:{s:4:\"name\";s:26:\"wpj7_woocommerce_tax_rates\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:134;a:3:{s:4:\"name\";s:19:\"wpj7_wc_admin_notes\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"140\";}i:135;a:3:{s:4:\"name\";s:11:\"wpj7_wfhits\";s:4:\"size\";i:98304;s:4:\"rows\";s:2:\"73\";}i:136;a:3:{s:4:\"name\";s:13:\"wpj7_wflogins\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"206\";}i:137;a:3:{s:4:\"name\";s:15:\"wpj7_wpml_mails\";s:4:\"size\";i:98304;s:4:\"rows\";s:2:\"22\";}i:138;a:3:{s:4:\"name\";s:23:\"wpj7_yoast_primary_term\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"456\";}i:139;a:3:{s:4:\"name\";s:13:\"wpj7_comments\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}i:140;a:3:{s:4:\"name\";s:17:\"wpj7_pmxi_imports\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"6\";}i:141;a:3:{s:4:\"name\";s:22:\"wpj7_redirection_items\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}i:142;a:3:{s:4:\"name\";s:27:\"wpj7_wc_product_meta_lookup\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}i:143;a:3:{s:4:\"name\";s:23:\"wpj7_wpr_rucss_used_css\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}i:144;a:3:{s:4:\"name\";s:30:\"wpj7_yoast_indexable_hierarchy\";s:4:\"size\";i:114688;s:4:\"rows\";s:3:\"626\";}i:145;a:3:{s:4:\"name\";s:24:\"wpj7_zorem_email_sms_log\";s:4:\"size\";i:131072;s:4:\"rows\";s:1:\"0\";}i:146;a:3:{s:4:\"name\";s:19:\"wpj7_mainwp_wp_logs\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}i:147;a:3:{s:4:\"name\";s:23:\"wpj7_trackship_shipment\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}i:148;a:3:{s:4:\"name\";s:14:\"wpj7_wc_orders\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}i:149;a:3:{s:4:\"name\";s:27:\"wpj7_woo_shippment_provider\";s:4:\"size\";i:147456;s:4:\"rows\";s:3:\"817\";}i:150;a:3:{s:4:\"name\";s:19:\"wpj7_pmxi_templates\";s:4:\"size\";i:180224;s:4:\"rows\";s:1:\"5\";}i:151;a:3:{s:4:\"name\";s:20:\"wpj7_yoast_seo_links\";s:4:\"size\";i:278528;s:4:\"rows\";s:3:\"847\";}i:152;a:3:{s:4:\"name\";s:22:\"wpj7_mainwp_action_log\";s:4:\"size\";i:294912;s:4:\"rows\";s:1:\"5\";}i:153;a:3:{s:4:\"name\";s:24:\"wpj7_parcelpanel_courier\";s:4:\"size\";i:327680;s:4:\"rows\";s:4:\"1187\";}i:154;a:3:{s:4:\"name\";s:21:\"wpj7_pmxe_google_cats\";s:4:\"size\";i:409600;s:4:\"rows\";s:4:\"5512\";}i:155;a:3:{s:4:\"name\";s:13:\"wpj7_wfstatus\";s:4:\"size\";i:425984;s:4:\"rows\";s:3:\"941\";}i:156;a:3:{s:4:\"name\";s:13:\"wpj7_postmeta\";s:4:\"size\";i:1114112;s:4:\"rows\";s:3:\"297\";}i:157;a:3:{s:4:\"name\";s:13:\"wpj7_wfconfig\";s:4:\"size\";i:1523712;s:4:\"rows\";s:3:\"270\";}i:158;a:3:{s:4:\"name\";s:17:\"wpj7_pmxe_exports\";s:4:\"size\";i:1589248;s:4:\"rows\";s:1:\"4\";}i:159;a:3:{s:4:\"name\";s:20:\"wpj7_yoast_indexable\";s:4:\"size\";i:1835008;s:4:\"rows\";s:3:\"596\";}i:160;a:3:{s:4:\"name\";s:36:\"wpj7_woocommerce_gpf_google_taxonomy\";s:4:\"size\";i:2260992;s:4:\"rows\";s:4:\"5688\";}i:161;a:3:{s:4:\"name\";s:28:\"wpj7_actionscheduler_actions\";s:4:\"size\";i:3670016;s:4:\"rows\";s:4:\"1615\";}i:162;a:3:{s:4:\"name\";s:25:\"wpj7_actionscheduler_logs\";s:4:\"size\";i:4308992;s:4:\"rows\";s:4:\"4829\";}i:163;a:3:{s:4:\"name\";s:12:\"wpj7_options\";s:4:\"size\";i:6504448;s:4:\"rows\";s:4:\"1301\";}i:164;a:3:{s:4:\"name\";s:10:\"wpj7_posts\";s:4:\"size\";i:7913472;s:4:\"rows\";s:3:\"356\";}i:165;a:3:{s:4:\"name\";s:20:\"wpj7_wfknownfilelist\";s:4:\"size\";i:8929280;s:4:\"rows\";s:5:\"32081\";}i:166;a:3:{s:4:\"name\";s:15:\"wpj7_wffilemods\";s:4:\"size\";i:18399232;s:4:\"rows\";s:5:\"29803\";}}s:7:\"dump_db\";i:1;s:9:\"file_type\";s:9:\"databases\";s:8:\"home_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:9:\"root_flag\";s:6:\"custom\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:14:\"find_zero_date\";i:1;s:4:\"file\";s:86:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_db.part001.zip\";}s:82:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_themes.zip\";a:7:{s:9:\"file_type\";s:6:\"themes\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:6:\"themes\";a:2:{s:14:\"flatsome-child\";a:1:{s:4:\"slug\";s:14:\"flatsome-child\";}s:8:\"flatsome\";a:1:{s:4:\"slug\";s:8:\"flatsome\";}}s:4:\"file\";s:90:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_themes.part001.zip\";}s:82:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_plugin.zip\";a:7:{s:9:\"file_type\";s:6:\"plugin\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:6:\"plugin\";a:44:{s:42:\"wc-abandoned-carts-by-small-fish-analytics\";a:1:{s:4:\"slug\";s:42:\"wc-abandoned-carts-by-small-fish-analytics\";}s:22:\"advanced-custom-fields\";a:1:{s:4:\"slug\";s:22:\"advanced-custom-fields\";}s:7:\"ast-pro\";a:1:{s:4:\"slug\";s:7:\"ast-pro\";}s:33:\"gpt3-ai-content-generator-premium\";a:1:{s:4:\"slug\";s:33:\"gpt3-ai-content-generator-premium\";}s:14:\"classic-editor\";a:1:{s:4:\"slug\";s:14:\"classic-editor\";}s:13:\"code-snippets\";a:1:{s:4:\"slug\";s:13:\"code-snippets\";}s:11:\"coming-soon\";a:1:{s:4:\"slug\";s:11:\"coming-soon\";}s:14:\"contact-form-7\";a:1:{s:4:\"slug\";s:14:\"contact-form-7\";}s:24:\"webp-converter-for-media\";a:1:{s:4:\"slug\";s:24:\"webp-converter-for-media\";}s:31:\"duracelltomi-google-tag-manager\";a:1:{s:4:\"slug\";s:31:\"duracelltomi-google-tag-manager\";}s:34:\"jwt-authentication-for-wp-rest-api\";a:1:{s:4:\"slug\";s:34:\"jwt-authentication-for-wp-rest-api\";}s:14:\"loco-translate\";a:1:{s:4:\"slug\";s:14:\"loco-translate\";}s:9:\"mailoptin\";a:1:{s:4:\"slug\";s:9:\"mailoptin\";}s:12:\"mainwp-child\";a:1:{s:4:\"slug\";s:12:\"mainwp-child\";}s:22:\"media-file-renamer-pro\";a:1:{s:4:\"slug\";s:22:\"media-file-renamer-pro\";}s:7:\"members\";a:1:{s:4:\"slug\";s:7:\"members\";}s:12:\"o2s-wp-tiger\";a:1:{s:4:\"slug\";s:12:\"o2s-wp-tiger\";}s:11:\"parcelpanel\";a:1:{s:4:\"slug\";s:11:\"parcelpanel\";}s:38:\"woocommerce-pdf-invoices-packing-slips\";a:1:{s:4:\"slug\";s:38:\"woocommerce-pdf-invoices-packing-slips\";}s:26:\"product-size-chart-for-woo\";a:1:{s:4:\"slug\";s:26:\"product-size-chart-for-woo\";}s:16:\"seo-by-rank-math\";a:1:{s:4:\"slug\";s:16:\"seo-by-rank-math\";}s:11:\"redirection\";a:1:{s:4:\"slug\";s:11:\"redirection\";}s:19:\"shortcodes-ultimate\";a:1:{s:4:\"slug\";s:19:\"shortcodes-ultimate\";}s:15:\"google-site-kit\";a:1:{s:4:\"slug\";s:15:\"google-site-kit\";}s:11:\"svg-support\";a:1:{s:4:\"slug\";s:11:\"svg-support\";}s:22:\"woo-variation-swatches\";a:1:{s:4:\"slug\";s:22:\"woo-variation-swatches\";}s:11:\"woocommerce\";a:1:{s:4:\"slug\";s:11:\"woocommerce\";}s:34:\"woocommerce-advanced-free-shipping\";a:1:{s:4:\"slug\";s:34:\"woocommerce-advanced-free-shipping\";}s:29:\"woo-cart-abandonment-recovery\";a:1:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";}s:25:\"woocommerce-product-feeds\";a:1:{s:4:\"slug\";s:25:\"woocommerce-product-feeds\";}s:27:\"woocommerce-paypal-payments\";a:1:{s:4:\"slug\";s:27:\"woocommerce-paypal-payments\";}s:26:\"woocommerce-gateway-stripe\";a:1:{s:4:\"slug\";s:26:\"woocommerce-gateway-stripe\";}s:9:\"wordfence\";a:1:{s:4:\"slug\";s:9:\"wordfence\";}s:15:\"wpae-acf-add-on\";a:1:{s:4:\"slug\";s:15:\"wpae-acf-add-on\";}s:23:\"wpae-woocommerce-add-on\";a:1:{s:4:\"slug\";s:23:\"wpae-woocommerce-add-on\";}s:17:\"wp-all-export-pro\";a:1:{s:4:\"slug\";s:17:\"wp-all-export-pro\";}s:15:\"wpai-acf-add-on\";a:1:{s:4:\"slug\";s:15:\"wpai-acf-add-on\";}s:23:\"wpai-woocommerce-add-on\";a:1:{s:4:\"slug\";s:23:\"wpai-woocommerce-add-on\";}s:17:\"wp-all-import-pro\";a:1:{s:4:\"slug\";s:17:\"wp-all-import-pro\";}s:15:\"wp-mail-logging\";a:1:{s:4:\"slug\";s:15:\"wp-mail-logging\";}s:9:\"wp-rocket\";a:1:{s:4:\"slug\";s:9:\"wp-rocket\";}s:23:\"wp-sheet-editor-premium\";a:1:{s:4:\"slug\";s:23:\"wp-sheet-editor-premium\";}s:33:\"bulk-edit-categories-tags-premium\";a:1:{s:4:\"slug\";s:33:\"bulk-edit-categories-tags-premium\";}s:32:\"woo-products-bulk-editor-premium\";a:1:{s:4:\"slug\";s:32:\"woo-products-bulk-editor-premium\";}}s:4:\"file\";s:90:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_plugin.part001.zip\";}s:83:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_uploads.zip\";a:6:{s:9:\"file_type\";s:6:\"upload\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:4:\"file\";s:91:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_uploads.part001.zip\";}s:83:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_content.zip\";a:6:{s:9:\"file_type\";s:10:\"wp-content\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:4:\"file\";s:91:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_content.part001.zip\";}s:80:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_core.zip\";a:6:{s:9:\"file_type\";s:7:\"wp-core\";s:12:\"include_path\";a:2:{i:0;s:11:\"wp-includes\";i:1;s:8:\"wp-admin\";}s:7:\"wp_core\";i:1;s:9:\"root_flag\";s:4:\"root\";s:8:\"home_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:4:\"file\";s:88:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_core.part001.zip\";}}s:5:\"index\";i:6;s:8:\"zip_file\";a:1:{s:79:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_all.zip\";a:2:{s:8:\"filename\";s:79:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_all.zip\";s:8:\"finished\";i:1;}}}}s:12:\"dump_setting\";a:14:{s:8:\"database\";s:14:\"cach0166_wp840\";s:4:\"host\";s:9:\"localhost\";s:4:\"user\";s:14:\"cach0166_wp840\";s:4:\"pass\";s:10:\"]SXQ-7pe45\";s:8:\"site_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:8:\"home_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:11:\"content_url\";s:44:\"https://www.nl.ecom-expansion.com/wp-content\";s:6:\"prefix\";s:5:\"wpj7_\";s:17:\"db_connect_method\";s:4:\"wpdb\";s:11:\"file_prefix\";s:64:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12\";s:4:\"path\";s:62:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups\";s:13:\"max_file_size\";i:209715200;s:14:\"exclude-tables\";a:6:{i:0;s:16:\"wpj7_wpvivid_log\";i:1;s:30:\"wpj7_wpvivid_increment_big_ids\";i:2;s:20:\"wpj7_wpvivid_options\";i:3;s:24:\"wpj7_wpvivid_record_task\";i:4;s:21:\"wpj7_wpvivid_merge_db\";i:5;s:22:\"wpj7_wpvivid_merge_ids\";}s:14:\"include-tables\";a:0:{}}}','no'),(291263,'wpvivid_user_history','a:0:{}','no'),(291264,'wpvivid_backup_list','a:1:{s:21:\"wpvivid-65931ccb76c26\";a:11:{s:4:\"type\";s:6:\"Manual\";s:11:\"create_time\";i:1704139980;s:13:\"manual_delete\";i:0;s:5:\"local\";a:1:{s:4:\"path\";s:14:\"wpvividbackups\";}s:8:\"compress\";a:1:{s:13:\"compress_type\";s:3:\"zip\";}s:10:\"save_local\";i:1;s:13:\"backup_prefix\";s:25:\"www.nl.ecom-expansion.com\";s:3:\"log\";s:111:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups/wpvivid_log/wpvivid-65931ccb76c26_backup_log.txt\";s:6:\"backup\";a:2:{s:6:\"result\";s:7:\"success\";s:5:\"files\";a:1:{i:0;a:2:{s:9:\"file_name\";s:79:\"www.nl.ecom-expansion.com_wpvivid-65931ccb76c26_2024-01-01-21-12_backup_all.zip\";s:4:\"size\";i:159721162;}}}s:6:\"remote\";a:0:{}s:4:\"lock\";s:1:\"0\";}}','no'),(291265,'wpvivid_need_review','not','no'),(291266,'cron_backup_count','a:0:{}','no'),(291267,'wpvivid_review_msg','a:0:{}','no'),(291272,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.4.2\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(291294,'mwp_key_last_used_fe890fdc-bb69-4d91-ac27-bc1f4c0e56f4','1700176183','yes'),(291298,'mwp_key_last_used_13194377','1700751212','yes'),(291396,'woocommerce_attribute_lookup_enabled','yes','yes'),(291593,'category_children','a:0:{}','yes'),(291742,'woocommerce_stripe_ideal_settings','a:7:{s:10:\"geo_target\";s:0:\"\";s:5:\"guide\";s:0:\"\";s:10:\"activation\";s:0:\"\";s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:5:\"iDEAL\";s:11:\"description\";s:33:\"Je wordt doorgestuurd naar iDEAL.\";s:7:\"webhook\";s:0:\"\";}','yes'),(291744,'woocommerce_stripe_bancontact_settings','a:7:{s:10:\"geo_target\";s:0:\"\";s:5:\"guide\";s:0:\"\";s:10:\"activation\";s:0:\"\";s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:10:\"Bancontact\";s:11:\"description\";s:38:\"Je wordt doorgestuurd naar Bancontact.\";s:7:\"webhook\";s:0:\"\";}','yes'),(291756,'woocommerce-ppcp-version','2.4.2','yes'),(291776,'woocommerce-ppcp-settings','a:59:{s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:19:\"Betalen via PayPal.\";s:22:\"smart_button_locations\";a:1:{i:0;s:8:\"checkout\";}s:40:\"smart_button_enable_styling_per_location\";b:1;s:27:\"pay_later_messaging_enabled\";b:0;s:24:\"pay_later_button_enabled\";b:1;s:26:\"pay_later_button_locations\";a:5:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";i:3;s:4:\"shop\";i:4;s:4:\"home\";}s:29:\"pay_later_messaging_locations\";a:5:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";i:3;s:4:\"shop\";i:4;s:4:\"home\";}s:10:\"brand_name\";s:9:\"Teng Shop\";s:17:\"dcc_gateway_title\";s:20:\"Debit & Credit Cards\";s:23:\"dcc_gateway_description\";s:26:\"Pay with your credit card.\";s:10:\"sandbox_on\";b:0;s:20:\"products_dcc_enabled\";b:0;s:20:\"products_pui_enabled\";b:0;s:24:\"client_secret_production\";s:80:\"EKFvv3qZBGMwBUxRcsCE9tRULPPJNusK8fIVPTesXDfSCuErqq64XWqdMqZ_aJBYW3FOFaM05X4f5jrB\";s:20:\"client_id_production\";s:80:\"AQTGuU1gSGqSpM60v27R4NsbOkzw5pwLIpj81S6_6jQszTcT2-GvPc46aBrQS0L6hjps8uMxKxRsbTfD\";s:13:\"client_secret\";s:80:\"EKFvv3qZBGMwBUxRcsCE9tRULPPJNusK8fIVPTesXDfSCuErqq64XWqdMqZ_aJBYW3FOFaM05X4f5jrB\";s:9:\"client_id\";s:80:\"AQTGuU1gSGqSpM60v27R4NsbOkzw5pwLIpj81S6_6jQszTcT2-GvPc46aBrQS0L6hjps8uMxKxRsbTfD\";s:15:\"disable_funding\";a:1:{i:0;s:4:\"card\";}s:11:\"merchant_id\";s:13:\"8DD3MT5SDDZBW\";s:14:\"merchant_email\";s:26:\"contact@ecom-expansion.com\";s:22:\"merchant_id_production\";s:13:\"8DD3MT5SDDZBW\";s:25:\"merchant_email_production\";s:26:\"contact@ecom-expansion.com\";s:6:\"intent\";s:7:\"capture\";s:24:\"capture_on_status_change\";b:0;s:24:\"capture_for_virtual_only\";b:0;s:15:\"payee_preferred\";b:0;s:12:\"landing_page\";s:5:\"LOGIN\";s:22:\"card_billing_data_mode\";s:13:\"minimal_input\";s:25:\"allow_card_button_gateway\";b:1;s:27:\"blocks_final_review_enabled\";b:1;s:21:\"smart_button_language\";s:0:\"\";s:21:\"button_general_layout\";s:8:\"vertical\";s:22:\"button_general_tagline\";b:0;s:20:\"button_general_label\";s:6:\"paypal\";s:20:\"button_general_color\";s:4:\"gold\";s:20:\"button_general_shape\";s:4:\"rect\";s:13:\"button_layout\";s:8:\"vertical\";s:14:\"button_tagline\";b:0;s:12:\"button_label\";s:6:\"paypal\";s:12:\"button_color\";s:4:\"gold\";s:12:\"button_shape\";s:4:\"rect\";s:21:\"button_product_layout\";s:10:\"horizontal\";s:22:\"button_product_tagline\";b:0;s:20:\"button_product_label\";s:6:\"paypal\";s:20:\"button_product_color\";s:4:\"gold\";s:20:\"button_product_shape\";s:4:\"rect\";s:18:\"button_cart_layout\";s:10:\"horizontal\";s:19:\"button_cart_tagline\";b:0;s:17:\"button_cart_label\";s:6:\"paypal\";s:17:\"button_cart_color\";s:4:\"gold\";s:17:\"button_cart_shape\";s:4:\"rect\";s:23:\"button_mini-cart_layout\";s:8:\"vertical\";s:24:\"button_mini-cart_tagline\";b:0;s:22:\"button_mini-cart_label\";s:6:\"paypal\";s:22:\"button_mini-cart_color\";s:4:\"gold\";s:22:\"button_mini-cart_shape\";s:4:\"rect\";s:23:\"button_mini-cart_height\";s:2:\"35\";s:7:\"enabled\";b:1;}','yes'),(291823,'woocommerce_ppcp-gateway_settings','a:2:{s:7:\"enabled\";s:3:\"yes\";s:4:\"ppcp\";s:0:\"\";}','yes'),(291861,'_transient_ppcp-paypal-bearerppcp-bearer','{\"scope\":\"https:\\/\\/uri.paypal.com\\/services\\/checkout\\/one-click-with-merchant-issued-token https:\\/\\/uri.paypal.com\\/services\\/payments\\/futurepayments https:\\/\\/uri.paypal.com\\/services\\/invoicing https:\\/\\/uri.paypal.com\\/services\\/vault\\/payment-tokens\\/read https:\\/\\/uri.paypal.com\\/services\\/disputes\\/read-buyer https:\\/\\/uri.paypal.com\\/services\\/payments\\/realtimepayment https:\\/\\/uri.paypal.com\\/services\\/disputes\\/update-seller https:\\/\\/uri.paypal.com\\/services\\/payments\\/payment\\/authcapture openid https:\\/\\/uri.paypal.com\\/services\\/disputes\\/read-seller Braintree:Vault https:\\/\\/uri.paypal.com\\/services\\/payments\\/refund https:\\/\\/api.paypal.com\\/v1\\/vault\\/credit-card https:\\/\\/api.paypal.com\\/v1\\/payments\\/.* https:\\/\\/uri.paypal.com\\/services\\/reporting\\/search\\/read https:\\/\\/uri.paypal.com\\/services\\/payments\\/initiatepayment https:\\/\\/uri.paypal.com\\/payments\\/payouts https:\\/\\/uri.paypal.com\\/services\\/vault\\/payment-tokens\\/readwrite https:\\/\\/api.paypal.com\\/v1\\/vault\\/credit-card\\/.* https:\\/\\/uri.paypal.com\\/services\\/shipping\\/trackers\\/readwrite https:\\/\\/uri.paypal.com\\/services\\/subscriptions https:\\/\\/uri.paypal.com\\/services\\/applications\\/webhooks\",\"access_token\":\"A21AAOY_u0gr7_LgAhZZnN40ly4c4Hwz2IKkc8LjesnPNCe0HJ-VUma4y5aNr9gxpLWYylu0QRE-p29Ci8merSFTmgOAucPZQ\",\"token_type\":\"Bearer\",\"app_id\":\"APP-975476464N830202K\",\"expires_in\":32400,\"nonce\":\"2023-12-05T00:00:56ZqOnMJKVEntNIbM2cfa3y9eq5o6_ze5A0-ebhi3eORvs\",\"token\":\"A21AAOY_u0gr7_LgAhZZnN40ly4c4Hwz2IKkc8LjesnPNCe0HJ-VUma4y5aNr9gxpLWYylu0QRE-p29Ci8merSFTmgOAucPZQ\",\"created\":1701734455}','yes'),(291866,'woocommerce_ppcp-card-button-gateway_settings','a:4:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:24:\"Debit &amp; Credit Cards\";s:11:\"description\";s:0:\"\";s:4:\"ppcp\";s:0:\"\";}','yes'),(292140,'mainwp_child_connected_admin','thecarnemeat234','yes'),(292141,'mainwp_child_pubkey','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUFxN2xiS0tjWXQ4T3hnTm1DS0FQOQpxb1BKSnoySkhQOVRmd0paMnFJeGVvNEJUdm8zZDFabzJnTG8rVkF6ZDBibHduekpNT2d2VFIraXh0MHBCTWc3Cm1EeFlraDRsUWxHaG8rRmxIL0pSU2JyY1RpV2lPRXE4Q0RML1VyR0JSbkVNWmJzcWh3dkNWbzZDazdGTFJCOWQKVEZUMm5aWktDN1V4WVJjZ1E4R3dDNHlhNFhxOHppVmx1dlRpRWxJaW53eTVSZ1RKRkpPUE1mMGZROU1jQlB0Ugp3dVZhUkpVYmZjMktwY0FOaTl3SDVTL3gwYnRxMXhicUxlK3U4enpnMjQvS1EyVURBY0NIZkxzVjdPTE5kTk40ClVmUXRwT2RnT2poRnROK1MxZE0rTHBaUjFnNXgxYnJSLzBydEpXdG8zZjUrYXEzejdLSTVqb3Y1S0EvakVKT3YKVHdJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(292142,'mainwp_child_server','X6HysGb0J5EEZZrqcZoJDrJ0b1pxH9cZ/7uoLzQTjiVQjLlG+0MFjb4fValHM76hYQUP83PQ/amStNro/SQzP89qkg34prpt','no'),(292153,'mainwp_child_openssl_sign_algo','7','yes'),(292345,'mainwp_security','a:5:{s:10:\"wp_version\";b:1;s:3:\"rsd\";b:1;s:3:\"wlw\";b:1;s:13:\"php_reporting\";b:1;s:6:\"readme\";b:1;}','yes'),(292377,'jwt_auth_admin_notice','1','yes'),(292496,'product_cat_children','a:0:{}','yes'),(293600,'mainwp_child_uniqueId','','no'),(293850,'mwp_key_last_used_a2af20e7-a6a8-4091-9d9d-087fef61cca9','1700751078','yes'),(293851,'mwp_potential_key','5818761a-55e8-4cb8-8c64-6988a8554672','yes'),(293852,'mwp_potential_key_time','1700751089','yes'),(294606,'woocommerce_ppcp-is_pay_later_settings_migrated','1','yes'),(294607,'woocommerce_ppcp-is_smart_button_settings_migrated','1','yes'),(294612,'ppcp-webhook','a:3:{s:3:\"url\";s:60:\"https://www.nl.ecom-expansion.com/wp-json/paypal/v1/incoming\";s:11:\"event_types\";a:18:{i:0;O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"CHECKOUT.ORDER.APPROVED\";s:11:\"description\";s:36:\"An order has been approved by buyer.\";}i:1;O:8:\"stdClass\":2:{s:4:\"name\";s:24:\"CHECKOUT.ORDER.COMPLETED\";s:11:\"description\";s:70:\"Webhook event emitted after all the purchase_units have been processed\";}i:2;O:8:\"stdClass\":2:{s:4:\"name\";s:34:\"CHECKOUT.PAYMENT-APPROVAL.REVERSED\";s:11:\"description\";s:35:\"Payment approval has been reversed.\";}i:3;O:8:\"stdClass\":2:{s:4:\"name\";s:24:\"PAYMENT.CAPTURE.REFUNDED\";s:11:\"description\";s:37:\"A merchant refunds a payment capture.\";}i:4;O:8:\"stdClass\":2:{s:4:\"name\";s:28:\"PAYMENT.AUTHORIZATION.VOIDED\";s:11:\"description\";s:34:\"A payment authorization is voided.\";}i:5;O:8:\"stdClass\":2:{s:4:\"name\";s:24:\"PAYMENT.CAPTURE.REVERSED\";s:11:\"description\";s:34:\"PayPal reverses a payment capture.\";}i:6;O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"PAYMENT.ORDER.CANCELLED\";s:11:\"description\";s:28:\"A payment order is canceled.\";}i:7;O:8:\"stdClass\":2:{s:4:\"name\";s:22:\"PAYMENT.CAPTURE.DENIED\";s:11:\"description\";s:28:\"A payment capture is denied.\";}i:8;O:8:\"stdClass\":2:{s:4:\"name\";s:25:\"PAYMENT.CAPTURE.COMPLETED\";s:11:\"description\";s:28:\"A payment capture completes.\";}i:9;O:8:\"stdClass\":2:{s:4:\"name\";s:27:\"VAULT.PAYMENT-TOKEN.CREATED\";s:11:\"description\";s:65:\"This webhook is triggered after a Payment Token has been created.\";}i:10;O:8:\"stdClass\":2:{s:4:\"name\";s:27:\"VAULT.PAYMENT-TOKEN.DELETED\";s:11:\"description\";s:68:\"This webhook is triggered on successful deletion of a payment token.\";}i:11;O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"PAYMENT.CAPTURE.PENDING\";s:11:\"description\";s:50:\"The state of a payment capture changes to pending.\";}i:12;O:8:\"stdClass\":2:{s:4:\"name\";s:22:\"PAYMENT.SALE.COMPLETED\";s:11:\"description\";s:17:\"A sale completes.\";}i:13;O:8:\"stdClass\":2:{s:4:\"name\";s:21:\"PAYMENT.SALE.REFUNDED\";s:11:\"description\";s:26:\"A merchant refunds a sale.\";}i:14;O:8:\"stdClass\":2:{s:4:\"name\";s:30:\"BILLING.SUBSCRIPTION.CANCELLED\";s:11:\"description\";s:32:\"A billing agreement is canceled.\";}i:15;O:8:\"stdClass\":2:{s:4:\"name\";s:37:\"BILLING.PLAN.PRICING-CHANGE.ACTIVATED\";s:11:\"description\";s:43:\"A billing plan pricing change is activated.\";}i:16;O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"CATALOG.PRODUCT.UPDATED\";s:11:\"description\";s:15:\"Product updated\";}i:17;O:8:\"stdClass\":2:{s:4:\"name\";s:20:\"BILLING.PLAN.UPDATED\";s:11:\"description\";s:26:\"A billing plan is updated.\";}}s:2:\"id\";s:17:\"7D908494G3809022M\";}','yes'),(294960,'perfmatters_options','a:26:{s:14:\"disable_xmlrpc\";s:1:\"1\";s:21:\"remove_jquery_migrate\";s:1:\"1\";s:15:\"hide_wp_version\";s:1:\"1\";s:23:\"remove_wlwmanifest_link\";s:1:\"1\";s:15:\"remove_rsd_link\";s:1:\"1\";s:16:\"remove_shortlink\";s:1:\"1\";s:22:\"disable_self_pingbacks\";s:1:\"1\";s:16:\"disable_rest_api\";s:0:\"\";s:19:\"disable_google_maps\";s:1:\"1\";s:30:\"disable_google_maps_exclusions\";s:0:\"\";s:16:\"disable_comments\";s:1:\"1\";s:20:\"remove_global_styles\";s:1:\"1\";s:17:\"disable_heartbeat\";s:0:\"\";s:19:\"heartbeat_frequency\";s:0:\"\";s:20:\"limit_post_revisions\";s:0:\"\";s:17:\"autosave_interval\";s:3:\"180\";s:9:\"login_url\";s:0:\"\";s:18:\"login_url_behavior\";s:0:\"\";s:17:\"login_url_message\";s:0:\"\";s:18:\"login_url_redirect\";s:0:\"\";s:6:\"assets\";a:14:{s:13:\"js_exclusions\";s:0:\"\";s:8:\"delay_js\";s:1:\"1\";s:17:\"delay_js_behavior\";s:0:\"\";s:19:\"delay_js_inclusions\";s:0:\"\";s:19:\"delay_js_exclusions\";s:0:\"\";s:17:\"remove_unused_css\";s:1:\"1\";s:12:\"rucss_method\";s:0:\"\";s:25:\"rucss_stylesheet_behavior\";s:0:\"\";s:26:\"rucss_excluded_stylesheets\";s:0:\"\";s:24:\"rucss_excluded_selectors\";s:0:\"\";s:13:\"rucss_cdn_url\";s:0:\"\";s:11:\"header_code\";s:0:\"\";s:9:\"body_code\";s:0:\"\";s:11:\"footer_code\";s:0:\"\";}s:7:\"preload\";a:6:{s:12:\"instant_page\";s:1:\"1\";s:15:\"critical_images\";s:0:\"\";s:7:\"preload\";a:0:{}s:14:\"fetch_priority\";a:0:{}s:10:\"preconnect\";a:0:{}s:12:\"dns_prefetch\";s:0:\"\";}s:8:\"lazyload\";a:5:{s:22:\"exclude_leading_images\";s:0:\"\";s:23:\"lazy_loading_exclusions\";s:0:\"\";s:30:\"lazy_loading_parent_exclusions\";s:0:\"\";s:9:\"threshold\";s:0:\"\";s:24:\"css_background_selectors\";s:0:\"\";}s:5:\"fonts\";a:1:{s:7:\"cdn_url\";s:0:\"\";}s:3:\"cdn\";a:3:{s:7:\"cdn_url\";s:0:\"\";s:15:\"cdn_directories\";s:0:\"\";s:14:\"cdn_exclusions\";s:0:\"\";}s:9:\"analytics\";a:6:{s:11:\"tracking_id\";s:0:\"\";s:22:\"tracking_code_position\";s:0:\"\";s:11:\"script_type\";s:0:\"\";s:20:\"adjusted_bounce_rate\";s:0:\"\";s:7:\"cdn_url\";s:0:\"\";s:14:\"measurement_id\";s:0:\"\";}}','yes'),(294961,'perfmatters_tools','a:1:{s:8:\"database\";a:1:{s:17:\"optimize_schedule\";s:0:\"\";}}','yes'),(294962,'perfmatters_version','2.2.0','no'),(294974,'edd_sl_73499b5e164c73711a5f2eb6801dfa83','a:2:{s:7:\"timeout\";i:1701975816;s:5:\"value\";s:156142:\"{\"new_version\":\"2.2.0\",\"stable_version\":\"2.2.0\",\"name\":\"perfmatters\",\"slug\":\"perfmatters\",\"url\":\"https:\\/\\/perfmatters.io\\/downloads\\/perfmatters\\/?changelog=1\",\"last_updated\":\"2023-11-22 16:27:49\",\"homepage\":\"https:\\/\\/perfmatters.io\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"<p><a href=\\\"https:\\/\\/perfmatters.io\\/\\\">Perfmatters<\\/a> is a lightweight web performance plugin designed to help increase Google Core Web Vitals scores and fine-tune how assets load on your site.<\\/p>\\n<h4> Features <\\/h4>\\n<ul>\\n<li>Easy quick toggle options to turn off resources that shouldn\'t be loading. <\\/li>\\n<li>Disable scripts and plugins on a per post\\/page or sitewide basis with the Script Manager. <\\/li>\\n<li>Defer and delay JavaScript, including third-party scripts.<\\/li>\\n<li>Automatically remove unused CSS.<\\/li>\\n<li>Preload resources, critical images, and prefetch links for quicker load times.<\\/li>\\n<li>Lazy load images and enable click-to-play thumbnails on videos.<\\/li>\\n<li>Host Google Analytics and Google Fonts locally.<\\/li>\\n<li>Change your WordPress login URL. <\\/li>\\n<li>Disable and limit WordPress revisions.<\\/li>\\n<li>Add code to your header, body, and footer.<\\/li>\\n<li>Optimize your database.<\\/li>\\n<\\/ul>\\n<h4> Documentation <\\/h4>\\n<p>Check out our <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/\\\">documentation<\\/a> for more information on how to use Perfmatters.<\\/p>\",\"changelog\":\"<p>2.2.0 - 11.22.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusion and REST route exception for WS Form.<\\/li>\\n<li>Adjusted built-in WooCommerce stylesheet exclusions for better compatibility.<\\/li>\\n<li>Updated instant.page and FastClick script names for ad blocker compatibility.<\\/li>\\n<li>Fixed a PHP 8.2 deprecated warning coming from the CSS class.<\\/li>\\n<li>Fixed a Script Manager CSS issue where certain disable controls weren\'t hiding correctly in some cases.<\\/li>\\n<li>Removed unnecessary .git directory from background processor library folder.<\\/li>\\n<li>Script Manager security updates to fix XSS vulnerability.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.9 - 11.09.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusions for Presto Player, Raptive Ads, Slickstream, and WP Recipe Maker.<\\/li>\\n<li>Added new WP-CLI command to clear used CSS with multisite support.<\\/li>\\n<li>Added support for Google Material Symbols and Icons to local font feature.<\\/li>\\n<li>Added support for excluding by no-lazy class to CSS Background Images.<\\/li>\\n<li>Added support for lazy loading the poster attribute when set for a video tag.<\\/li>\\n<li>Made adjustments to CSS class to allow for stylesheet\'s to be excluded by any portion of their attribute string.<\\/li>\\n<li>Made some styling improvements to the YouTube preview thumbnail play button on hover.<\\/li>\\n<li>Fixed an issue where delayed stylesheets would be loaded in twice if individual JS delay was also being used.<\\/li>\\n<li>Updated Google Analytics 4 minimal script to version 1.10.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.8 - 10.13.2023<\\/p>\\n<ul>\\n<li>Fixed a compatibility issue with local fonts and WordPress 6.3.2 that was causing an error when new font files were requested.<\\/li>\\n<\\/ul>\\n<p>2.1.7 - 09.29.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusion for WP Forms.<\\/li>\\n<li>Script Manager style updates to match some recent changes to the main settings UI.<\\/li>\\n<li>Script Manager security updates to form submission handling.<\\/li>\\n<li>Added logic to strip whitespace from input row text fields used for preloads, preconnects, and fetch priority options.<\\/li>\\n<li>Adjusted CDN Regex slightly to account for certain subdirectory formats.<\\/li>\\n<li>Added specification to lazyload exclusion to only skip the fetchpriority attribute when set to high.<\\/li>\\n<li>Added Cornerstone request parameter to excluded page builders array.<\\/li>\\n<li>Updated certain AJAX action names to be specific to Perfmatters to prevent conflicts.<\\/li>\\n<li>Updated missing image dimension function to better handle images that have been prepped by lazy loaders outside of Perfmatters.<\\/li>\\n<li>Added Novashare discount link to plugin settings UI for Perfmatters customers.<\\/li>\\n<li>Fixed an issue where the database optimization process would not run correctly if selected toggles were not saved first.<\\/li>\\n<li>Fixed an issue in MU Mode where core cookie constants were not set in a specific instance when checking for the current post ID.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.6 - 08.31.2023<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing CodeMirror input fields from saving correctly.<\\/li>\\n<\\/ul>\\n<p>2.1.5 - 08.30.2023<\\/p>\\n<ul>\\n<li>Reworked the majority of the UI to use WordPress AJAX to save data and perform plugin actions.<\\/li>\\n<li>Renamed Bricks Delay JS quick exclusion, as it can be used to target more than just their slider.<\\/li>\\n<li>Adjusted clean_html utility function regex to better handle large inline data scripts.<\\/li>\\n<li>Added skip-lazy class to built-in lazy loading exclusions.<\\/li>\\n<li>Added right-to-left admin styles for better usability on RTL sites.<\\/li>\\n<li>Fixed an issue where certain HTML characters would not print correctly when saved in a fetch priority selector input field.<\\/li>\\n<li>Fixed an issue where fetch priority selectors would sometimes not get the correct priority applied when set to low.<\\/li>\\n<li>Fixed a typo in the fetch priority tooltip.<\\/li>\\n<li>Updated background processing library to version 1.1.1.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.4 - 08.08.2023<\\/p>\\n<ul>\\n<li>Added new preload option to add the <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/fetch-priority\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Fetch Priority<\\/a> attribute to different resources on the site to help improve LCP.<\\/li>\\n<li>Added built-in lazy loading exclusion for fetchpriority attribute.<\\/li>\\n<li>Added Delay JS quick exclusion for Termageddon + Usercentrics.<\\/li>\\n<li>Switched individual JS delay to use the same inline script as delay all to take advantage of delayed triggering of event listeners.<\\/li>\\n<li>Fixed an issue where an empty notice was appearing when a database optimization process completed.<\\/li>\\n<li>Fixed an issue with critical image preloads where an image with an empty src attribute would prevent other similar ones from being added on the same URL.<\\/li>\\n<li>UI improvements to input row sections.<\\/li>\\n<\\/ul>\\n<p>2.1.3 - 07.02.2023<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing existing Script Manager settings from showing up in certain instances.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.2 - 06.29.2023<\\/p>\\n<ul>\\n<li>Added new lazy loading advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude-parent-selector\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Images by Parent Selector<\\/a>.<\\/li>\\n<li>Added built-in exclusion to Delay JS for jqueryParams inline script to prevent load order issues.<\\/li>\\n<li>Added additional built-in exclusions to Remove Unused CSS for better compatibility with Elementor.<\\/li>\\n<li>Added HTTPS check to PERFMATTERS_CACHE_URL definition.<\\/li>\\n<li>Updated Script Manager UI to sort plugins alphabetically by plugin name as well as assets inside each individual section alphabetically by script handle.<\\/li>\\n<li>Fixed an issue where plugins without any enqueued scripts would not always show up in the Script Manager (MU Mode) after visiting the global view.<\\/li>\\n<li>Updated background processing library to version 1.1.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.1<\\/p>\\n<ul>\\n<li>Added <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/wp-cli\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">WP-CLI<\\/a> support for managing plugin license key activation.<\\/li>\\n<li>Changed behavior of Disable Cart Fragments toggle to only load cart fragmentation script when there are items in the cart.<\\/li>\\n<li>Added default array for critical image preload exclusions that are always needed.<\\/li>\\n<li>Added additional Delay JS quick exclusions for Bricks Slider and WP Armour.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor and Google Reviews Widget.<\\/li>\\n<li>Updated lazy loading fade-in effect to use CSS animation property instead of transition for better compatibility with existing element transitions.<\\/li>\\n<li>Added requirement for advanced options to be turned on to be able to defer jQuery.<\\/li>\\n<li>Added WP-CLI request exclusion to MU plugin functions.<\\/li>\\n<li>Fixed a PHP warning that could sometimes be generated if an image was not able to be parsed for missing dimensions.<\\/li>\\n<li>Updated instant.page library to version 5.2.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.0<\\/p>\\n<ul>\\n<li>Added new delay JS option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#quick-exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Quick Exclusions<\\/a> that will show up when certain popular plugins and themes are activated.<\\/li>\\n<li>Made some updates to the Script Manager UI to match recent changes to the main plugin settings.<\\/li>\\n<li>Cleared out some code for the previous settings admin header that was no longer needed.<\\/li>\\n<li>Made an adjustment to CDN URL function to work even if a trailing slash was entered.<\\/li>\\n<li>Rearranged our local and Google font options to give frequently used options more priority.<\\/li>\\n<li>Fixed a bug where multiple settings sections were displaying at the same time after saving from the database tab.<\\/li>\\n<li>Fixed an issue where accessibility mode tooltips were not getting styled properly in the plugin UI.<\\/li>\\n<li>Fixed a styling issue where link and button colors were getting applied outside of the main Perfmatters admin container.<\\/li>\\n<li>Fixed an issue in MU Mode where the global filtered plugin list would not always return correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.9<\\/p>\\n<ul>\\n<li>Updated Request library functions used to download local font files to fix a compatibility issue with WordPress 6.2.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_preloads_ready\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_preloads_ready<\\/a> filter.<\\/li>\\n<li>Fixed a styling issue in Safari where the settings UI logo was getting clipped.<\\/li>\\n<\\/ul>\\n<p>2.0.8<\\/p>\\n<ul>\\n<li>Updated plugin settings UI. Completely overhauled admin header and navigation. Made additional improvements to various elements (icons, buttons, toggles, etc.).<\\/li>\\n<li>Added additional checks to allow PERFMATTERS_CACHE_DIR and PERFMATTERS_CACHE_URL to be manually set in wp-config.php.<\\/li>\\n<li>Updated user agent for local font remote request.<\\/li>\\n<li>Fixed an issue where multiple preload tags for the same resource could be printed if the resource was matched more than once in the DOM.<\\/li>\\n<li>Fixed an issue where an individually delayed script would fail to load if it matched more than one delayed script entry.<\\/li>\\n<li>Fixed an issue where FastClick script could still load even if Delay JS was turned off.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.7<\\/p>\\n<ul>\\n<li>Fixed an issue that was introduced in the last update that was causing certain images that had their HTML modified by another tool not to lazy load correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#minimal-v4\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minimal v4<\\/a> script type option in local analytics.<\\/li>\\n<li>Added support for ::after pseudo element when lazy loading CSS background images.<\\/li>\\n<li>Added support for AVIF images in a source tag to preload critical images feature.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_preload_critical_images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_preload_critical_images<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_image_dimensions_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_image_dimensions_exclusions<\\/a> filter.<\\/li>\\n<li>Added notice to plugin update row if there is not an active license key.<\\/li>\\n<li>Added async attribute to Instant Page script tag.<\\/li>\\n<li>Added async attribute to all relevant local analytics script tags.<\\/li>\\n<li>Reworked preload class to allow managing preloads entirely with perfmatters_preloads filter if needed.<\\/li>\\n<li>Fixed an issue in MU Mode where plugins would not always disable correctly when helper plugins with similar directories were also active.<\\/li>\\n<li>Fixed a couple of PHP warnings in MU plugin that would show up when certain variables were not declared.<\\/li>\\n<li>Fixed an issue where our lazy loading script was attempting to load in images that had been prepped by another active lazy loader.<\\/li>\\n<li>Fixed an issue where base64 encoded images were being picked up by missing image dimensions feature.<\\/li>\\n<li>Removed BETA tag from preload critical images option.<\\/li>\\n<\\/ul>\\n<p>2.0.5<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_exclude_leading_images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_exclude_leading_images<\\/a> filter.<\\/li>\\n<li>Fixed an issue that was affecting lazy loaded inline background images in certain formats.<\\/li>\\n<li>Fixed a PHP warning related to Fastclick and the built-in exclusion for WooCommerce pages.<\\/li>\\n<li>Updated license key field to prevent it from getting auto-filled by browser extensions.<\\/li>\\n<\\/ul>\\n<p>2.0.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing the Perfmatters admin bar menu and meta options to not show up in the admin.<\\/li>\\n<li>Added additional nopin attribute for Pinterest to YouTube preview thumbnails.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.3<\\/p>\\n<ul>\\n<li>Added new local Google fonts advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/host-google-fonts-locally\\/#async\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Load Asynchronously<\\/a>.<\\/li>\\n<li>Added user agent check before running output buffer with initial exclusion for Usercentrics scanner.<\\/li>\\n<li>Added support for CSS variables when they are being used for lazy loaded inline background images.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload_youtube_autoplay\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_youtube_autoplay<\\/a> filter.<\\/li>\\n<li>Improved delay all script handling of jQuery load event.<\\/li>\\n<li>Changed all WooCommerce checks to use class_exists for better compatibility.<\\/li>\\n<li>Adjusted the order of preloads in the buffer to make sure they print above used CSS.<\\/li>\\n<li>Moved buffer class initialization to wp action hook to improve filtering possibilities.<\\/li>\\n<li>Moved WooCommerce built-in exclusions to apply to select individual features instead of the entire buffer.<\\/li>\\n<li>Slight modification to previous MU Mode addition to fix an issue.<\\/li>\\n<li>Fixed an issue where custom heartbeat interval was not being applied correctly when editing certain custom post types.<\\/li>\\n<li>Fixed an issue with the local stylesheet CDN URL when advanced options were turned on but no URL was set.<\\/li>\\n<li>Fixed an issue where delay script was printing out more than once if multiple closing body tags were present in the DOM.<\\/li>\\n<\\/ul>\\n<p>2.0.2<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing Removed Unused CSS from running correctly in certain cases when Advanced Options were toggled on.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.1<\\/p>\\n<ul>\\n<li>Added new toggle to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/advanced-options\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Show Advanced Options<\\/a> in the Perfmatters UI.<\\/li>\\n<li>Added new advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#disable-click-delay\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disable Click Delay<\\/a> in JavaScript section.<\\/li>\\n<li>Added new advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#fastclick\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Enable FastClick<\\/a> in JavaScript section.<\\/li>\\n<li>Added new advanced option to specify a <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#cdn-url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CDN URL<\\/a> in CSS section.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#local-redirect\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Local Redirect<\\/a> option to existing login URL disabled behavior selection.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_buffer_excluded_extensions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_buffer_excluded_extensions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rucss_excluded_stylesheets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rucss_excluded_stylesheets<\\/a> filter.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor, Divi, Slider Revolution, OptimizePress, and WordPress core.<\\/li>\\n<li>Added additional logic in MU Mode to more reliably retrieve the ID for certain custom post types.<\\/li>\\n<li>Moved lazyload functions to new class structure to be more inline with current codebase.<\\/li>\\n<li>Modified regex for lazy loading inline background images to support additional formats.<\\/li>\\n<li>Integrated lazyload functions into the main output buffer to allow interaction with other existing features.<\\/li>\\n<li>Fixed an issue where dynamic preloads were not recognizing existing query strings in some cases.<\\/li>\\n<li>Fixed a PHP warning that would show up in some cases by adding additional string check when looping through rewrite array.<\\/li>\\n<li>Fixed an issue with MU Mode where sometimes the wrong plugin would get disabled if there were multiple plugins using similar directory paths.<\\/li>\\n<li>Fixed an issue where images inside script tags were being picked up by the Preload Critical Images function.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.0<\\/p>\\n<ul>\\n<li>Added new system for query string timestamps for Used CSS file method to help see changes quicker in environments with caching.<\\/li>\\n<li>Added support for ?perfmattersoff query string which gives the ability to quickly prevent the majority of Perfmatters features from running on the front end for testing purposes.<\\/li>\\n<li>Added additional support for updating the plugin via WP-CLI.<\\/li>\\n<li>Made some changes to admin bar menu item. There is now a Perfmatters top-level admin bar menu item that links to our plugin settings page. The Script Manager and Clear Used CSS function can be accessed by hovering over that main menu item if those features are enabled.<\\/li>\\n<li>Added new toggle in tools to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/hide-admin-bar-menu\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Hide Admin Bar Menu<\\/a>.<\\/li>\\n<li>Disabled certain features from running on WooCommerce cart, checkout, and account pages for better compatibility.<\\/li>\\n<li>Increased site limit in dropdowns on Multisite network settings page.<\\/li>\\n<li>Added additional compatibility styles to the Script Manager.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor, Astra, Kadence, and GenerateBlocks.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_login_url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_login_url<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload_noscript\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_noscript<\\/a> filter.<\\/li>\\n<li>Fixed an issue where YouTube preview thumbnails were generating a preload warning in certain instances.<\\/li>\\n<li>Fixed an issue that was causing analytics.js not to be served over HTTPS in instances where an SSL migration had been done previously on the site.<\\/li>\\n<li>Fixed an issue where delayed style attribute was applied to preloaded stylesheets that already existed in the DOM.<\\/li>\\n<li>Fixed an issue where some features were being allowed to run on XML sitemap URLs in certain cases.<\\/li>\\n<li>Fixed an issue where theme and plugin files were not falling back to a WordPress version query string when present in a dynamic preload.<\\/li>\\n<\\/ul>\\n<p>1.9.9<\\/p>\\n<ul>\\n<li>Added additional autosave interval options.<\\/li>\\n<li>Added WPBakery query string parameter to excluded page builders array.<\\/li>\\n<li>Changed certain lazy loading classes to be more specific to prevent conflicts.<\\/li>\\n<li>Adjusted lazy loading image attribute filter to not run unless images specifically are meant to be lazy loaded by Perfmatters.<\\/li>\\n<li>Added an additional function_exists check in the JS class to prevent an error from being thrown in some cases.<\\/li>\\n<\\/ul>\\n<p>1.9.8<\\/p>\\n<ul>\\n<li>Made adjustments to the CSS Background Image styles to work with some changes in the latest version of our lazy loading library.<\\/li>\\n<li>Fixed an issue that was preventing quotations from being stripped from background image URLs when prepping an inline background image for lazy loading.<\\/li>\\n<li>Fixed an issue where delayed CSS was not loading properly when using individual JS delay.<\\/li>\\n<li>Fixed an error that was being logged in some cases when checking for an active plugin in the JS class.<\\/li>\\n<\\/ul>\\n<p>1.9.7<\\/p>\\n<ul>\\n<li>Made an adjustment to how inline background images are prepped to work with some changes in the latest version of our lazy loading library.<\\/li>\\n<\\/ul>\\n<p>1.9.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_delay_click\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_delay_click<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_local_stylesheet_url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_local_stylesheet_url<\\/a> filter.<\\/li>\\n<li>Made some performance improvements to the way the lazy loading script and inline code are loaded.<\\/li>\\n<li>Added additional compatibility for Elementor animations when using Delay JS.<\\/li>\\n<li>Added additional details in the Script Manager global view for individual stored settings.<\\/li>\\n<li>Added the ability to identify and clear outdated post IDs set in the Script Manager options from the global view.<\\/li>\\n<li>Script Manager global view organization and style improvements.<\\/li>\\n<li>Updated lazy loading library to version 17.8.<\\/li>\\n<li>Updated instant.page library to version 5.1.1.<\\/li>\\n<li>Added Bricks query string parameter to excluded page builders array.<\\/li>\\n<li>Fixed an issue that was causing the cache directory to not create unique subsite paths for specific multisite setups.<\\/li>\\n<li>Fixed an issue where delayed stylesheets were not being loaded if Delay JS was toggled off in the post meta options.<\\/li>\\n<\\/ul>\\n<p>1.9.5<\\/p>\\n<ul>\\n<li>Added additional logic to Delay JS script to make sure the initial interaction is processed.<\\/li>\\n<li>Added additional styles to CSS Background Image feature to work with background images set on ::before selectors.<\\/li>\\n<li>Added additional default tags to various dropdowns in plugin settings for better clarification.<\\/li>\\n<li>Added default arrays for stylesheet and selector exclusions that are always needed.<\\/li>\\n<li>Adjusted perfmatters_cdn filter location for compatibility.<\\/li>\\n<li>Made some adjustments to CDN Rewrite Regex to fix some issues where unwanted strings were getting picked up as URLs in some cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.9.4<\\/p>\\n<ul>\\n<li>Updated EDD plugin updater class to version 1.9.2.<\\/li>\\n<li>Added default exclusion to REST API option for compatibility.<\\/li>\\n<\\/ul>\\n<p>1.9.3<\\/p>\\n<ul>\\n<li>Remove Used CSS filter adjustment to fix an issue where certain WordPress post functions wouldn\'t be available when trying to selectively disable the feature.<\\/li>\\n<li>Rolled back minor plugin UI JavaScript addition, as it was interfering with entering data on multiple lines in certain input fields.<\\/li>\\n<\\/ul>\\n<p>1.9.2<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_allow_buffer https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_used_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_used_css<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_allow_buffer\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_allow_buffer<\\/a> filter.<\\/li>\\n<li>Added a notice in the Script Manager when Testing Mode is enabled.<\\/li>\\n<li>Improved reliability of CSS Background Image function when child elements with additional background images are present.<\\/li>\\n<li>Script Manager style compatibility fixes.<\\/li>\\n<li>Fixed an issue where some post specific meta options were not being respected when determining if a feature should run.<\\/li>\\n<li>Fixed an issue where pressing enter on the main plugin settings page would trigger a specific form action instead of save settings.<\\/li>\\n<li>Changed CSS class initialization hook to be in the correct order with other output buffer functions.<\\/li>\\n<li>Made an adjustment to how we generate the local used stylesheet URL for better compatibility.<\\/li>\\n<li>Fixed an issue where loading attribute was still getting applied to images that were excluded from lazy loading.<\\/li>\\n<li>Fixed an issue where images inside an excluded picture element were not also getting excluded.<\\/li>\\n<li>Fixed an issue in the Script Manager where archives were not being grouped together with their respective post type.<\\/li>\\n<li>Additions to plugin UI JavaScript to allow for disabled sections to be hidden even when nested controllers are present.<\\/li>\\n<li>Moved background process library to composer autoloader.<\\/li>\\n<li>Removed BETA tag from Remove Unused CSS option.<\\/li>\\n<\\/ul>\\n<p>1.9.1<\\/p>\\n<ul>\\n<li>Added new option to lazy load <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#css-background-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CSS Background Images<\\/a>.<\\/li>\\n<li>Added new option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#dual-tracking\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dual Tracking<\\/a> when using gtag.js in local analytics.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rest_api_exceptions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rest_api_exceptions<\\/a> filter.<\\/li>\\n<li>Fixed an issue where individually delayed local scripts would not get correctly rewritten to load from the CDN.<\\/li>\\n<li>Fixed an issue where lazy loading would run into an error if no px or % was specified with the threshold value.<\\/li>\\n<li>Fixed an issue with buffer validation that was conflicting with certain caching setups.<\\/li>\\n<li>Fixed an issue where existing font preconnect and prefetch tags were not being detected properly when using Local Fonts.<\\/li>\\n<li>Fixed an error related to cookie constants when running MU Mode in certain environments.<\\/li>\\n<li>Fixed multiple AMP validation errors and added additional checks to prevent certain functions from running on AMP URLs.<\\/li>\\n<li>Minor adjustment to CDN rewrite regex pattern to work with encoded quotation characters.<\\/li>\\n<li>Changed toggle CSS selectors to be more specific to prevent conflicts.<\\/li>\\n<li>Moved plugin settings header output to in_admin_header action hook for compatibility.<\\/li>\\n<li>Moved JS optimization functions to new class structure to be more inline with current codebase.<\\/li>\\n<li>Improvements to critical image preloading allowed for a move to a singular output buffer.<\\/li>\\n<\\/ul>\\n<p>1.9.0<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing excluded selectors to not be recognized properly after Used CSS was cleared.<\\/li>\\n<li>Minor adjustments to the new plugin UI.<\\/li>\\n<\\/ul>\\n<p>1.8.9<\\/p>\\n<ul>\\n<li>Updated plugin settings UI.<\\/li>\\n<li>Added new post meta option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#clear-individual\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Clear Used CSS<\\/a> for an individual page or post type.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rucss_excluded_selectors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rucss_excluded_selectors<\\/a> filter.<\\/li>\\n<li>Fixed a lazy loading issue that was preventing some images from loading properly in Safari.<\\/li>\\n<li>Migrated Delay JS Timeout dropdown to a simpler on\\/off toggle that will default to 10 seconds. Our filter is also still available to set a custom timeout value.<\\/li>\\n<li>Fixed an issue with MU plugin that was interfering with rewrite rules in some instances.<\\/li>\\n<li>Added additional excluded page builder parameter for Flatsome UX.<\\/li>\\n<li>Moved restore default functionality to a separate option on the tools page.<\\/li>\\n<li>Code refactoring.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.8<\\/p>\\n<ul>\\n<li>Changed default setting for Used CSS Method from file to inline, as we think this will be the more compatible solution for most users going forward. If you were previously using the file method, you may need to save that option again.<\\/li>\\n<li>Added width and height parameters to placeholder SVGs to prevent warnings for a ratio mismatch that would happen for some images.<\\/li>\\n<li>Fixed an issue where the noscript tags were getting malformed for some images inside picture tags after lazy loading.<\\/li>\\n<li>Removed placeholder SVGs on source tags since the image tag will already have one.<\\/li>\\n<li>Changed settings export file name date format to be easier to organize when managing multiples.<\\/li>\\n<li>Updated tooltip for Blank Favicon option to be more clear.<\\/li>\\n<\\/ul>\\n<p>1.8.7<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#css-method\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Used CSS Method<\\/a> option to choose whether to load used CSS from a file or inline.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_cache_path\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_cache_path<\\/a> filter.<\\/li>\\n<li>Updated metabox functions to restrict metabox display to administrators only.<\\/li>\\n<li>Made some adjustments to custom login URL function to better support 3rd party tools using WP CLI.<\\/li>\\n<li>Added Fusion Builder query string parameters to excluded page builders array.<\\/li>\\n<li>Adjusted Unused CSS regex to be more consistent when stylesheets are placed in between other link tags.<\\/li>\\n<li>Changes to instances where ABSPATH was used to determine a directory location for better compatibility with certain hosts.<\\/li>\\n<li>Fixed an issue with Remove Global Styles option where duotone SVGs were not being removed on WordPress 5.9.2.<\\/li>\\n<li>Fixed an issue where WooCommerce block stylesheets were not getting correctly dequeued when Disable Scripts option was set.<\\/li>\\n<li>Fixed an issue that was causing the CSS Parser library not to get included correctly in certain cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.6<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-global-inline-styles-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remove Global Styles<\\/a> related to duotone filters.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_script_manager_locale\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_script_manager_locale<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_disable_woocommerce_scripts\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_disable_woocommerce_scripts<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_page_builders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_page_builders<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_behavior<\\/a> filter.<\\/li>\\n<li>Fixed an issue with the unused CSS parser that was incorrectly rewriting relative URLs if there was no query string present on the original stylesheet src.<\\/li>\\n<li>Added additional parameter to page builders array for compatibility.<\\/li>\\n<li>Fixed an issue that was causing the login URL disabled 404 behavior to result in an error if a 404 template was not found.<\\/li>\\n<li>Added some additional checks before creating cache directories for local fonts and used CSS.<\\/li>\\n<li>Fixed an issue that was causing the fade-in effect to conflict with child images inside a lazy loaded container.<\\/li>\\n<li>Fixed an undefined index warning coming from unused CSS settings update function.<\\/li>\\n<li>Added a default delay JS exclusion for admin only inline customize-support script.<\\/li>\\n<li>Refactored entire meta.php code to be more efficient (38% smaller) and in line with current structure.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.5<\\/p>\\n<ul>\\n<li>Added new feature to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#remove-unused-css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remove Unused CSS<\\/a> (BETA).<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_remove_unused_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_remove_unused_css<\\/a> filter.<\\/li>\\n<li>Adjusted CDN Rewrite buffer priority for better compatibility with other features.<\\/li>\\n<li>Made an improvement to the Disable XML-RPC function to return a 403 error when xmlrpc.php is accessed directly.<\\/li>\\n<li>Script Manager stylesheet updates for better compatibility.<\\/li>\\n<li>Fixed an issue in the Script Manager where the input controls were sometimes not displaying after toggling a script off.<\\/li>\\n<li>Added additional style for YouTube preview thumbnail play button to fix an alignment issue with certain setups.<\\/li>\\n<li>Buffer adjustments for compatibility.<\\/li>\\n<\\/ul>\\n<p>1.8.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was interfering with sitemap display in certain configurations.<\\/li>\\n<li>Added &lt;a&gt; element support for lazy loading inline background images.<\\/li>\\n<\\/ul>\\n<p>1.8.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_fade_in_speed\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_fade_in_speed<\\/a> filter.<\\/li>\\n<li>Fixed an issue that was preventing lazy loading fade in from working correctly with certain background images.<\\/li>\\n<li>Fixed an issue that was interfering with the display of certain inline SVG elements.<\\/li>\\n<li>Adjusted local analytics hook priority for better compatibility.<\\/li>\\n<li>Script Manager style updates for better compatibility.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.2<\\/p>\\n<ul>\\n<li>New Lazy Loading option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude-leading-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Leading Images<\\/a>.<\\/li>\\n<li>New Lazy Loading option to add a <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#fade-in\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Fade In<\\/a> effect.<\\/li>\\n<li>New option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/preload\\/#critical-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Preload Critical Images<\\/a> (BETA).<\\/li>\\n<li>Expanded Disable XML-RPC function to also remove pingback link tag if it is present in the document.<\\/li>\\n<li>Added new Delay JavaScript checkbox to meta options in the post editor.<\\/li>\\n<li>Added additional integration with perfmatters_delay_js filter.<\\/li>\\n<li>Moved YouTube autoplay parameter placement on lazy loaded iframes for better compatibility with existing query strings.<\\/li>\\n<li>Optimizations to lazy loading inline CSS functions.<\\/li>\\n<li>Various optimizations and improvements to the output buffer.<\\/li>\\n<li>Migrated manual preload functionality to use the output buffer which will allow for easier integration with new features.<\\/li>\\n<li>Made some adjustments to MU plugin functions to more reliably detect post IDs when using specific permalink setups.<\\/li>\\n<li>Fixed an issue where some Current URL links in the Script Manager\'s Global View were not pointing to the right posts.<\\/li>\\n<li>Fixed an issue with a certain endpoint that was redirecting to the custom login URL.<\\/li>\\n<li>Fixed a PHP notice that was sometimes appearing when refreshing local fonts.<\\/li>\\n<li>Removed BETA tag from Delay All JS option.<\\/li>\\n<\\/ul>\\n<p>1.8.1<\\/p>\\n<ul>\\n<li>Updated Local Google Font function to more effectively remove existing font preconnect and prefetch tags.<\\/li>\\n<li>Updated Local Google Font function for better compatibility with sites that still have remnants from a previous http to https migration.<\\/li>\\n<li>Fixed an issue in the Script Manager where the home page was being treated as a post if set to display the blog feed.<\\/li>\\n<\\/ul>\\n<p>1.8.0<\\/p>\\n<ul>\\n<li>Fixed an issue with Delay All JS that was preventing certain async scripts from fully loading.<\\/li>\\n<\\/ul>\\n<p>1.7.9<\\/p>\\n<ul>\\n<li>Added new options to the Script Manager to disable assets directly by post type, archive, user status, and device type.<\\/li>\\n<li>Added support for dynamic preloading by handle for enqueued scripts and styles.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_cdn\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_cdn<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_timeout\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_timeout<\\/a> filter.<\\/li>\\n<li>Fix to Delay All JS script for better compatibility with certain page builder animations.<\\/li>\\n<li>Updated class initialization for better compatibility.<\\/li>\\n<li>Fixed an issue where the Script Manager was interpreting certain array keys as shortcodes if they were identical.<\\/li>\\n<li>Added an additional check to prevent the Script Manager from being able to load on top of a page builder.<\\/li>\\n<li>Fixed a PHP notice coming from the MU plugin.<\\/li>\\n<li>Made some changes to our plugin updater function that should help with auto-updates in a multisite environment.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.8<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/missing-width-height-images\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Add Missing Image Dimensions<\\/a>.<\\/li>\\n<li>Added the ability to delete individual Script Manager options from the Global View.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js<\\/a> filter.<\\/li>\\n<li>Updated EDD plugin updater class to version 1.9.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.7<\\/p>\\n<ul>\\n<li>Fixed a PHP warning related to JavaScript deferral for specific configurations.<\\/li>\\n<li>Fixed an issue with lazy loading exclusions not being loaded correctly in some cases.<\\/li>\\n<\\/ul>\\n<p>1.7.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay Behavior<\\/a> dropdown with a new option to Delay All Scripts.<\\/li>\\n<li>Added new Lazy Loading <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#threshold\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Threshold<\\/a> option and adjusted the default value if not set to improve performance.<\\/li>\\n<li>Added confirmation message when manually running the database optimization tool.<\\/li>\\n<li>Updated disable emoji function to get rid of a PHP notice.<\\/li>\\n<li>Added additional check to MU Mode to only filter GET requests.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/#perfmatters_defer_js-filter\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_defer_js<\\/a> filter.<\\/li>\\n<li>Fixed an issue where Instant Page was attempting to run on the new widgets screen in WordPress 5.8.<\\/li>\\n<li>Fixed an issue with Local Google Fonts where certain invalid font URLs would still attempt to be downloaded and served.<\\/li>\\n<li>Removed BETA tag from fonts section.<\\/li>\\n<li>Delay JavaScript compatibility improvements.<\\/li>\\n<li>Added additional input validation functionality to plugin settings page.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.5<\\/p>\\n<ul>\\n<li>Added new custom login URL options to change the <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#disabled-behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disabled Behavior<\\/a> and set a custom <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#message\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Message<\\/a>.<\\/li>\\n<li>Migrated CDN, Analytics, and Extras tab data to separate sections in the Options tab for better organization and easier access.<\\/li>\\n<li>CDN rewrite improvements to better handle sites with multiple domain URLs.<\\/li>\\n<li>Regex adjustments to Local Fonts function for better reliability.<\\/li>\\n<li>Added exclusion checks to individual &lt;source&gt; tags when using WebP images.<\\/li>\\n<li>Added function to disable capital_P_dangit filter.<\\/li>\\n<li>Fixed a lazy loading warning that was showing in Microsoft Edge.<\\/li>\\n<li>Removed loading attribute that was getting applied to &lt;picture&gt; tags in some cases when using WebP images.<\\/li>\\n<li>Plugin UI navigation performance improvements.<\\/li>\\n<li>Plugin UI style fixes.<\\/li>\\n<li>Added a conditional check to only show WooCommerce options when WooCommerce is installed and activated.<\\/li>\\n<li>Fixed an MU Mode issue where the Home URL did not trigger a match if a query string was present.<\\/li>\\n<li>Fixed an issue where the Customizer was getting certain optimizations applied.<\\/li>\\n<li>Fixed an issue where the Disable Embeds toggle was interfering with responsive video styles.<\\/li>\\n<li>Script Manager UI fixes.<\\/li>\\n<li>Updated uninstall function to remove Perfmatters cache folder.<\\/li>\\n<li>Added readme.txt file.<\\/li>\\n<\\/ul>\\n<p>1.7.4<\\/p>\\n<ul>\\n<li>Re-enabled Local Google Fonts functionality.<\\/li>\\n<li>Refactoring of buffer-related code and various functions that were already using our main buffer filter.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.3<\\/p>\\n<ul>\\n<li>Rolled back the latest changes related to the new universal buffer class and Local Google Fonts while we do some more in-depth testing. We\'ll be working to release this feature next week using an alternative method.<\\/li>\\n<\\/ul>\\n<p>1.7.2<\\/p>\\n<ul>\\n<li>Added new Fonts section inside of the main Options tab.<\\/li>\\n<li>Added new option to use <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/font-display-swap\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Display Swap<\\/a> for Google fonts.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/host-google-fonts-locally\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Local Google Fonts<\\/a> option which will attempt to download any Google Font files and serve them from your local server or CDN.<\\/li>\\n<li>Integrated new universal HTML buffer library to help going forward with plugin features that manipulate DOM elements.<\\/li>\\n<li>Migrated CDN Rewrite feature to the universal buffer class.<\\/li>\\n<li>Added new perfmatters_delayed_scripts filter to modify the Delay JavaScript input array before any scripts are delayed.<\\/li>\\n<li>Added new perfmatters_preload filter to modify the Preloads data array before anything is printed.<\\/li>\\n<li>Made some compatibility improvements to the inline lazy loading JavaScript.<\\/li>\\n<li>Added attributes to delayed scripts to exclude them from being picked up by Litespeed Cache.<\\/li>\\n<li>Added exclusion for SiteGround Optimizer to the main Script Manager JavaScript file.<\\/li>\\n<li>Added CodeMirror support to all code text area inputs in plugin settings.<\\/li>\\n<li>Removed license activation check and corresponding links from the plugins page to improve back-end performance.<\\/li>\\n<\\/ul>\\n<p>1.7.1<\\/p>\\n<ul>\\n<li>Added expiration date row to license tab in plugin settings.<\\/li>\\n<li>Added support for WooCommerce shop page when setting a preload location by post ID.<\\/li>\\n<li>Fixed an issue with device exceptions not working correctly in MU Mode.<\\/li>\\n<li>Fixed a query string encoding issue that was affecting some email templates when using a custom login URL.<\\/li>\\n<\\/ul>\\n<p>1.7.0<\\/p>\\n<ul>\\n<li>Fixed an issue where Preload tags were still being printed on archive pages even if a location was set.<\\/li>\\n<li>Fixed a compatibility issue with older WordPress versions when using certain functions that check for a JSON request.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.9<\\/p>\\n<ul>\\n<li>New additions to preload feature, allowing specification for device type and location.<\\/li>\\n<li>Script Manager improvements to allow for Regex disable to be used alongside Current URL disables for the same script.<\\/li>\\n<li>Added new Script Manager exception for device type.<\\/li>\\n<li>Add new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#timeout\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay Timeout<\\/a> option when delaying JavaScript.<\\/li>\\n<li>Added new wheel event to user interaction script for delay function.<\\/li>\\n<li>Added new multisite network administration tool to apply default site settings to all subsites.<\\/li>\\n<li>Multiple improvements to WooCommerce disable scripts toggle for increased effectiveness.<\\/li>\\n<li>Added additional exclusions for JSON and REST requests to all asset optimization functions.<\\/li>\\n<li>Fixed an undefined index warning coming from local analytics function.<\\/li>\\n<li>Fixed an issue where YouTube preview thumbnails were getting a layout shift warning when using a theme with responsive embed support.<\\/li>\\n<li>Fixed a Script Manager bug that was not fully clearing exceptions when changing disable away from everywhere.<\\/li>\\n<li>Script Manager styling compatibility fixes.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.8<\\/p>\\n<ul>\\n<li>Compatibility fixes for local analytics when using MonsterInsights.<\\/li>\\n<li>Local analytics improvements for multisite.<\\/li>\\n<li>Added alt tag to YouTube preview thumbnail images.<\\/li>\\n<li>Fixed a PHP undefined index notice coming from functions.php.<\\/li>\\n<li>Translation file updates.<\\/li>\\n<\\/ul>\\n<p>1.6.7<\\/p>\\n<ul>\\n<li>Added new tool to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/purge-meta-options\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Purge Perfmatters Meta Options<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-google-maps-api-wordpress\\/#exclude\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Post IDs<\\/a> input for existing Disable Google Maps option.<\\/li>\\n<li>Added new gtag.js option to local analytics script type selection.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#gtag-cdn\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CDN URL<\\/a> input to local analytics options when using gtag.js.<\\/li>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#amp\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Enable AMP Support<\\/a> to local analytics.<\\/li>\\n<li>Moved Use MonsterInsights option to gtag.js script type and updated script replacement hook.<\\/li>\\n<li>Added onload function to style preloads to prevent duplicate preloads from occurring.<\\/li>\\n<li>Added exception for WP Rocket script deferral to our lazy load script.<\\/li>\\n<li>Added exception for site health tool to disable heartbeat function.<\\/li>\\n<li>Fixed an issue where background images weren\\u2019t being lazy loaded if the style attribute was the first attribute declared on the element.<\\/li>\\n<li>Script Manager styling fixes.<\\/li>\\n<li>Fixed a PHP warning coming from settings.php.<\\/li>\\n<li>Translation file updates.<\\/li>\\n<\\/ul>\\n<p>1.6.6<\\/p>\\n<ul>\\n<li>Added new Script Manager exception to select <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/script-manager-logged-in-logged-out\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">logged in or logged out<\\/a> users.<\\/li>\\n<li>Added new option in Script Manager settings to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/script-dependencies\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Display Dependencies<\\/a>.<\\/li>\\n<li>Added total plugin sizes in the Script Manager.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#viewport-threshold\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_threshold<\\/a> filter to adjust the distance at which lazy elements are loaded.<\\/li>\\n<li>Multiple Script Manager style and UI improvements.<\\/li>\\n<li>Fixed an issue where MU mode script was attempting to run on wp-login.php.<\\/li>\\n<li>Multiple page builder compatibility fixes.<\\/li>\\n<li>Made an adjustment to prevent YouTube preview thumbnails from getting picked up by Pinterest image hover tools.<\\/li>\\n<li>Removed deprecated plugin option to Remove Query Strings. Make sure to double-check your preloads as Google needs the exact URL when preloading.<\\/li>\\n<li>PHP 8 compatibility testing.<\\/li>\\n<li>Minor adjustments to lazy load inline scripts to fix invalid markup warnings.<\\/li>\\n<\\/ul>\\n<p>1.6.5<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay JavaScript<\\/a> from loading until user interaction.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#script-type\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">gtag.js v4<\\/a> option to local analytics.<\\/li>\\n<li>Added new built-in option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude from Lazy Loading<\\/a> which can be used in addition to the existing filter.<\\/li>\\n<li>Add new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#youtube-preview-thumbnails\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_youtube_thumbnail_resolution<\\/a> filter to adjust YouTube preview thumbnail quality.<\\/li>\\n<li>Optimized analytics updater function.<\\/li>\\n<li>Updated EDD plugin updater class which will now allow for WordPress auto-update support.<\\/li>\\n<li>Removed option to Defer Inline JavaScript which is now being replaced by the new Delay JavaScript option.<\\/li>\\n<li>Adjusted Script Manager hook priority for better compatibility.<\\/li>\\n<li>Compatability fix to the DOM Monitoring lazy load option.<\\/li>\\n<li>Added compatibility fix for jQuery fitVids to lazy loading function.<\\/li>\\n<li>Fixed an issue where lazy loading was attempting to run on AMP pages.<\\/li>\\n<\\/ul>\\n<p>1.6.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing the Reset Script Manager button to not work correctly.<\\/li>\\n<li>Fixed an issue where the Perfmatters meta box wouldn\'t display if only using Lazy Loading.<\\/li>\\n<li>Adjusted Script Manager hook priority for better compatibility.<\\/li>\\n<li>Added additional checks to MU Mode plugin file to prevent it from interfering with certain REST API requests. (Fixes a bug when running the Yoast SEO data indexer.)<\\/li>\\n<li>Added additional checks to confirm user functions are available before verifying admin status.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.6.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/testing-mode\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Testing Mode<\\/a> option to the Script Manager settings.<\\/li>\\n<li>Rewrote script-manager.js entirely using vanilla JavaScript to get rid of jQuery dependency.<\\/li>\\n<li>Added additional MU Mode check to help prevent certain configurations from interfering with AJAX requests.<\\/li>\\n<li>Improved Script Manager form handling.<\\/li>\\n<li>Adjusted Script Manager disclaimer text and added a close button.<\\/li>\\n<li>Moved the Script Manager print function from the wp_footer hook to shutdown for better compatibility.<\\/li>\\n<li>Fixed an undefined index warning in the Lazy Load function.<\\/li>\\n<li>Added a Lazy Load exclusion for Gravity Forms iframes.<\\/li>\\n<li>Added a Rocket Loader exclusion to the Instant Page JS file.<\\/li>\\n<li>Added an exclusion to the CDN Rewrite for script-manager.js.<\\/li>\\n<li>Script Manager styling fixes for better compatibility.<\\/li>\\n<\\/ul>\\n<p>1.6.2<\\/p>\\n<ul>\\n<li>Updated placeholder text in Preload UI.<\\/li>\\n<li>Fixed an issue where the Password Strength Meter script was getting disabled in the admin.<\\/li>\\n<li>Small tweak to JS Deferral buffer to make sure HTML is being filtered correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.1<\\/p>\\n<ul>\\n<li>New Local Analytics Script Type toggle with new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minimal Analytics<\\/a> options.<\\/li>\\n<li>New <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">JavaScript Deferral<\\/a> options in Extras &gt; Assets.<\\/li>\\n<li>Updates to Cart Fragments and Password Strength Meter toggles to improve effectiveness.<\\/li>\\n<li>Multiple updates to Instant Page functionality for better compatibility.<\\/li>\\n<li>Multiple plugin admin UI updates and improvements.<\\/li>\\n<li>Script Manager style updates for better compatibility.<\\/li>\\n<li>MU Mode improvements for increased stability.<\\/li>\\n<li>Fixed an issue causing Preload and Preconnect settings to not save correctly in some cases.<\\/li>\\n<\\/ul>\\n<p>1.6.0<\\/p>\\n<ul>\\n<li>Added a filter to disable WordPress\' native lazy loading when Perfmatters\' lazy loading is active.<\\/li>\\n<li>Adjusted Script Manager styles to more effectively overlay the entire page while still allowing admin bar functions to be fully available.<\\/li>\\n<li>Fixed an undefined index notice that was appearing on specific lazy loading and script manager functions.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.9<\\/p>\\n<ul>\\n<li>Added new Preloading section in the Extras tab, with new options for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/link-prefetch\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Instant Page<\\/a> and <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/preload\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Preload<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_forced_attributes<\\/a> filter to allow for matched elements to be skipped when checking for exclusions.<\\/li>\\n<li>Added support for WooCommerce Shop page to show up as a Current URL option in the Script Manager.<\\/li>\\n<li>Added exclusions for REST and AJAX requests to MU Mode function.<\\/li>\\n<li>Fixed a bug that was causing the MU Mode function to still run even if the Script Manager was disabled.<\\/li>\\n<li>Fixed an issue where images were being prepped for lazy loading on feed URLs.<\\/li>\\n<li>Fixed an issue where lazy loading was breaking images in embeds from the same site.<\\/li>\\n<li>Compatibility fixes for lazy load script with Autoptimize and Litespeed Cache.<\\/li>\\n<\\/ul>\\n<p>1.5.8<\\/p>\\n<ul>\\n<li>Added support for lazy loading background images, iframes, and videos.<\\/li>\\n<li>Added new lazy loading option to enable Youtube Preview Thumbnails.<\\/li>\\n<li>Added multiple page builder exclusions to our lazy load functions.<\\/li>\\n<li>Added proper support for 404 templates in the Script Manager (non-MU).<\\/li>\\n<li>Fixed some minor styling issues in the Script Manager UI.<\\/li>\\n<li>Fixed an undefined index in the database optimizer class.<\\/li>\\n<li>Removed customer email row from the license tab.<\\/li>\\n<\\/ul>\\n<p>1.5.7<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/optimize-wordpress-database\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Database Optimization<\\/a> section in the Extras tab.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">DOM Monitoring<\\/a> option to complement our existing lazy load settings.<\\/li>\\n<li>Added additional input styles in the Script Manager for better compatibility<\\/li>\\n<li>Made some changes to the Script Manager file include process for better compatibility.<\\/li>\\n<li>Fixed multiple undefined index notices.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.6<\\/p>\\n<ul>\\n<li>Plugin UI improvements, new tooltip styles.<\\/li>\\n<li>Licensing workflow improvements. Simpler UI, license no longer deactivated on plugin deactivation, license auto-activates on input.<\\/li>\\n<li>Moved Script Manager javascript back to a separate plugin file for better compatibility.<\\/li>\\n<li>Added Remove Query Strings exemption to the Script Manager javascript file.<\\/li>\\n<li>Code refactoring.<\\/li>\\n<\\/ul>\\n<p>1.5.5<\\/p>\\n<ul>\\n<li>Added a new modified function to the MU plugin file which should be able to get the current post ID more effectively for certain types of URLs (custom post types, blog page, etc...).<\\/li>\\n<li>Made some improvements to the MU plugin file detection and update process.<\\/li>\\n<\\/ul>\\n<p>1.5.4<\\/p>\\n<ul>\\n<li>Added additional tooltip warning text to the MU Mode toggle.<\\/li>\\n<li>Added <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/mu-mode\\/#debug-mode\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">mu_mode=off<\\/a> URL parameter to force the page to load with MU Mode settings disabled.<\\/li>\\n<li>Added an additi0nal check to make sure MU Mode settings don\'t run if the base Perfmatters plugin is not activated.<\\/li>\\n<\\/ul>\\n<p>1.5.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/mu-mode\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">MU Mode<\\/a> (BETA) feature in the Script Manager which can be used to disable plugins per page.<\\/li>\\n<li>Reworked main Script Manager update function to dynamically save settings via AJAX to prevent having to reload the page every time options are saved.<\\/li>\\n<li>Moved Script Manager javascript inline to better support further updates.<\\/li>\\n<li>Fixed an issue in the Script Manager where a Current URL disable would not function correctly for an individual script if the plugin\'s scripts were disabled globally on a different Current URL.<\\/li>\\n<li>Changed hooks for Disable Google Maps and Disable Google Fonts toggles to prevent a conflict with Gutenberg.<\\/li>\\n<li>Added an exclusion attribute to our LazyLoad script to prevent it from conflicting with WP Rocket\'s JS deferral feature.<\\/li>\\n<li>Updated EDD Plugin Updater Class to version 1.7.1.<\\/li>\\n<li>Updated various translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.2<\\/p>\\n<ul>\\n<li>Added new options in Extras \\u2192 Tools to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/import-export\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Import and Export Plugin Settings<\\/a>.<\\/li>\\n<li>Updated Script Manager form input names to be more specific to prevent conflicts when saving Script Manager settings.<\\/li>\\n<li>Added compatibility fix for Beaver Builder to the Script Manager dequeue function.<\\/li>\\n<li>Updated French and German translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.1<\\/p>\\n<ul>\\n<li>Adjusted the Script Manager styles for better compatibility with other admin bar tools when the Script Manager UI is being displayed.<\\/li>\\n<li>Fixed an issue in the Script Manager that was causing individual script settings to not work correctly when the parent group had previously been disabled.<\\/li>\\n<li>Updated Russian (ru_RU) translation files.<\\/li>\\n<li>Updated plugin description.<\\/li>\\n<\\/ul>\\n<p>1.5.0<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the Script Manager dequeue function to interfere with the query loop in certain cases.<\\/li>\\n<\\/ul>\\n<p>1.4.9<\\/p>\\n<ul>\\n<li>Performance update to Script Manager form submission function which should help dramatically reduce the footprint when saving script configurations.<\\/li>\\n<li>Removed the Current URL option in the Script Manager when loaded on URLs without a valid post ID. (ex. dynamically generated archive templates)<\\/li>\\n<li>Added plugin settings page header with links to Contact and Support.<\\/li>\\n<li>Minor styling fixes in plugin settings UI.<\\/li>\\n<li>Updated Russian (ru_RU) translation files.<\\/li>\\n<\\/ul>\\n<p>1.4.8<\\/p>\\n<ul>\\n<li>Added new \'Body Code\' box in the Extras tab to go along with our existing header + footer boxes to give some more control there.<\\/li>\\n<li>Added some limits to the Script Manager action links in WP Admin to ensure they are only showing up for public post types.<\\/li>\\n<li>Fixed a bug that was causing the admin stylesheet not to load on the network settings page when running on a multisite.<\\/li>\\n<li>Added Russian (ru_RU) translation files. (credit: Sergey Shljahov)<\\/li>\\n<\\/ul>\\n<p>1.4.7<\\/p>\\n<ul>\\n<li>Added an exception for Gravity Forms to the Disable Heartbeat function.<\\/li>\\n<li>Added an exception for Contact Form 7 to the Disable REST API function.<\\/li>\\n<li>Added updated German (de_DE) translation files. (credit: Daniel Luttermann)<\\/li>\\n<\\/ul>\\n<p>1.4.6<\\/p>\\n<ul>\\n<li>Added a specific and more generous threshold for lazy loading.<\\/li>\\n<li>Added some additional dequeues to the Disable WooCommerce function to target inline CSS and JS.<\\/li>\\n<\\/ul>\\n<p>1.4.5<\\/p>\\n<ul>\\n<li>Updated Disable Google Maps and Disable Google Fonts toggles to not run in WP Admin.<\\/li>\\n<li>Turned off native lazy loading by default and added new option to Use Native.<\\/li>\\n<li>Added perfmatters_lazyload_excluded_attributes filter which allows for an array of attribute strings to be given that if found will exclude the matched image\\/s from lazy loading.<\\/li>\\n<li>Made some compatibility improvements to the Script Manager function that gets the ID of the current post.<\\/li>\\n<li>Added perfmatters_get_current_ID filter which allows the user to extend or modify the functionality of the Script Manager\'s current ID function.<\\/li>\\n<\\/ul>\\n<p>1.4.4<\\/p>\\n<ul>\\n<li>Fixed undefined index PHP Notice coming from the Preconnect settings display function.<\\/li>\\n<li>Added additional compatibility with Elementor when using the Script Manager to disable certain Elementor scripts + styles.<\\/li>\\n<li>Added a ignore flag class to all Lazy Load functions. Simply add the \'no-lazy\' class to any image element you want to be exempt from lazy loading.<\\/li>\\n<li>Added validation filter to Login URL input to prevent incompatible characters from being entered.<\\/li>\\n<\\/ul>\\n<p>1.4.3<\\/p>\\n<ul>\\n<li>Fixed an issue with the Lazy Load function that was causing an error with some older PHP versions.<\\/li>\\n<\\/ul>\\n<p>1.4.2<\\/p>\\n<ul>\\n<li>Added new option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\">Lazy Loading<\\/a> images (BETA).<\\/li>\\n<\\/ul>\\n<p>1.4.1<\\/p>\\n<ul>\\n<li>New addition to the Preconnect option, you can now choose to whether or not to add the crossorigin property for each Preconnect URL.<\\/li>\\n<li>Optimization to the loading of Perfmatters admin scripts + styles.<\\/li>\\n<li>Added additional Script Manager styles for better compatibility.<\\/li>\\n<li>Added an additional function for the Custom Login URL to help rewrite certain wp-admin links in specific multisite setups.<\\/li>\\n<li>Reorganized plugin action links in the plugins table.<\\/li>\\n<\\/ul>\\n<p>1.4.0<\\/p>\\n<ul>\\n<li>Fixed an issue where the Current URL Exceptions were not loading correctly after saving in the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.3.9<\\/p>\\n<ul>\\n<li>Added new Extra options to Add Header Code and Add Footer Code.<\\/li>\\n<li>Added missing blank defaults for DNS Prefetch and Preconnect options.<\\/li>\\n<li>Added functionality to force the Admin Bar to display when the Script Manager is loaded.<\\/li>\\n<li>Script Manager styling adjustments.<\\/li>\\n<li>Added success message on save when the Script Manager options are updated.<\\/li>\\n<li>Added support for 404 page when trying to disable or enable on the Current URL.<\\/li>\\n<\\/ul>\\n<p>1.3.8<\\/p>\\n<ul>\\n<li>Added new option to Disable Comments.<\\/li>\\n<li>Updated a section of the Script Manager to better reflect the Current URL when determining if it is a match for the given regex pattern.<\\/li>\\n<\\/ul>\\n<p>1.3.7<\\/p>\\n<ul>\\n<li>Added links to the Script Manager from the posts list page and post edit page which will take you to the front end and load the Script Manager for the corresponding post.<\\/li>\\n<li>Added warning notices for both WP_POST_REVISIONS and AUTOSAVE_INTERVAL if they are set in Perfmatters while also defined elsewhere.<\\/li>\\n<\\/ul>\\n<p>1.3.6<\\/p>\\n<ul>\\n<li>Added new option to Disable Google Fonts.<\\/li>\\n<li>Removed option to Disable Completely from the Disable REST API dropdown to due core WordPress compatibility issues.<\\/li>\\n<li>Added additional object check to prevent PHP warning in certain cases when using the Separate Archives option in the Script Manager.<\\/li>\\n<li>Added some additional logic to filter duplicate scripts out of the Script Manager master array if they are present.<\\/li>\\n<li>CSS fixes in the Script Manager for better compatibility.<\\/li>\\n<li>Expanded the Script Manager current ID function for better reliability.<\\/li>\\n<\\/ul>\\n<p>1.3.5<\\/p>\\n<ul>\\n<li>Added new Disable REST API option which will disable REST API requests and display an authentication error message if the requester doesn\'t have permission.<\\/li>\\n<li>Added additional action removal to the Remove REST API Links function.<\\/li>\\n<li>Made some changes to the Script Manager save button. It is now fixed on the bottom of the screen for easier access without having to scroll.<\\/li>\\n<li>Additional Script Manager style adjustments.<\\/li>\\n<\\/ul>\\n<p>1.3.4<\\/p>\\n<ul>\\n<li>Minor update to Remove Comment URLs function priority for better compatibility with theme templates.<\\/li>\\n<\\/ul>\\n<p>1.3.3<\\/p>\\n<ul>\\n<li>Added new option to Remove Comment URLs.<\\/li>\\n<li>Added French (fr_FR) language translation.<\\/li>\\n<li>Fixed a PHP warning that would occur when saving Script Manager settings in some instances when Display Archives was also enabled.<\\/li>\\n<\\/ul>\\n<p>1.3.2<\\/p>\\n<ul>\\n<li>Added new option to Add Blank Favicon in the Extras tab.<\\/li>\\n<li>Fixed an issue in the Script Manager Global View where options set for the home page would show up as a 0 with a broken link.<\\/li>\\n<li>Added some additional styles to the main Script Manager view for better compatibility.<\\/li>\\n<\\/ul>\\n<p>1.3.1<\\/p>\\n<ul>\\n<li>Fixed a bug that would sometimes cause an enabled message to display on the front end when using the Regex option in the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.3.0<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/regex\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Regex<\\/a> option the Script Manager for both disables and exceptions.<\\/li>\\n<li>Added new Reset option in the Script Manager settings which allows for a complete wipe + reset of all configured Script Manager options.<\\/li>\\n<li>Added additional Script Manager styles to improve compatability.<\\/li>\\n<li>Added new status message in Script Manager global view when no options have been set.<\\/li>\\n<\\/ul>\\n<p>1.2.9<\\/p>\\n<ul>\\n<li>Updated uninstallation function to account for new Script Manager settings<\\/li>\\n<li>Updated Google Analytics Disable Display Features function to work correctly with Google\'s new format.<\\/li>\\n<li>Added support to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#monster-insights\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Use MonsterInsights<\\/a> along with Perfmatters local analytics functionality.<\\/li>\\n<li>Added new option in Script Manager settings to Display Archives which will allow you to selectively enable scripts on generated archive pages.<\\/li>\\n<\\/ul>\\n<p>1.2.8<\\/p>\\n<ul>\\n<li>Added mobile + responsive styles to the Script Manager navigation.<\\/li>\\n<li>Added additional styles to the Script Manager for compatibility.<\\/li>\\n<li>Script Manager javascript changes + improvements, specifically for compatibility with sites script minification plugins.<\\/li>\\n<li>Fixed a bug where the Script Manager disclaimer would not turn back on after being switched off.<\\/li>\\n<\\/ul>\\n<p>1.2.7<\\/p>\\n<ul>\\n<li>Small patch to check for a required WP function and include core file if necessary for some setups.<\\/li>\\n<\\/ul>\\n<p>1.2.6<\\/p>\\n<ul>\\n<li>All new Script Manager! View updated documentation at\\u00a0<a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-scripts-per-post-page\\/\\\">https:\\/\\/perfmatters.io\\/docs\\/disable-scripts-per-post-page\\/<\\/a>.<\\/li>\\n<li>Fix to remove Emoji DNS Prefetch when Emojis are disabled<\\/li>\\n<\\/ul>\\n<p>1.2.5<\\/p>\\n<ul>\\n<li>Fixed an issue with the Change Login URL function that was causing an error when using WP-CLI.<\\/li>\\n<li>Added some additional compatibility styles to the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.2.4<\\/p>\\n<ul>\\n<li>Fixed a bug in the Script Manager that caused Current URL Enable checkboxes to not save properly in certain situations.<\\/li>\\n<li>Updated EDD license functions to process proper SSL verification when calling the WordPress HTTP API.<\\/li>\\n<li>Updated perfmatters_default_options array with new options from recent updates.<\\/li>\\n<li>Removed BETA tag from Local Analytics option.<\\/li>\\n<li>Added more details to the Script Manager Global Settings to see which post IDs and post types have settings assigned to them.<\\/li>\\n<li>Additional styles added to the Script Manager for better compatibility.<\\/li>\\n<li>Updated .pot and translation files.<\\/li>\\n<\\/ul>\\n<p>1.2.3<\\/p>\\n<ul>\\n<li>Bugfix - Rolled back some of the heartbeat changes from the previous update to do some additional testing. Should solve some plugin conflicts that popped up.<\\/li>\\n<\\/ul>\\n<p>1.2.2<\\/p>\\n<ul>\\n<li>Added additional WooCommerce checks for WC specific pages before running disable functions.<\\/li>\\n<li>Changes to the Disable Heartbeat function to avoid causing a script dependency error.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-password-meter-strength\\/\\\">Disable Password Strength Meter<\\/a> option.<\\/li>\\n<li>Fixed an issue that was causing Script Manger dropdown colors to not display correctly when jQuery was disabled.<\\/li>\\n<li>Modified admin notice to print our using \'admin_notices\' hook. (credit: Christian Follmann)<\\/li>\\n<li>Made some adjustments to Script Manager copy to remove unnecessary HTML from the translations. (credit: Christian Follmann)<\\/li>\\n<li>Props to Hasan Basri (<a href=\\\"http:\\/\\/www.hasanbasri93.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=http:\\/\\/www.hasanbasri93.com&amp;source=gmail&amp;ust=1530375831273000&amp;usg=AFQjCNHnfwHkAwWtNxgfmCyGrwSm3NEyng\\\">www.hasanbasri93.com<\\/a>) for Indonesian (id_ID) translation.\\u00a0&#x1f44f;<\\/li>\\n<li>Updated translations based on the new .pot file.<\\/li>\\n<li>Various other minor tweaks + improvements.<\\/li>\\n<\\/ul>\\n<p>1.2.1<\\/p>\\n<ul>\\n<li>Updated Local Analytics function to improve compatibility with different server setups.<\\/li>\\n<\\/ul>\\n<p>1.2.0<\\/p>\\n<ul>\\n<li>New option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/\\\">Enable Local Analytics<\\/a>, along with a new dedicated Google Analytics tab with various related options.<\\/li>\\n<li>Added some additional logic to redirect RSS Feed URLs when Disable RSS Feeds is toggled on.<\\/li>\\n<li>Fixed an issue that was causing certain email links not to work when using a Custom Login URL.<\\/li>\\n<li>Fixed a bug that was causing the password reset link not to function properly when using a Custom Login URL in a multisite environment.<\\/li>\\n<li>Made some adjustments to the Disable Self Pingbacks function to fix an issue with case sensitivity.<\\/li>\\n<li>Updated text domain for translations in the EDD Updater class.<\\/li>\\n<li>Fixed a bug where the Clean Uninstall option would still show up on individual sites in a multisite environment.<\\/li>\\n<li>Props to\\u00a0PDPK di Mauro Panzarola\\u00a0(<a href=\\\"https:\\/\\/pdpkapp.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=https:\\/\\/pdpkapp.com&amp;source=gmail&amp;ust=1526653041476000&amp;usg=AFQjCNHfek6Z-CMgUhd0MwvU5QGK6cm0hg\\\">https:\\/\\/pdpkapp.com<\\/a>) for Italian (it_IT) translation.\\u00a0&#x1f44f;<\\/li>\\n<\\/ul>\\n<p>1.1.9<\\/p>\\n<ul>\\n<li>Perfmatters is now translation ready! If you are interested in helping out with a translation, please <a href=\\\"https:\\/\\/perfmatters.io\\/contact\\/\\\">contact us<\\/a>.<\\/li>\\n<li>Props to Christian Foellmann (<a href=\\\"https:\\/\\/github.com\\/cfoellmann\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">cfoellmann@GitHub<\\/a>) for German (de_DE) translation.\\u00a0&#x1f44f;<\\/li>\\n<li>Fixed a PHP undefined index warning in the Script Manager.<\\/li>\\n<li>Fixed a bug that was causing issues with the Change Login URL slug when using certain permalink settings.<\\/li>\\n<\\/ul>\\n<p>1.1.8<\\/p>\\n<ul>\\n<li>Fixed a compatibility issue with Script Manager dequeue priority that could cause it to not function properly.<\\/li>\\n<li>Minor update to the uninstall function.<\\/li>\\n<\\/ul>\\n<p>1.1.7<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the remove query strings option to conflict with files that have necessary query string parameters (Google Fonts).<\\/li>\\n<\\/ul>\\n<p>1.1.6<\\/p>\\n<ul>\\n<li>Added new Clean Uninstall option in the extras tab.<\\/li>\\n<li>Added new Preconnect option in the extras tab.<\\/li>\\n<\\/ul>\\n<p>1.1.5<\\/p>\\n<ul>\\n<li>Fixed multiple PHP warnings related to settings + option initialization.<\\/li>\\n<\\/ul>\\n<p>1.1.4<\\/p>\\n<ul>\\n<li>Added multisite support with the ability to manage default network settings and network access control.<\\/li>\\n<li>Made some adjustments to plugin naming conventions throughout WordPress admin screens, menus, etc...<\\/li>\\n<li>Removed BETA tag on Change Login URL option.<\\/li>\\n<\\/ul>\\n<p>1.1.3<\\/p>\\n<ul>\\n<li>Added new Change Login URL (BETA) feature to change your WordPress login URL and block the default wp-admin and wp-login endpoints from being directly accessed.<\\/li>\\n<li>Added new Disable Dashicons feature to disable Dashicons from the front end when not logged in.<\\/li>\\n<\\/ul>\\n<p>1.1.2<\\/p>\\n<ul>\\n<li>Added character masking to the license key input field.<\\/li>\\n<\\/ul>\\n<p>1.1.1<\\/p>\\n<ul>\\n<li>Added new CDN URL Rewrite feature in a new settings tab with various settings to customize your configuration.<\\/li>\\n<li>Added new Global Settings section in the Script Manager with a visual representation of the Script Manager options set across the entire site.<\\/li>\\n<li>Made some updates to the Script Manager layout in preparation for future additional features.<\\/li>\\n<\\/ul>\\n<p>1.1.0<\\/p>\\n<ul>\\n<li>Added new Disable Google Maps toggle.<\\/li>\\n<li>Added some backend logic to the Script Manager to hide scripts that have already been disabled sitewide via the main plugin settings.<\\/li>\\n<li>Update to the EDD license activation function variables to help prevent activation conflicts with other plugins.<\\/li>\\n<\\/ul>\\n<p>1.0.9<\\/p>\\n<ul>\\n<li>Removed the toggle to disable WooCommerce reviews, as there is already a WooCommerce setting that provides that functionality.<\\/li>\\n<\\/ul>\\n<p>1.0.8<\\/p>\\n<ul>\\n<li>Added new WooCommerce section to the options tab with multiple toggles to disable or limit certain WooCommerce scripts and functionality.<\\/li>\\n<li>Added some new styles to the plugin admin page to allow for clearer organization of different sections.<\\/li>\\n<li>Fixed an undefined index notice in the Script Manager.<\\/li>\\n<li>Added some additional styles to the checkboxes in the Script Manager to fix a theme compatibility issue.<\\/li>\\n<\\/ul>\\n<p>1.0.7<\\/p>\\n<ul>\\n<li>Added functionality to remove the shortlink\\u00a0HTTP header when \'Remove Shortlink\' is toggled on.<\\/li>\\n<li>Added functionality to remove the xmlrpc.php link as well as the X-Pingback HTTP header when \'Disable XML-RPC\' is toggled on.<\\/li>\\n<\\/ul>\\n<p>1.0.6<\\/p>\\n<ul>\\n<li>Removed BETA label from Script Manager.<\\/li>\\n<li>Added new \'DNS Prefetch\' option in the Extras tab.<\\/li>\\n<\\/ul>\\n<p>1.0.5<\\/p>\\n<ul>\\n<li>Added new toggle to \'Remove REST API Links\'.<\\/li>\\n<li>Renamed \'Remove Feed Links\' toggle for more clarification.<\\/li>\\n<li>UI improvements, hovering tooltips, more links to the web documentation, etc\\u2026<\\/li>\\n<li>Added version numbers to admin scripts to avoid caching on plugin update.<\\/li>\\n<li>Refactored a good portion of the settings initialization code.<\\/li>\\n<li>Removed \\\"Beta\\\" status for script manager. It has been fully tested now and is ready to use in production.<\\/li>\\n<li><\\/li>\\n<\\/ul>\\n<p>1.0.4<\\/p>\\n<ul>\\n<li>Fixed a few PHP warnings dealing with the Script Manager option array management.<\\/li>\\n<li>Fixed a UI bug in the Script Manager causing certain post type checkboxes\\u00a0to not be selectable.<\\/li>\\n<\\/ul>\\n<p>1.0.3<\\/p>\\n<ul>\\n<li>Introduced the new Script Manager feature to disable scripts on a per page\\/post basis.<\\/li>\\n<\\/ul>\\n<p>1.0.2<\\/p>\\n<ul>\\n<li>Added Extras tab with a new option for Accessibility\\u00a0Mode. Enabling this will turn off the custom styles we use for our settings toggles and revert to standard HTML checkboxes.<\\/li>\\n<li>Additional accessibility improvements.<\\/li>\\n<li>A few style fixes.<\\/li>\\n<\\/ul>\\n<p>1.0.1<\\/p>\\n<ul>\\n<li>Accessibility improvements to the plugin settings page.<\\/li>\\n<\\/ul>\\n<p>1.0.0<\\/p>\\n<ul>\\n<li>Plugin launched.<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"https:\\/\\/perfmatters.io\\/wp-content\\/uploads\\/edd\\/2021\\/07\\/perfmatters-plugin-banner-1544x500-1.png\",\"low\":\"https:\\/\\/perfmatters.io\\/wp-content\\/uploads\\/edd\\/2021\\/07\\/perfmatters-plugin-banner-772x250-1.png\"},\"icons\":{\"1x\":\"https:\\/\\/perfmatters.io\\/wp-content\\/uploads\\/edd\\/2021\\/11\\/perfmatters-logo-250x250-1-128x128.png\",\"2x\":\"https:\\/\\/perfmatters.io\\/wp-content\\/uploads\\/edd\\/2021\\/11\\/perfmatters-logo-250x250-1.png\"},\"msg\":\"No license key has been provided.\",\"tested\":\"6.4.2\",\"description\":[\"<p><a href=\\\"https:\\/\\/perfmatters.io\\/\\\">Perfmatters<\\/a> is a lightweight web performance plugin designed to help increase Google Core Web Vitals scores and fine-tune how assets load on your site.<\\/p>\\n<h4> Features <\\/h4>\\n<ul>\\n<li>Easy quick toggle options to turn off resources that shouldn\'t be loading. <\\/li>\\n<li>Disable scripts and plugins on a per post\\/page or sitewide basis with the Script Manager. <\\/li>\\n<li>Defer and delay JavaScript, including third-party scripts.<\\/li>\\n<li>Automatically remove unused CSS.<\\/li>\\n<li>Preload resources, critical images, and prefetch links for quicker load times.<\\/li>\\n<li>Lazy load images and enable click-to-play thumbnails on videos.<\\/li>\\n<li>Host Google Analytics and Google Fonts locally.<\\/li>\\n<li>Change your WordPress login URL. <\\/li>\\n<li>Disable and limit WordPress revisions.<\\/li>\\n<li>Add code to your header, body, and footer.<\\/li>\\n<li>Optimize your database.<\\/li>\\n<\\/ul>\\n<h4> Documentation <\\/h4>\\n<p>Check out our <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/\\\">documentation<\\/a> for more information on how to use Perfmatters.<\\/p>\"],\"changelog\":[\"<p>2.2.0 - 11.22.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusion and REST route exception for WS Form.<\\/li>\\n<li>Adjusted built-in WooCommerce stylesheet exclusions for better compatibility.<\\/li>\\n<li>Updated instant.page and FastClick script names for ad blocker compatibility.<\\/li>\\n<li>Fixed a PHP 8.2 deprecated warning coming from the CSS class.<\\/li>\\n<li>Fixed a Script Manager CSS issue where certain disable controls weren\'t hiding correctly in some cases.<\\/li>\\n<li>Removed unnecessary .git directory from background processor library folder.<\\/li>\\n<li>Script Manager security updates to fix XSS vulnerability.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.9 - 11.09.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusions for Presto Player, Raptive Ads, Slickstream, and WP Recipe Maker.<\\/li>\\n<li>Added new WP-CLI command to clear used CSS with multisite support.<\\/li>\\n<li>Added support for Google Material Symbols and Icons to local font feature.<\\/li>\\n<li>Added support for excluding by no-lazy class to CSS Background Images.<\\/li>\\n<li>Added support for lazy loading the poster attribute when set for a video tag.<\\/li>\\n<li>Made adjustments to CSS class to allow for stylesheet\'s to be excluded by any portion of their attribute string.<\\/li>\\n<li>Made some styling improvements to the YouTube preview thumbnail play button on hover.<\\/li>\\n<li>Fixed an issue where delayed stylesheets would be loaded in twice if individual JS delay was also being used.<\\/li>\\n<li>Updated Google Analytics 4 minimal script to version 1.10.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.8 - 10.13.2023<\\/p>\\n<ul>\\n<li>Fixed a compatibility issue with local fonts and WordPress 6.3.2 that was causing an error when new font files were requested.<\\/li>\\n<\\/ul>\\n<p>2.1.7 - 09.29.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusion for WP Forms.<\\/li>\\n<li>Script Manager style updates to match some recent changes to the main settings UI.<\\/li>\\n<li>Script Manager security updates to form submission handling.<\\/li>\\n<li>Added logic to strip whitespace from input row text fields used for preloads, preconnects, and fetch priority options.<\\/li>\\n<li>Adjusted CDN Regex slightly to account for certain subdirectory formats.<\\/li>\\n<li>Added specification to lazyload exclusion to only skip the fetchpriority attribute when set to high.<\\/li>\\n<li>Added Cornerstone request parameter to excluded page builders array.<\\/li>\\n<li>Updated certain AJAX action names to be specific to Perfmatters to prevent conflicts.<\\/li>\\n<li>Updated missing image dimension function to better handle images that have been prepped by lazy loaders outside of Perfmatters.<\\/li>\\n<li>Added Novashare discount link to plugin settings UI for Perfmatters customers.<\\/li>\\n<li>Fixed an issue where the database optimization process would not run correctly if selected toggles were not saved first.<\\/li>\\n<li>Fixed an issue in MU Mode where core cookie constants were not set in a specific instance when checking for the current post ID.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.6 - 08.31.2023<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing CodeMirror input fields from saving correctly.<\\/li>\\n<\\/ul>\\n<p>2.1.5 - 08.30.2023<\\/p>\\n<ul>\\n<li>Reworked the majority of the UI to use WordPress AJAX to save data and perform plugin actions.<\\/li>\\n<li>Renamed Bricks Delay JS quick exclusion, as it can be used to target more than just their slider.<\\/li>\\n<li>Adjusted clean_html utility function regex to better handle large inline data scripts.<\\/li>\\n<li>Added skip-lazy class to built-in lazy loading exclusions.<\\/li>\\n<li>Added right-to-left admin styles for better usability on RTL sites.<\\/li>\\n<li>Fixed an issue where certain HTML characters would not print correctly when saved in a fetch priority selector input field.<\\/li>\\n<li>Fixed an issue where fetch priority selectors would sometimes not get the correct priority applied when set to low.<\\/li>\\n<li>Fixed a typo in the fetch priority tooltip.<\\/li>\\n<li>Updated background processing library to version 1.1.1.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.4 - 08.08.2023<\\/p>\\n<ul>\\n<li>Added new preload option to add the <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/fetch-priority\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Fetch Priority<\\/a> attribute to different resources on the site to help improve LCP.<\\/li>\\n<li>Added built-in lazy loading exclusion for fetchpriority attribute.<\\/li>\\n<li>Added Delay JS quick exclusion for Termageddon + Usercentrics.<\\/li>\\n<li>Switched individual JS delay to use the same inline script as delay all to take advantage of delayed triggering of event listeners.<\\/li>\\n<li>Fixed an issue where an empty notice was appearing when a database optimization process completed.<\\/li>\\n<li>Fixed an issue with critical image preloads where an image with an empty src attribute would prevent other similar ones from being added on the same URL.<\\/li>\\n<li>UI improvements to input row sections.<\\/li>\\n<\\/ul>\\n<p>2.1.3 - 07.02.2023<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing existing Script Manager settings from showing up in certain instances.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.2 - 06.29.2023<\\/p>\\n<ul>\\n<li>Added new lazy loading advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude-parent-selector\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Images by Parent Selector<\\/a>.<\\/li>\\n<li>Added built-in exclusion to Delay JS for jqueryParams inline script to prevent load order issues.<\\/li>\\n<li>Added additional built-in exclusions to Remove Unused CSS for better compatibility with Elementor.<\\/li>\\n<li>Added HTTPS check to PERFMATTERS_CACHE_URL definition.<\\/li>\\n<li>Updated Script Manager UI to sort plugins alphabetically by plugin name as well as assets inside each individual section alphabetically by script handle.<\\/li>\\n<li>Fixed an issue where plugins without any enqueued scripts would not always show up in the Script Manager (MU Mode) after visiting the global view.<\\/li>\\n<li>Updated background processing library to version 1.1.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.1<\\/p>\\n<ul>\\n<li>Added <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/wp-cli\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">WP-CLI<\\/a> support for managing plugin license key activation.<\\/li>\\n<li>Changed behavior of Disable Cart Fragments toggle to only load cart fragmentation script when there are items in the cart.<\\/li>\\n<li>Added default array for critical image preload exclusions that are always needed.<\\/li>\\n<li>Added additional Delay JS quick exclusions for Bricks Slider and WP Armour.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor and Google Reviews Widget.<\\/li>\\n<li>Updated lazy loading fade-in effect to use CSS animation property instead of transition for better compatibility with existing element transitions.<\\/li>\\n<li>Added requirement for advanced options to be turned on to be able to defer jQuery.<\\/li>\\n<li>Added WP-CLI request exclusion to MU plugin functions.<\\/li>\\n<li>Fixed a PHP warning that could sometimes be generated if an image was not able to be parsed for missing dimensions.<\\/li>\\n<li>Updated instant.page library to version 5.2.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.0<\\/p>\\n<ul>\\n<li>Added new delay JS option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#quick-exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Quick Exclusions<\\/a> that will show up when certain popular plugins and themes are activated.<\\/li>\\n<li>Made some updates to the Script Manager UI to match recent changes to the main plugin settings.<\\/li>\\n<li>Cleared out some code for the previous settings admin header that was no longer needed.<\\/li>\\n<li>Made an adjustment to CDN URL function to work even if a trailing slash was entered.<\\/li>\\n<li>Rearranged our local and Google font options to give frequently used options more priority.<\\/li>\\n<li>Fixed a bug where multiple settings sections were displaying at the same time after saving from the database tab.<\\/li>\\n<li>Fixed an issue where accessibility mode tooltips were not getting styled properly in the plugin UI.<\\/li>\\n<li>Fixed a styling issue where link and button colors were getting applied outside of the main Perfmatters admin container.<\\/li>\\n<li>Fixed an issue in MU Mode where the global filtered plugin list would not always return correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.9<\\/p>\\n<ul>\\n<li>Updated Request library functions used to download local font files to fix a compatibility issue with WordPress 6.2.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_preloads_ready\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_preloads_ready<\\/a> filter.<\\/li>\\n<li>Fixed a styling issue in Safari where the settings UI logo was getting clipped.<\\/li>\\n<\\/ul>\\n<p>2.0.8<\\/p>\\n<ul>\\n<li>Updated plugin settings UI. Completely overhauled admin header and navigation. Made additional improvements to various elements (icons, buttons, toggles, etc.).<\\/li>\\n<li>Added additional checks to allow PERFMATTERS_CACHE_DIR and PERFMATTERS_CACHE_URL to be manually set in wp-config.php.<\\/li>\\n<li>Updated user agent for local font remote request.<\\/li>\\n<li>Fixed an issue where multiple preload tags for the same resource could be printed if the resource was matched more than once in the DOM.<\\/li>\\n<li>Fixed an issue where an individually delayed script would fail to load if it matched more than one delayed script entry.<\\/li>\\n<li>Fixed an issue where FastClick script could still load even if Delay JS was turned off.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.7<\\/p>\\n<ul>\\n<li>Fixed an issue that was introduced in the last update that was causing certain images that had their HTML modified by another tool not to lazy load correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#minimal-v4\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minimal v4<\\/a> script type option in local analytics.<\\/li>\\n<li>Added support for ::after pseudo element when lazy loading CSS background images.<\\/li>\\n<li>Added support for AVIF images in a source tag to preload critical images feature.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_preload_critical_images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_preload_critical_images<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_image_dimensions_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_image_dimensions_exclusions<\\/a> filter.<\\/li>\\n<li>Added notice to plugin update row if there is not an active license key.<\\/li>\\n<li>Added async attribute to Instant Page script tag.<\\/li>\\n<li>Added async attribute to all relevant local analytics script tags.<\\/li>\\n<li>Reworked preload class to allow managing preloads entirely with perfmatters_preloads filter if needed.<\\/li>\\n<li>Fixed an issue in MU Mode where plugins would not always disable correctly when helper plugins with similar directories were also active.<\\/li>\\n<li>Fixed a couple of PHP warnings in MU plugin that would show up when certain variables were not declared.<\\/li>\\n<li>Fixed an issue where our lazy loading script was attempting to load in images that had been prepped by another active lazy loader.<\\/li>\\n<li>Fixed an issue where base64 encoded images were being picked up by missing image dimensions feature.<\\/li>\\n<li>Removed BETA tag from preload critical images option.<\\/li>\\n<\\/ul>\\n<p>2.0.5<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_exclude_leading_images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_exclude_leading_images<\\/a> filter.<\\/li>\\n<li>Fixed an issue that was affecting lazy loaded inline background images in certain formats.<\\/li>\\n<li>Fixed a PHP warning related to Fastclick and the built-in exclusion for WooCommerce pages.<\\/li>\\n<li>Updated license key field to prevent it from getting auto-filled by browser extensions.<\\/li>\\n<\\/ul>\\n<p>2.0.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing the Perfmatters admin bar menu and meta options to not show up in the admin.<\\/li>\\n<li>Added additional nopin attribute for Pinterest to YouTube preview thumbnails.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.3<\\/p>\\n<ul>\\n<li>Added new local Google fonts advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/host-google-fonts-locally\\/#async\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Load Asynchronously<\\/a>.<\\/li>\\n<li>Added user agent check before running output buffer with initial exclusion for Usercentrics scanner.<\\/li>\\n<li>Added support for CSS variables when they are being used for lazy loaded inline background images.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload_youtube_autoplay\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_youtube_autoplay<\\/a> filter.<\\/li>\\n<li>Improved delay all script handling of jQuery load event.<\\/li>\\n<li>Changed all WooCommerce checks to use class_exists for better compatibility.<\\/li>\\n<li>Adjusted the order of preloads in the buffer to make sure they print above used CSS.<\\/li>\\n<li>Moved buffer class initialization to wp action hook to improve filtering possibilities.<\\/li>\\n<li>Moved WooCommerce built-in exclusions to apply to select individual features instead of the entire buffer.<\\/li>\\n<li>Slight modification to previous MU Mode addition to fix an issue.<\\/li>\\n<li>Fixed an issue where custom heartbeat interval was not being applied correctly when editing certain custom post types.<\\/li>\\n<li>Fixed an issue with the local stylesheet CDN URL when advanced options were turned on but no URL was set.<\\/li>\\n<li>Fixed an issue where delay script was printing out more than once if multiple closing body tags were present in the DOM.<\\/li>\\n<\\/ul>\\n<p>2.0.2<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing Removed Unused CSS from running correctly in certain cases when Advanced Options were toggled on.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.1<\\/p>\\n<ul>\\n<li>Added new toggle to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/advanced-options\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Show Advanced Options<\\/a> in the Perfmatters UI.<\\/li>\\n<li>Added new advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#disable-click-delay\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disable Click Delay<\\/a> in JavaScript section.<\\/li>\\n<li>Added new advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#fastclick\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Enable FastClick<\\/a> in JavaScript section.<\\/li>\\n<li>Added new advanced option to specify a <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#cdn-url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CDN URL<\\/a> in CSS section.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#local-redirect\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Local Redirect<\\/a> option to existing login URL disabled behavior selection.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_buffer_excluded_extensions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_buffer_excluded_extensions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rucss_excluded_stylesheets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rucss_excluded_stylesheets<\\/a> filter.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor, Divi, Slider Revolution, OptimizePress, and WordPress core.<\\/li>\\n<li>Added additional logic in MU Mode to more reliably retrieve the ID for certain custom post types.<\\/li>\\n<li>Moved lazyload functions to new class structure to be more inline with current codebase.<\\/li>\\n<li>Modified regex for lazy loading inline background images to support additional formats.<\\/li>\\n<li>Integrated lazyload functions into the main output buffer to allow interaction with other existing features.<\\/li>\\n<li>Fixed an issue where dynamic preloads were not recognizing existing query strings in some cases.<\\/li>\\n<li>Fixed a PHP warning that would show up in some cases by adding additional string check when looping through rewrite array.<\\/li>\\n<li>Fixed an issue with MU Mode where sometimes the wrong plugin would get disabled if there were multiple plugins using similar directory paths.<\\/li>\\n<li>Fixed an issue where images inside script tags were being picked up by the Preload Critical Images function.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.0<\\/p>\\n<ul>\\n<li>Added new system for query string timestamps for Used CSS file method to help see changes quicker in environments with caching.<\\/li>\\n<li>Added support for ?perfmattersoff query string which gives the ability to quickly prevent the majority of Perfmatters features from running on the front end for testing purposes.<\\/li>\\n<li>Added additional support for updating the plugin via WP-CLI.<\\/li>\\n<li>Made some changes to admin bar menu item. There is now a Perfmatters top-level admin bar menu item that links to our plugin settings page. The Script Manager and Clear Used CSS function can be accessed by hovering over that main menu item if those features are enabled.<\\/li>\\n<li>Added new toggle in tools to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/hide-admin-bar-menu\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Hide Admin Bar Menu<\\/a>.<\\/li>\\n<li>Disabled certain features from running on WooCommerce cart, checkout, and account pages for better compatibility.<\\/li>\\n<li>Increased site limit in dropdowns on Multisite network settings page.<\\/li>\\n<li>Added additional compatibility styles to the Script Manager.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor, Astra, Kadence, and GenerateBlocks.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_login_url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_login_url<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload_noscript\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_noscript<\\/a> filter.<\\/li>\\n<li>Fixed an issue where YouTube preview thumbnails were generating a preload warning in certain instances.<\\/li>\\n<li>Fixed an issue that was causing analytics.js not to be served over HTTPS in instances where an SSL migration had been done previously on the site.<\\/li>\\n<li>Fixed an issue where delayed style attribute was applied to preloaded stylesheets that already existed in the DOM.<\\/li>\\n<li>Fixed an issue where some features were being allowed to run on XML sitemap URLs in certain cases.<\\/li>\\n<li>Fixed an issue where theme and plugin files were not falling back to a WordPress version query string when present in a dynamic preload.<\\/li>\\n<\\/ul>\\n<p>1.9.9<\\/p>\\n<ul>\\n<li>Added additional autosave interval options.<\\/li>\\n<li>Added WPBakery query string parameter to excluded page builders array.<\\/li>\\n<li>Changed certain lazy loading classes to be more specific to prevent conflicts.<\\/li>\\n<li>Adjusted lazy loading image attribute filter to not run unless images specifically are meant to be lazy loaded by Perfmatters.<\\/li>\\n<li>Added an additional function_exists check in the JS class to prevent an error from being thrown in some cases.<\\/li>\\n<\\/ul>\\n<p>1.9.8<\\/p>\\n<ul>\\n<li>Made adjustments to the CSS Background Image styles to work with some changes in the latest version of our lazy loading library.<\\/li>\\n<li>Fixed an issue that was preventing quotations from being stripped from background image URLs when prepping an inline background image for lazy loading.<\\/li>\\n<li>Fixed an issue where delayed CSS was not loading properly when using individual JS delay.<\\/li>\\n<li>Fixed an error that was being logged in some cases when checking for an active plugin in the JS class.<\\/li>\\n<\\/ul>\\n<p>1.9.7<\\/p>\\n<ul>\\n<li>Made an adjustment to how inline background images are prepped to work with some changes in the latest version of our lazy loading library.<\\/li>\\n<\\/ul>\\n<p>1.9.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_delay_click\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_delay_click<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_local_stylesheet_url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_local_stylesheet_url<\\/a> filter.<\\/li>\\n<li>Made some performance improvements to the way the lazy loading script and inline code are loaded.<\\/li>\\n<li>Added additional compatibility for Elementor animations when using Delay JS.<\\/li>\\n<li>Added additional details in the Script Manager global view for individual stored settings.<\\/li>\\n<li>Added the ability to identify and clear outdated post IDs set in the Script Manager options from the global view.<\\/li>\\n<li>Script Manager global view organization and style improvements.<\\/li>\\n<li>Updated lazy loading library to version 17.8.<\\/li>\\n<li>Updated instant.page library to version 5.1.1.<\\/li>\\n<li>Added Bricks query string parameter to excluded page builders array.<\\/li>\\n<li>Fixed an issue that was causing the cache directory to not create unique subsite paths for specific multisite setups.<\\/li>\\n<li>Fixed an issue where delayed stylesheets were not being loaded if Delay JS was toggled off in the post meta options.<\\/li>\\n<\\/ul>\\n<p>1.9.5<\\/p>\\n<ul>\\n<li>Added additional logic to Delay JS script to make sure the initial interaction is processed.<\\/li>\\n<li>Added additional styles to CSS Background Image feature to work with background images set on ::before selectors.<\\/li>\\n<li>Added additional default tags to various dropdowns in plugin settings for better clarification.<\\/li>\\n<li>Added default arrays for stylesheet and selector exclusions that are always needed.<\\/li>\\n<li>Adjusted perfmatters_cdn filter location for compatibility.<\\/li>\\n<li>Made some adjustments to CDN Rewrite Regex to fix some issues where unwanted strings were getting picked up as URLs in some cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.9.4<\\/p>\\n<ul>\\n<li>Updated EDD plugin updater class to version 1.9.2.<\\/li>\\n<li>Added default exclusion to REST API option for compatibility.<\\/li>\\n<\\/ul>\\n<p>1.9.3<\\/p>\\n<ul>\\n<li>Remove Used CSS filter adjustment to fix an issue where certain WordPress post functions wouldn\'t be available when trying to selectively disable the feature.<\\/li>\\n<li>Rolled back minor plugin UI JavaScript addition, as it was interfering with entering data on multiple lines in certain input fields.<\\/li>\\n<\\/ul>\\n<p>1.9.2<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_allow_buffer https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_used_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_used_css<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_allow_buffer\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_allow_buffer<\\/a> filter.<\\/li>\\n<li>Added a notice in the Script Manager when Testing Mode is enabled.<\\/li>\\n<li>Improved reliability of CSS Background Image function when child elements with additional background images are present.<\\/li>\\n<li>Script Manager style compatibility fixes.<\\/li>\\n<li>Fixed an issue where some post specific meta options were not being respected when determining if a feature should run.<\\/li>\\n<li>Fixed an issue where pressing enter on the main plugin settings page would trigger a specific form action instead of save settings.<\\/li>\\n<li>Changed CSS class initialization hook to be in the correct order with other output buffer functions.<\\/li>\\n<li>Made an adjustment to how we generate the local used stylesheet URL for better compatibility.<\\/li>\\n<li>Fixed an issue where loading attribute was still getting applied to images that were excluded from lazy loading.<\\/li>\\n<li>Fixed an issue where images inside an excluded picture element were not also getting excluded.<\\/li>\\n<li>Fixed an issue in the Script Manager where archives were not being grouped together with their respective post type.<\\/li>\\n<li>Additions to plugin UI JavaScript to allow for disabled sections to be hidden even when nested controllers are present.<\\/li>\\n<li>Moved background process library to composer autoloader.<\\/li>\\n<li>Removed BETA tag from Remove Unused CSS option.<\\/li>\\n<\\/ul>\\n<p>1.9.1<\\/p>\\n<ul>\\n<li>Added new option to lazy load <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#css-background-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CSS Background Images<\\/a>.<\\/li>\\n<li>Added new option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#dual-tracking\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dual Tracking<\\/a> when using gtag.js in local analytics.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rest_api_exceptions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rest_api_exceptions<\\/a> filter.<\\/li>\\n<li>Fixed an issue where individually delayed local scripts would not get correctly rewritten to load from the CDN.<\\/li>\\n<li>Fixed an issue where lazy loading would run into an error if no px or % was specified with the threshold value.<\\/li>\\n<li>Fixed an issue with buffer validation that was conflicting with certain caching setups.<\\/li>\\n<li>Fixed an issue where existing font preconnect and prefetch tags were not being detected properly when using Local Fonts.<\\/li>\\n<li>Fixed an error related to cookie constants when running MU Mode in certain environments.<\\/li>\\n<li>Fixed multiple AMP validation errors and added additional checks to prevent certain functions from running on AMP URLs.<\\/li>\\n<li>Minor adjustment to CDN rewrite regex pattern to work with encoded quotation characters.<\\/li>\\n<li>Changed toggle CSS selectors to be more specific to prevent conflicts.<\\/li>\\n<li>Moved plugin settings header output to in_admin_header action hook for compatibility.<\\/li>\\n<li>Moved JS optimization functions to new class structure to be more inline with current codebase.<\\/li>\\n<li>Improvements to critical image preloading allowed for a move to a singular output buffer.<\\/li>\\n<\\/ul>\\n<p>1.9.0<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing excluded selectors to not be recognized properly after Used CSS was cleared.<\\/li>\\n<li>Minor adjustments to the new plugin UI.<\\/li>\\n<\\/ul>\\n<p>1.8.9<\\/p>\\n<ul>\\n<li>Updated plugin settings UI.<\\/li>\\n<li>Added new post meta option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#clear-individual\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Clear Used CSS<\\/a> for an individual page or post type.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rucss_excluded_selectors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rucss_excluded_selectors<\\/a> filter.<\\/li>\\n<li>Fixed a lazy loading issue that was preventing some images from loading properly in Safari.<\\/li>\\n<li>Migrated Delay JS Timeout dropdown to a simpler on\\/off toggle that will default to 10 seconds. Our filter is also still available to set a custom timeout value.<\\/li>\\n<li>Fixed an issue with MU plugin that was interfering with rewrite rules in some instances.<\\/li>\\n<li>Added additional excluded page builder parameter for Flatsome UX.<\\/li>\\n<li>Moved restore default functionality to a separate option on the tools page.<\\/li>\\n<li>Code refactoring.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.8<\\/p>\\n<ul>\\n<li>Changed default setting for Used CSS Method from file to inline, as we think this will be the more compatible solution for most users going forward. If you were previously using the file method, you may need to save that option again.<\\/li>\\n<li>Added width and height parameters to placeholder SVGs to prevent warnings for a ratio mismatch that would happen for some images.<\\/li>\\n<li>Fixed an issue where the noscript tags were getting malformed for some images inside picture tags after lazy loading.<\\/li>\\n<li>Removed placeholder SVGs on source tags since the image tag will already have one.<\\/li>\\n<li>Changed settings export file name date format to be easier to organize when managing multiples.<\\/li>\\n<li>Updated tooltip for Blank Favicon option to be more clear.<\\/li>\\n<\\/ul>\\n<p>1.8.7<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#css-method\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Used CSS Method<\\/a> option to choose whether to load used CSS from a file or inline.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_cache_path\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_cache_path<\\/a> filter.<\\/li>\\n<li>Updated metabox functions to restrict metabox display to administrators only.<\\/li>\\n<li>Made some adjustments to custom login URL function to better support 3rd party tools using WP CLI.<\\/li>\\n<li>Added Fusion Builder query string parameters to excluded page builders array.<\\/li>\\n<li>Adjusted Unused CSS regex to be more consistent when stylesheets are placed in between other link tags.<\\/li>\\n<li>Changes to instances where ABSPATH was used to determine a directory location for better compatibility with certain hosts.<\\/li>\\n<li>Fixed an issue with Remove Global Styles option where duotone SVGs were not being removed on WordPress 5.9.2.<\\/li>\\n<li>Fixed an issue where WooCommerce block stylesheets were not getting correctly dequeued when Disable Scripts option was set.<\\/li>\\n<li>Fixed an issue that was causing the CSS Parser library not to get included correctly in certain cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.6<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-global-inline-styles-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remove Global Styles<\\/a> related to duotone filters.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_script_manager_locale\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_script_manager_locale<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_disable_woocommerce_scripts\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_disable_woocommerce_scripts<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_page_builders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_page_builders<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_behavior<\\/a> filter.<\\/li>\\n<li>Fixed an issue with the unused CSS parser that was incorrectly rewriting relative URLs if there was no query string present on the original stylesheet src.<\\/li>\\n<li>Added additional parameter to page builders array for compatibility.<\\/li>\\n<li>Fixed an issue that was causing the login URL disabled 404 behavior to result in an error if a 404 template was not found.<\\/li>\\n<li>Added some additional checks before creating cache directories for local fonts and used CSS.<\\/li>\\n<li>Fixed an issue that was causing the fade-in effect to conflict with child images inside a lazy loaded container.<\\/li>\\n<li>Fixed an undefined index warning coming from unused CSS settings update function.<\\/li>\\n<li>Added a default delay JS exclusion for admin only inline customize-support script.<\\/li>\\n<li>Refactored entire meta.php code to be more efficient (38% smaller) and in line with current structure.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.5<\\/p>\\n<ul>\\n<li>Added new feature to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#remove-unused-css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remove Unused CSS<\\/a> (BETA).<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_remove_unused_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_remove_unused_css<\\/a> filter.<\\/li>\\n<li>Adjusted CDN Rewrite buffer priority for better compatibility with other features.<\\/li>\\n<li>Made an improvement to the Disable XML-RPC function to return a 403 error when xmlrpc.php is accessed directly.<\\/li>\\n<li>Script Manager stylesheet updates for better compatibility.<\\/li>\\n<li>Fixed an issue in the Script Manager where the input controls were sometimes not displaying after toggling a script off.<\\/li>\\n<li>Added additional style for YouTube preview thumbnail play button to fix an alignment issue with certain setups.<\\/li>\\n<li>Buffer adjustments for compatibility.<\\/li>\\n<\\/ul>\\n<p>1.8.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was interfering with sitemap display in certain configurations.<\\/li>\\n<li>Added &lt;a&gt; element support for lazy loading inline background images.<\\/li>\\n<\\/ul>\\n<p>1.8.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_fade_in_speed\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_fade_in_speed<\\/a> filter.<\\/li>\\n<li>Fixed an issue that was preventing lazy loading fade in from working correctly with certain background images.<\\/li>\\n<li>Fixed an issue that was interfering with the display of certain inline SVG elements.<\\/li>\\n<li>Adjusted local analytics hook priority for better compatibility.<\\/li>\\n<li>Script Manager style updates for better compatibility.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.2<\\/p>\\n<ul>\\n<li>New Lazy Loading option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude-leading-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Leading Images<\\/a>.<\\/li>\\n<li>New Lazy Loading option to add a <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#fade-in\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Fade In<\\/a> effect.<\\/li>\\n<li>New option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/preload\\/#critical-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Preload Critical Images<\\/a> (BETA).<\\/li>\\n<li>Expanded Disable XML-RPC function to also remove pingback link tag if it is present in the document.<\\/li>\\n<li>Added new Delay JavaScript checkbox to meta options in the post editor.<\\/li>\\n<li>Added additional integration with perfmatters_delay_js filter.<\\/li>\\n<li>Moved YouTube autoplay parameter placement on lazy loaded iframes for better compatibility with existing query strings.<\\/li>\\n<li>Optimizations to lazy loading inline CSS functions.<\\/li>\\n<li>Various optimizations and improvements to the output buffer.<\\/li>\\n<li>Migrated manual preload functionality to use the output buffer which will allow for easier integration with new features.<\\/li>\\n<li>Made some adjustments to MU plugin functions to more reliably detect post IDs when using specific permalink setups.<\\/li>\\n<li>Fixed an issue where some Current URL links in the Script Manager\'s Global View were not pointing to the right posts.<\\/li>\\n<li>Fixed an issue with a certain endpoint that was redirecting to the custom login URL.<\\/li>\\n<li>Fixed a PHP notice that was sometimes appearing when refreshing local fonts.<\\/li>\\n<li>Removed BETA tag from Delay All JS option.<\\/li>\\n<\\/ul>\\n<p>1.8.1<\\/p>\\n<ul>\\n<li>Updated Local Google Font function to more effectively remove existing font preconnect and prefetch tags.<\\/li>\\n<li>Updated Local Google Font function for better compatibility with sites that still have remnants from a previous http to https migration.<\\/li>\\n<li>Fixed an issue in the Script Manager where the home page was being treated as a post if set to display the blog feed.<\\/li>\\n<\\/ul>\\n<p>1.8.0<\\/p>\\n<ul>\\n<li>Fixed an issue with Delay All JS that was preventing certain async scripts from fully loading.<\\/li>\\n<\\/ul>\\n<p>1.7.9<\\/p>\\n<ul>\\n<li>Added new options to the Script Manager to disable assets directly by post type, archive, user status, and device type.<\\/li>\\n<li>Added support for dynamic preloading by handle for enqueued scripts and styles.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_cdn\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_cdn<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_timeout\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_timeout<\\/a> filter.<\\/li>\\n<li>Fix to Delay All JS script for better compatibility with certain page builder animations.<\\/li>\\n<li>Updated class initialization for better compatibility.<\\/li>\\n<li>Fixed an issue where the Script Manager was interpreting certain array keys as shortcodes if they were identical.<\\/li>\\n<li>Added an additional check to prevent the Script Manager from being able to load on top of a page builder.<\\/li>\\n<li>Fixed a PHP notice coming from the MU plugin.<\\/li>\\n<li>Made some changes to our plugin updater function that should help with auto-updates in a multisite environment.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.8<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/missing-width-height-images\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Add Missing Image Dimensions<\\/a>.<\\/li>\\n<li>Added the ability to delete individual Script Manager options from the Global View.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js<\\/a> filter.<\\/li>\\n<li>Updated EDD plugin updater class to version 1.9.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.7<\\/p>\\n<ul>\\n<li>Fixed a PHP warning related to JavaScript deferral for specific configurations.<\\/li>\\n<li>Fixed an issue with lazy loading exclusions not being loaded correctly in some cases.<\\/li>\\n<\\/ul>\\n<p>1.7.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay Behavior<\\/a> dropdown with a new option to Delay All Scripts.<\\/li>\\n<li>Added new Lazy Loading <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#threshold\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Threshold<\\/a> option and adjusted the default value if not set to improve performance.<\\/li>\\n<li>Added confirmation message when manually running the database optimization tool.<\\/li>\\n<li>Updated disable emoji function to get rid of a PHP notice.<\\/li>\\n<li>Added additional check to MU Mode to only filter GET requests.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/#perfmatters_defer_js-filter\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_defer_js<\\/a> filter.<\\/li>\\n<li>Fixed an issue where Instant Page was attempting to run on the new widgets screen in WordPress 5.8.<\\/li>\\n<li>Fixed an issue with Local Google Fonts where certain invalid font URLs would still attempt to be downloaded and served.<\\/li>\\n<li>Removed BETA tag from fonts section.<\\/li>\\n<li>Delay JavaScript compatibility improvements.<\\/li>\\n<li>Added additional input validation functionality to plugin settings page.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.5<\\/p>\\n<ul>\\n<li>Added new custom login URL options to change the <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#disabled-behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disabled Behavior<\\/a> and set a custom <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#message\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Message<\\/a>.<\\/li>\\n<li>Migrated CDN, Analytics, and Extras tab data to separate sections in the Options tab for better organization and easier access.<\\/li>\\n<li>CDN rewrite improvements to better handle sites with multiple domain URLs.<\\/li>\\n<li>Regex adjustments to Local Fonts function for better reliability.<\\/li>\\n<li>Added exclusion checks to individual &lt;source&gt; tags when using WebP images.<\\/li>\\n<li>Added function to disable capital_P_dangit filter.<\\/li>\\n<li>Fixed a lazy loading warning that was showing in Microsoft Edge.<\\/li>\\n<li>Removed loading attribute that was getting applied to &lt;picture&gt; tags in some cases when using WebP images.<\\/li>\\n<li>Plugin UI navigation performance improvements.<\\/li>\\n<li>Plugin UI style fixes.<\\/li>\\n<li>Added a conditional check to only show WooCommerce options when WooCommerce is installed and activated.<\\/li>\\n<li>Fixed an MU Mode issue where the Home URL did not trigger a match if a query string was present.<\\/li>\\n<li>Fixed an issue where the Customizer was getting certain optimizations applied.<\\/li>\\n<li>Fixed an issue where the Disable Embeds toggle was interfering with responsive video styles.<\\/li>\\n<li>Script Manager UI fixes.<\\/li>\\n<li>Updated uninstall function to remove Perfmatters cache folder.<\\/li>\\n<li>Added readme.txt file.<\\/li>\\n<\\/ul>\\n<p>1.7.4<\\/p>\\n<ul>\\n<li>Re-enabled Local Google Fonts functionality.<\\/li>\\n<li>Refactoring of buffer-related code and various functions that were already using our main buffer filter.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.3<\\/p>\\n<ul>\\n<li>Rolled back the latest changes related to the new universal buffer class and Local Google Fonts while we do some more in-depth testing. We\'ll be working to release this feature next week using an alternative method.<\\/li>\\n<\\/ul>\\n<p>1.7.2<\\/p>\\n<ul>\\n<li>Added new Fonts section inside of the main Options tab.<\\/li>\\n<li>Added new option to use <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/font-display-swap\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Display Swap<\\/a> for Google fonts.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/host-google-fonts-locally\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Local Google Fonts<\\/a> option which will attempt to download any Google Font files and serve them from your local server or CDN.<\\/li>\\n<li>Integrated new universal HTML buffer library to help going forward with plugin features that manipulate DOM elements.<\\/li>\\n<li>Migrated CDN Rewrite feature to the universal buffer class.<\\/li>\\n<li>Added new perfmatters_delayed_scripts filter to modify the Delay JavaScript input array before any scripts are delayed.<\\/li>\\n<li>Added new perfmatters_preload filter to modify the Preloads data array before anything is printed.<\\/li>\\n<li>Made some compatibility improvements to the inline lazy loading JavaScript.<\\/li>\\n<li>Added attributes to delayed scripts to exclude them from being picked up by Litespeed Cache.<\\/li>\\n<li>Added exclusion for SiteGround Optimizer to the main Script Manager JavaScript file.<\\/li>\\n<li>Added CodeMirror support to all code text area inputs in plugin settings.<\\/li>\\n<li>Removed license activation check and corresponding links from the plugins page to improve back-end performance.<\\/li>\\n<\\/ul>\\n<p>1.7.1<\\/p>\\n<ul>\\n<li>Added expiration date row to license tab in plugin settings.<\\/li>\\n<li>Added support for WooCommerce shop page when setting a preload location by post ID.<\\/li>\\n<li>Fixed an issue with device exceptions not working correctly in MU Mode.<\\/li>\\n<li>Fixed a query string encoding issue that was affecting some email templates when using a custom login URL.<\\/li>\\n<\\/ul>\\n<p>1.7.0<\\/p>\\n<ul>\\n<li>Fixed an issue where Preload tags were still being printed on archive pages even if a location was set.<\\/li>\\n<li>Fixed a compatibility issue with older WordPress versions when using certain functions that check for a JSON request.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.9<\\/p>\\n<ul>\\n<li>New additions to preload feature, allowing specification for device type and location.<\\/li>\\n<li>Script Manager improvements to allow for Regex disable to be used alongside Current URL disables for the same script.<\\/li>\\n<li>Added new Script Manager exception for device type.<\\/li>\\n<li>Add new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#timeout\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay Timeout<\\/a> option when delaying JavaScript.<\\/li>\\n<li>Added new wheel event to user interaction script for delay function.<\\/li>\\n<li>Added new multisite network administration tool to apply default site settings to all subsites.<\\/li>\\n<li>Multiple improvements to WooCommerce disable scripts toggle for increased effectiveness.<\\/li>\\n<li>Added additional exclusions for JSON and REST requests to all asset optimization functions.<\\/li>\\n<li>Fixed an undefined index warning coming from local analytics function.<\\/li>\\n<li>Fixed an issue where YouTube preview thumbnails were getting a layout shift warning when using a theme with responsive embed support.<\\/li>\\n<li>Fixed a Script Manager bug that was not fully clearing exceptions when changing disable away from everywhere.<\\/li>\\n<li>Script Manager styling compatibility fixes.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.8<\\/p>\\n<ul>\\n<li>Compatibility fixes for local analytics when using MonsterInsights.<\\/li>\\n<li>Local analytics improvements for multisite.<\\/li>\\n<li>Added alt tag to YouTube preview thumbnail images.<\\/li>\\n<li>Fixed a PHP undefined index notice coming from functions.php.<\\/li>\\n<li>Translation file updates.<\\/li>\\n<\\/ul>\\n<p>1.6.7<\\/p>\\n<ul>\\n<li>Added new tool to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/purge-meta-options\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Purge Perfmatters Meta Options<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-google-maps-api-wordpress\\/#exclude\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Post IDs<\\/a> input for existing Disable Google Maps option.<\\/li>\\n<li>Added new gtag.js option to local analytics script type selection.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#gtag-cdn\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CDN URL<\\/a> input to local analytics options when using gtag.js.<\\/li>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#amp\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Enable AMP Support<\\/a> to local analytics.<\\/li>\\n<li>Moved Use MonsterInsights option to gtag.js script type and updated script replacement hook.<\\/li>\\n<li>Added onload function to style preloads to prevent duplicate preloads from occurring.<\\/li>\\n<li>Added exception for WP Rocket script deferral to our lazy load script.<\\/li>\\n<li>Added exception for site health tool to disable heartbeat function.<\\/li>\\n<li>Fixed an issue where background images weren\\u2019t being lazy loaded if the style attribute was the first attribute declared on the element.<\\/li>\\n<li>Script Manager styling fixes.<\\/li>\\n<li>Fixed a PHP warning coming from settings.php.<\\/li>\\n<li>Translation file updates.<\\/li>\\n<\\/ul>\\n<p>1.6.6<\\/p>\\n<ul>\\n<li>Added new Script Manager exception to select <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/script-manager-logged-in-logged-out\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">logged in or logged out<\\/a> users.<\\/li>\\n<li>Added new option in Script Manager settings to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/script-dependencies\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Display Dependencies<\\/a>.<\\/li>\\n<li>Added total plugin sizes in the Script Manager.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#viewport-threshold\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_threshold<\\/a> filter to adjust the distance at which lazy elements are loaded.<\\/li>\\n<li>Multiple Script Manager style and UI improvements.<\\/li>\\n<li>Fixed an issue where MU mode script was attempting to run on wp-login.php.<\\/li>\\n<li>Multiple page builder compatibility fixes.<\\/li>\\n<li>Made an adjustment to prevent YouTube preview thumbnails from getting picked up by Pinterest image hover tools.<\\/li>\\n<li>Removed deprecated plugin option to Remove Query Strings. Make sure to double-check your preloads as Google needs the exact URL when preloading.<\\/li>\\n<li>PHP 8 compatibility testing.<\\/li>\\n<li>Minor adjustments to lazy load inline scripts to fix invalid markup warnings.<\\/li>\\n<\\/ul>\\n<p>1.6.5<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay JavaScript<\\/a> from loading until user interaction.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#script-type\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">gtag.js v4<\\/a> option to local analytics.<\\/li>\\n<li>Added new built-in option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude from Lazy Loading<\\/a> which can be used in addition to the existing filter.<\\/li>\\n<li>Add new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#youtube-preview-thumbnails\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_youtube_thumbnail_resolution<\\/a> filter to adjust YouTube preview thumbnail quality.<\\/li>\\n<li>Optimized analytics updater function.<\\/li>\\n<li>Updated EDD plugin updater class which will now allow for WordPress auto-update support.<\\/li>\\n<li>Removed option to Defer Inline JavaScript which is now being replaced by the new Delay JavaScript option.<\\/li>\\n<li>Adjusted Script Manager hook priority for better compatibility.<\\/li>\\n<li>Compatability fix to the DOM Monitoring lazy load option.<\\/li>\\n<li>Added compatibility fix for jQuery fitVids to lazy loading function.<\\/li>\\n<li>Fixed an issue where lazy loading was attempting to run on AMP pages.<\\/li>\\n<\\/ul>\\n<p>1.6.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing the Reset Script Manager button to not work correctly.<\\/li>\\n<li>Fixed an issue where the Perfmatters meta box wouldn\'t display if only using Lazy Loading.<\\/li>\\n<li>Adjusted Script Manager hook priority for better compatibility.<\\/li>\\n<li>Added additional checks to MU Mode plugin file to prevent it from interfering with certain REST API requests. (Fixes a bug when running the Yoast SEO data indexer.)<\\/li>\\n<li>Added additional checks to confirm user functions are available before verifying admin status.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.6.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/testing-mode\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Testing Mode<\\/a> option to the Script Manager settings.<\\/li>\\n<li>Rewrote script-manager.js entirely using vanilla JavaScript to get rid of jQuery dependency.<\\/li>\\n<li>Added additional MU Mode check to help prevent certain configurations from interfering with AJAX requests.<\\/li>\\n<li>Improved Script Manager form handling.<\\/li>\\n<li>Adjusted Script Manager disclaimer text and added a close button.<\\/li>\\n<li>Moved the Script Manager print function from the wp_footer hook to shutdown for better compatibility.<\\/li>\\n<li>Fixed an undefined index warning in the Lazy Load function.<\\/li>\\n<li>Added a Lazy Load exclusion for Gravity Forms iframes.<\\/li>\\n<li>Added a Rocket Loader exclusion to the Instant Page JS file.<\\/li>\\n<li>Added an exclusion to the CDN Rewrite for script-manager.js.<\\/li>\\n<li>Script Manager styling fixes for better compatibility.<\\/li>\\n<\\/ul>\\n<p>1.6.2<\\/p>\\n<ul>\\n<li>Updated placeholder text in Preload UI.<\\/li>\\n<li>Fixed an issue where the Password Strength Meter script was getting disabled in the admin.<\\/li>\\n<li>Small tweak to JS Deferral buffer to make sure HTML is being filtered correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.1<\\/p>\\n<ul>\\n<li>New Local Analytics Script Type toggle with new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minimal Analytics<\\/a> options.<\\/li>\\n<li>New <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">JavaScript Deferral<\\/a> options in Extras &gt; Assets.<\\/li>\\n<li>Updates to Cart Fragments and Password Strength Meter toggles to improve effectiveness.<\\/li>\\n<li>Multiple updates to Instant Page functionality for better compatibility.<\\/li>\\n<li>Multiple plugin admin UI updates and improvements.<\\/li>\\n<li>Script Manager style updates for better compatibility.<\\/li>\\n<li>MU Mode improvements for increased stability.<\\/li>\\n<li>Fixed an issue causing Preload and Preconnect settings to not save correctly in some cases.<\\/li>\\n<\\/ul>\\n<p>1.6.0<\\/p>\\n<ul>\\n<li>Added a filter to disable WordPress\' native lazy loading when Perfmatters\' lazy loading is active.<\\/li>\\n<li>Adjusted Script Manager styles to more effectively overlay the entire page while still allowing admin bar functions to be fully available.<\\/li>\\n<li>Fixed an undefined index notice that was appearing on specific lazy loading and script manager functions.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.9<\\/p>\\n<ul>\\n<li>Added new Preloading section in the Extras tab, with new options for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/link-prefetch\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Instant Page<\\/a> and <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/preload\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Preload<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_forced_attributes<\\/a> filter to allow for matched elements to be skipped when checking for exclusions.<\\/li>\\n<li>Added support for WooCommerce Shop page to show up as a Current URL option in the Script Manager.<\\/li>\\n<li>Added exclusions for REST and AJAX requests to MU Mode function.<\\/li>\\n<li>Fixed a bug that was causing the MU Mode function to still run even if the Script Manager was disabled.<\\/li>\\n<li>Fixed an issue where images were being prepped for lazy loading on feed URLs.<\\/li>\\n<li>Fixed an issue where lazy loading was breaking images in embeds from the same site.<\\/li>\\n<li>Compatibility fixes for lazy load script with Autoptimize and Litespeed Cache.<\\/li>\\n<\\/ul>\\n<p>1.5.8<\\/p>\\n<ul>\\n<li>Added support for lazy loading background images, iframes, and videos.<\\/li>\\n<li>Added new lazy loading option to enable Youtube Preview Thumbnails.<\\/li>\\n<li>Added multiple page builder exclusions to our lazy load functions.<\\/li>\\n<li>Added proper support for 404 templates in the Script Manager (non-MU).<\\/li>\\n<li>Fixed some minor styling issues in the Script Manager UI.<\\/li>\\n<li>Fixed an undefined index in the database optimizer class.<\\/li>\\n<li>Removed customer email row from the license tab.<\\/li>\\n<\\/ul>\\n<p>1.5.7<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/optimize-wordpress-database\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Database Optimization<\\/a> section in the Extras tab.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">DOM Monitoring<\\/a> option to complement our existing lazy load settings.<\\/li>\\n<li>Added additional input styles in the Script Manager for better compatibility<\\/li>\\n<li>Made some changes to the Script Manager file include process for better compatibility.<\\/li>\\n<li>Fixed multiple undefined index notices.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.6<\\/p>\\n<ul>\\n<li>Plugin UI improvements, new tooltip styles.<\\/li>\\n<li>Licensing workflow improvements. Simpler UI, license no longer deactivated on plugin deactivation, license auto-activates on input.<\\/li>\\n<li>Moved Script Manager javascript back to a separate plugin file for better compatibility.<\\/li>\\n<li>Added Remove Query Strings exemption to the Script Manager javascript file.<\\/li>\\n<li>Code refactoring.<\\/li>\\n<\\/ul>\\n<p>1.5.5<\\/p>\\n<ul>\\n<li>Added a new modified function to the MU plugin file which should be able to get the current post ID more effectively for certain types of URLs (custom post types, blog page, etc...).<\\/li>\\n<li>Made some improvements to the MU plugin file detection and update process.<\\/li>\\n<\\/ul>\\n<p>1.5.4<\\/p>\\n<ul>\\n<li>Added additional tooltip warning text to the MU Mode toggle.<\\/li>\\n<li>Added <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/mu-mode\\/#debug-mode\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">mu_mode=off<\\/a> URL parameter to force the page to load with MU Mode settings disabled.<\\/li>\\n<li>Added an additi0nal check to make sure MU Mode settings don\'t run if the base Perfmatters plugin is not activated.<\\/li>\\n<\\/ul>\\n<p>1.5.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/mu-mode\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">MU Mode<\\/a> (BETA) feature in the Script Manager which can be used to disable plugins per page.<\\/li>\\n<li>Reworked main Script Manager update function to dynamically save settings via AJAX to prevent having to reload the page every time options are saved.<\\/li>\\n<li>Moved Script Manager javascript inline to better support further updates.<\\/li>\\n<li>Fixed an issue in the Script Manager where a Current URL disable would not function correctly for an individual script if the plugin\'s scripts were disabled globally on a different Current URL.<\\/li>\\n<li>Changed hooks for Disable Google Maps and Disable Google Fonts toggles to prevent a conflict with Gutenberg.<\\/li>\\n<li>Added an exclusion attribute to our LazyLoad script to prevent it from conflicting with WP Rocket\'s JS deferral feature.<\\/li>\\n<li>Updated EDD Plugin Updater Class to version 1.7.1.<\\/li>\\n<li>Updated various translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.2<\\/p>\\n<ul>\\n<li>Added new options in Extras \\u2192 Tools to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/import-export\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Import and Export Plugin Settings<\\/a>.<\\/li>\\n<li>Updated Script Manager form input names to be more specific to prevent conflicts when saving Script Manager settings.<\\/li>\\n<li>Added compatibility fix for Beaver Builder to the Script Manager dequeue function.<\\/li>\\n<li>Updated French and German translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.1<\\/p>\\n<ul>\\n<li>Adjusted the Script Manager styles for better compatibility with other admin bar tools when the Script Manager UI is being displayed.<\\/li>\\n<li>Fixed an issue in the Script Manager that was causing individual script settings to not work correctly when the parent group had previously been disabled.<\\/li>\\n<li>Updated Russian (ru_RU) translation files.<\\/li>\\n<li>Updated plugin description.<\\/li>\\n<\\/ul>\\n<p>1.5.0<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the Script Manager dequeue function to interfere with the query loop in certain cases.<\\/li>\\n<\\/ul>\\n<p>1.4.9<\\/p>\\n<ul>\\n<li>Performance update to Script Manager form submission function which should help dramatically reduce the footprint when saving script configurations.<\\/li>\\n<li>Removed the Current URL option in the Script Manager when loaded on URLs without a valid post ID. (ex. dynamically generated archive templates)<\\/li>\\n<li>Added plugin settings page header with links to Contact and Support.<\\/li>\\n<li>Minor styling fixes in plugin settings UI.<\\/li>\\n<li>Updated Russian (ru_RU) translation files.<\\/li>\\n<\\/ul>\\n<p>1.4.8<\\/p>\\n<ul>\\n<li>Added new \'Body Code\' box in the Extras tab to go along with our existing header + footer boxes to give some more control there.<\\/li>\\n<li>Added some limits to the Script Manager action links in WP Admin to ensure they are only showing up for public post types.<\\/li>\\n<li>Fixed a bug that was causing the admin stylesheet not to load on the network settings page when running on a multisite.<\\/li>\\n<li>Added Russian (ru_RU) translation files. (credit: Sergey Shljahov)<\\/li>\\n<\\/ul>\\n<p>1.4.7<\\/p>\\n<ul>\\n<li>Added an exception for Gravity Forms to the Disable Heartbeat function.<\\/li>\\n<li>Added an exception for Contact Form 7 to the Disable REST API function.<\\/li>\\n<li>Added updated German (de_DE) translation files. (credit: Daniel Luttermann)<\\/li>\\n<\\/ul>\\n<p>1.4.6<\\/p>\\n<ul>\\n<li>Added a specific and more generous threshold for lazy loading.<\\/li>\\n<li>Added some additional dequeues to the Disable WooCommerce function to target inline CSS and JS.<\\/li>\\n<\\/ul>\\n<p>1.4.5<\\/p>\\n<ul>\\n<li>Updated Disable Google Maps and Disable Google Fonts toggles to not run in WP Admin.<\\/li>\\n<li>Turned off native lazy loading by default and added new option to Use Native.<\\/li>\\n<li>Added perfmatters_lazyload_excluded_attributes filter which allows for an array of attribute strings to be given that if found will exclude the matched image\\/s from lazy loading.<\\/li>\\n<li>Made some compatibility improvements to the Script Manager function that gets the ID of the current post.<\\/li>\\n<li>Added perfmatters_get_current_ID filter which allows the user to extend or modify the functionality of the Script Manager\'s current ID function.<\\/li>\\n<\\/ul>\\n<p>1.4.4<\\/p>\\n<ul>\\n<li>Fixed undefined index PHP Notice coming from the Preconnect settings display function.<\\/li>\\n<li>Added additional compatibility with Elementor when using the Script Manager to disable certain Elementor scripts + styles.<\\/li>\\n<li>Added a ignore flag class to all Lazy Load functions. Simply add the \'no-lazy\' class to any image element you want to be exempt from lazy loading.<\\/li>\\n<li>Added validation filter to Login URL input to prevent incompatible characters from being entered.<\\/li>\\n<\\/ul>\\n<p>1.4.3<\\/p>\\n<ul>\\n<li>Fixed an issue with the Lazy Load function that was causing an error with some older PHP versions.<\\/li>\\n<\\/ul>\\n<p>1.4.2<\\/p>\\n<ul>\\n<li>Added new option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\">Lazy Loading<\\/a> images (BETA).<\\/li>\\n<\\/ul>\\n<p>1.4.1<\\/p>\\n<ul>\\n<li>New addition to the Preconnect option, you can now choose to whether or not to add the crossorigin property for each Preconnect URL.<\\/li>\\n<li>Optimization to the loading of Perfmatters admin scripts + styles.<\\/li>\\n<li>Added additional Script Manager styles for better compatibility.<\\/li>\\n<li>Added an additional function for the Custom Login URL to help rewrite certain wp-admin links in specific multisite setups.<\\/li>\\n<li>Reorganized plugin action links in the plugins table.<\\/li>\\n<\\/ul>\\n<p>1.4.0<\\/p>\\n<ul>\\n<li>Fixed an issue where the Current URL Exceptions were not loading correctly after saving in the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.3.9<\\/p>\\n<ul>\\n<li>Added new Extra options to Add Header Code and Add Footer Code.<\\/li>\\n<li>Added missing blank defaults for DNS Prefetch and Preconnect options.<\\/li>\\n<li>Added functionality to force the Admin Bar to display when the Script Manager is loaded.<\\/li>\\n<li>Script Manager styling adjustments.<\\/li>\\n<li>Added success message on save when the Script Manager options are updated.<\\/li>\\n<li>Added support for 404 page when trying to disable or enable on the Current URL.<\\/li>\\n<\\/ul>\\n<p>1.3.8<\\/p>\\n<ul>\\n<li>Added new option to Disable Comments.<\\/li>\\n<li>Updated a section of the Script Manager to better reflect the Current URL when determining if it is a match for the given regex pattern.<\\/li>\\n<\\/ul>\\n<p>1.3.7<\\/p>\\n<ul>\\n<li>Added links to the Script Manager from the posts list page and post edit page which will take you to the front end and load the Script Manager for the corresponding post.<\\/li>\\n<li>Added warning notices for both WP_POST_REVISIONS and AUTOSAVE_INTERVAL if they are set in Perfmatters while also defined elsewhere.<\\/li>\\n<\\/ul>\\n<p>1.3.6<\\/p>\\n<ul>\\n<li>Added new option to Disable Google Fonts.<\\/li>\\n<li>Removed option to Disable Completely from the Disable REST API dropdown to due core WordPress compatibility issues.<\\/li>\\n<li>Added additional object check to prevent PHP warning in certain cases when using the Separate Archives option in the Script Manager.<\\/li>\\n<li>Added some additional logic to filter duplicate scripts out of the Script Manager master array if they are present.<\\/li>\\n<li>CSS fixes in the Script Manager for better compatibility.<\\/li>\\n<li>Expanded the Script Manager current ID function for better reliability.<\\/li>\\n<\\/ul>\\n<p>1.3.5<\\/p>\\n<ul>\\n<li>Added new Disable REST API option which will disable REST API requests and display an authentication error message if the requester doesn\'t have permission.<\\/li>\\n<li>Added additional action removal to the Remove REST API Links function.<\\/li>\\n<li>Made some changes to the Script Manager save button. It is now fixed on the bottom of the screen for easier access without having to scroll.<\\/li>\\n<li>Additional Script Manager style adjustments.<\\/li>\\n<\\/ul>\\n<p>1.3.4<\\/p>\\n<ul>\\n<li>Minor update to Remove Comment URLs function priority for better compatibility with theme templates.<\\/li>\\n<\\/ul>\\n<p>1.3.3<\\/p>\\n<ul>\\n<li>Added new option to Remove Comment URLs.<\\/li>\\n<li>Added French (fr_FR) language translation.<\\/li>\\n<li>Fixed a PHP warning that would occur when saving Script Manager settings in some instances when Display Archives was also enabled.<\\/li>\\n<\\/ul>\\n<p>1.3.2<\\/p>\\n<ul>\\n<li>Added new option to Add Blank Favicon in the Extras tab.<\\/li>\\n<li>Fixed an issue in the Script Manager Global View where options set for the home page would show up as a 0 with a broken link.<\\/li>\\n<li>Added some additional styles to the main Script Manager view for better compatibility.<\\/li>\\n<\\/ul>\\n<p>1.3.1<\\/p>\\n<ul>\\n<li>Fixed a bug that would sometimes cause an enabled message to display on the front end when using the Regex option in the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.3.0<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/regex\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Regex<\\/a> option the Script Manager for both disables and exceptions.<\\/li>\\n<li>Added new Reset option in the Script Manager settings which allows for a complete wipe + reset of all configured Script Manager options.<\\/li>\\n<li>Added additional Script Manager styles to improve compatability.<\\/li>\\n<li>Added new status message in Script Manager global view when no options have been set.<\\/li>\\n<\\/ul>\\n<p>1.2.9<\\/p>\\n<ul>\\n<li>Updated uninstallation function to account for new Script Manager settings<\\/li>\\n<li>Updated Google Analytics Disable Display Features function to work correctly with Google\'s new format.<\\/li>\\n<li>Added support to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#monster-insights\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Use MonsterInsights<\\/a> along with Perfmatters local analytics functionality.<\\/li>\\n<li>Added new option in Script Manager settings to Display Archives which will allow you to selectively enable scripts on generated archive pages.<\\/li>\\n<\\/ul>\\n<p>1.2.8<\\/p>\\n<ul>\\n<li>Added mobile + responsive styles to the Script Manager navigation.<\\/li>\\n<li>Added additional styles to the Script Manager for compatibility.<\\/li>\\n<li>Script Manager javascript changes + improvements, specifically for compatibility with sites script minification plugins.<\\/li>\\n<li>Fixed a bug where the Script Manager disclaimer would not turn back on after being switched off.<\\/li>\\n<\\/ul>\\n<p>1.2.7<\\/p>\\n<ul>\\n<li>Small patch to check for a required WP function and include core file if necessary for some setups.<\\/li>\\n<\\/ul>\\n<p>1.2.6<\\/p>\\n<ul>\\n<li>All new Script Manager! View updated documentation at\\u00a0<a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-scripts-per-post-page\\/\\\">https:\\/\\/perfmatters.io\\/docs\\/disable-scripts-per-post-page\\/<\\/a>.<\\/li>\\n<li>Fix to remove Emoji DNS Prefetch when Emojis are disabled<\\/li>\\n<\\/ul>\\n<p>1.2.5<\\/p>\\n<ul>\\n<li>Fixed an issue with the Change Login URL function that was causing an error when using WP-CLI.<\\/li>\\n<li>Added some additional compatibility styles to the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.2.4<\\/p>\\n<ul>\\n<li>Fixed a bug in the Script Manager that caused Current URL Enable checkboxes to not save properly in certain situations.<\\/li>\\n<li>Updated EDD license functions to process proper SSL verification when calling the WordPress HTTP API.<\\/li>\\n<li>Updated perfmatters_default_options array with new options from recent updates.<\\/li>\\n<li>Removed BETA tag from Local Analytics option.<\\/li>\\n<li>Added more details to the Script Manager Global Settings to see which post IDs and post types have settings assigned to them.<\\/li>\\n<li>Additional styles added to the Script Manager for better compatibility.<\\/li>\\n<li>Updated .pot and translation files.<\\/li>\\n<\\/ul>\\n<p>1.2.3<\\/p>\\n<ul>\\n<li>Bugfix - Rolled back some of the heartbeat changes from the previous update to do some additional testing. Should solve some plugin conflicts that popped up.<\\/li>\\n<\\/ul>\\n<p>1.2.2<\\/p>\\n<ul>\\n<li>Added additional WooCommerce checks for WC specific pages before running disable functions.<\\/li>\\n<li>Changes to the Disable Heartbeat function to avoid causing a script dependency error.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-password-meter-strength\\/\\\">Disable Password Strength Meter<\\/a> option.<\\/li>\\n<li>Fixed an issue that was causing Script Manger dropdown colors to not display correctly when jQuery was disabled.<\\/li>\\n<li>Modified admin notice to print our using \'admin_notices\' hook. (credit: Christian Follmann)<\\/li>\\n<li>Made some adjustments to Script Manager copy to remove unnecessary HTML from the translations. (credit: Christian Follmann)<\\/li>\\n<li>Props to Hasan Basri (<a href=\\\"http:\\/\\/www.hasanbasri93.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=http:\\/\\/www.hasanbasri93.com&amp;source=gmail&amp;ust=1530375831273000&amp;usg=AFQjCNHnfwHkAwWtNxgfmCyGrwSm3NEyng\\\">www.hasanbasri93.com<\\/a>) for Indonesian (id_ID) translation.\\u00a0&#x1f44f;<\\/li>\\n<li>Updated translations based on the new .pot file.<\\/li>\\n<li>Various other minor tweaks + improvements.<\\/li>\\n<\\/ul>\\n<p>1.2.1<\\/p>\\n<ul>\\n<li>Updated Local Analytics function to improve compatibility with different server setups.<\\/li>\\n<\\/ul>\\n<p>1.2.0<\\/p>\\n<ul>\\n<li>New option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/\\\">Enable Local Analytics<\\/a>, along with a new dedicated Google Analytics tab with various related options.<\\/li>\\n<li>Added some additional logic to redirect RSS Feed URLs when Disable RSS Feeds is toggled on.<\\/li>\\n<li>Fixed an issue that was causing certain email links not to work when using a Custom Login URL.<\\/li>\\n<li>Fixed a bug that was causing the password reset link not to function properly when using a Custom Login URL in a multisite environment.<\\/li>\\n<li>Made some adjustments to the Disable Self Pingbacks function to fix an issue with case sensitivity.<\\/li>\\n<li>Updated text domain for translations in the EDD Updater class.<\\/li>\\n<li>Fixed a bug where the Clean Uninstall option would still show up on individual sites in a multisite environment.<\\/li>\\n<li>Props to\\u00a0PDPK di Mauro Panzarola\\u00a0(<a href=\\\"https:\\/\\/pdpkapp.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=https:\\/\\/pdpkapp.com&amp;source=gmail&amp;ust=1526653041476000&amp;usg=AFQjCNHfek6Z-CMgUhd0MwvU5QGK6cm0hg\\\">https:\\/\\/pdpkapp.com<\\/a>) for Italian (it_IT) translation.\\u00a0&#x1f44f;<\\/li>\\n<\\/ul>\\n<p>1.1.9<\\/p>\\n<ul>\\n<li>Perfmatters is now translation ready! If you are interested in helping out with a translation, please <a href=\\\"https:\\/\\/perfmatters.io\\/contact\\/\\\">contact us<\\/a>.<\\/li>\\n<li>Props to Christian Foellmann (<a href=\\\"https:\\/\\/github.com\\/cfoellmann\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">cfoellmann@GitHub<\\/a>) for German (de_DE) translation.\\u00a0&#x1f44f;<\\/li>\\n<li>Fixed a PHP undefined index warning in the Script Manager.<\\/li>\\n<li>Fixed a bug that was causing issues with the Change Login URL slug when using certain permalink settings.<\\/li>\\n<\\/ul>\\n<p>1.1.8<\\/p>\\n<ul>\\n<li>Fixed a compatibility issue with Script Manager dequeue priority that could cause it to not function properly.<\\/li>\\n<li>Minor update to the uninstall function.<\\/li>\\n<\\/ul>\\n<p>1.1.7<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the remove query strings option to conflict with files that have necessary query string parameters (Google Fonts).<\\/li>\\n<\\/ul>\\n<p>1.1.6<\\/p>\\n<ul>\\n<li>Added new Clean Uninstall option in the extras tab.<\\/li>\\n<li>Added new Preconnect option in the extras tab.<\\/li>\\n<\\/ul>\\n<p>1.1.5<\\/p>\\n<ul>\\n<li>Fixed multiple PHP warnings related to settings + option initialization.<\\/li>\\n<\\/ul>\\n<p>1.1.4<\\/p>\\n<ul>\\n<li>Added multisite support with the ability to manage default network settings and network access control.<\\/li>\\n<li>Made some adjustments to plugin naming conventions throughout WordPress admin screens, menus, etc...<\\/li>\\n<li>Removed BETA tag on Change Login URL option.<\\/li>\\n<\\/ul>\\n<p>1.1.3<\\/p>\\n<ul>\\n<li>Added new Change Login URL (BETA) feature to change your WordPress login URL and block the default wp-admin and wp-login endpoints from being directly accessed.<\\/li>\\n<li>Added new Disable Dashicons feature to disable Dashicons from the front end when not logged in.<\\/li>\\n<\\/ul>\\n<p>1.1.2<\\/p>\\n<ul>\\n<li>Added character masking to the license key input field.<\\/li>\\n<\\/ul>\\n<p>1.1.1<\\/p>\\n<ul>\\n<li>Added new CDN URL Rewrite feature in a new settings tab with various settings to customize your configuration.<\\/li>\\n<li>Added new Global Settings section in the Script Manager with a visual representation of the Script Manager options set across the entire site.<\\/li>\\n<li>Made some updates to the Script Manager layout in preparation for future additional features.<\\/li>\\n<\\/ul>\\n<p>1.1.0<\\/p>\\n<ul>\\n<li>Added new Disable Google Maps toggle.<\\/li>\\n<li>Added some backend logic to the Script Manager to hide scripts that have already been disabled sitewide via the main plugin settings.<\\/li>\\n<li>Update to the EDD license activation function variables to help prevent activation conflicts with other plugins.<\\/li>\\n<\\/ul>\\n<p>1.0.9<\\/p>\\n<ul>\\n<li>Removed the toggle to disable WooCommerce reviews, as there is already a WooCommerce setting that provides that functionality.<\\/li>\\n<\\/ul>\\n<p>1.0.8<\\/p>\\n<ul>\\n<li>Added new WooCommerce section to the options tab with multiple toggles to disable or limit certain WooCommerce scripts and functionality.<\\/li>\\n<li>Added some new styles to the plugin admin page to allow for clearer organization of different sections.<\\/li>\\n<li>Fixed an undefined index notice in the Script Manager.<\\/li>\\n<li>Added some additional styles to the checkboxes in the Script Manager to fix a theme compatibility issue.<\\/li>\\n<\\/ul>\\n<p>1.0.7<\\/p>\\n<ul>\\n<li>Added functionality to remove the shortlink\\u00a0HTTP header when \'Remove Shortlink\' is toggled on.<\\/li>\\n<li>Added functionality to remove the xmlrpc.php link as well as the X-Pingback HTTP header when \'Disable XML-RPC\' is toggled on.<\\/li>\\n<\\/ul>\\n<p>1.0.6<\\/p>\\n<ul>\\n<li>Removed BETA label from Script Manager.<\\/li>\\n<li>Added new \'DNS Prefetch\' option in the Extras tab.<\\/li>\\n<\\/ul>\\n<p>1.0.5<\\/p>\\n<ul>\\n<li>Added new toggle to \'Remove REST API Links\'.<\\/li>\\n<li>Renamed \'Remove Feed Links\' toggle for more clarification.<\\/li>\\n<li>UI improvements, hovering tooltips, more links to the web documentation, etc\\u2026<\\/li>\\n<li>Added version numbers to admin scripts to avoid caching on plugin update.<\\/li>\\n<li>Refactored a good portion of the settings initialization code.<\\/li>\\n<li>Removed \\\"Beta\\\" status for script manager. It has been fully tested now and is ready to use in production.<\\/li>\\n<li><\\/li>\\n<\\/ul>\\n<p>1.0.4<\\/p>\\n<ul>\\n<li>Fixed a few PHP warnings dealing with the Script Manager option array management.<\\/li>\\n<li>Fixed a UI bug in the Script Manager causing certain post type checkboxes\\u00a0to not be selectable.<\\/li>\\n<\\/ul>\\n<p>1.0.3<\\/p>\\n<ul>\\n<li>Introduced the new Script Manager feature to disable scripts on a per page\\/post basis.<\\/li>\\n<\\/ul>\\n<p>1.0.2<\\/p>\\n<ul>\\n<li>Added Extras tab with a new option for Accessibility\\u00a0Mode. Enabling this will turn off the custom styles we use for our settings toggles and revert to standard HTML checkboxes.<\\/li>\\n<li>Additional accessibility improvements.<\\/li>\\n<li>A few style fixes.<\\/li>\\n<\\/ul>\\n<p>1.0.1<\\/p>\\n<ul>\\n<li>Accessibility improvements to the plugin settings page.<\\/li>\\n<\\/ul>\\n<p>1.0.0<\\/p>\\n<ul>\\n<li>Plugin launched.<\\/li>\\n<\\/ul>\\n\"],\"plugin\":\"perfmatters\\/perfmatters.php\",\"id\":\"perfmatters\\/perfmatters.php\"}\";}','no'),(294986,'perfmatters_used_css_time','a:4:{s:5:\"front\";i:1701965030;s:4:\"home\";i:1701965493;s:7:\"archive\";i:1701965496;i:404;i:1701966720;}','yes'),(295155,'wp_mail_logging_activated_time','1701977192','yes'),(295156,'wp_mail_logging_db_version','2','no'),(295157,'WPML_Plugin__version','1.12.0','yes'),(295160,'wp_mail_logging_user_feedback_notice','a:2:{s:4:\"time\";i:1703301890;s:9:\"dismissed\";b:1;}','yes'),(295162,'webpc_token_data','a:4:{s:11:\"token_value\";N;s:12:\"valid_status\";b:0;s:12:\"images_usage\";i:0;s:12:\"images_limit\";i:0;}','yes'),(295163,'webpc_settings','a:15:{s:7:\"quality\";s:2:\"85\";s:14:\"output_formats\";a:1:{i:0;s:4:\"webp\";}s:4:\"dirs\";a:1:{i:0;s:7:\"uploads\";}s:12:\"image_resize\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:15:\"auto_conversion\";s:3:\"yes\";s:12:\"access_token\";s:0:\"\";s:10:\"extensions\";a:4:{i:0;s:3:\"jpg\";i:1;s:3:\"png\";i:2;s:3:\"gif\";i:3;s:4:\"jpeg\";}s:6:\"method\";s:2:\"gd\";s:11:\"loader_type\";s:8:\"htaccess\";s:24:\"rewrite_inherit_disabled\";s:0:\"\";s:13:\"excluded_dirs\";s:0:\"\";s:8:\"features\";a:1:{i:0;s:12:\"only_smaller\";}s:11:\"media_stats\";s:3:\"yes\";s:18:\"cloudflare_zone_id\";s:0:\"\";s:20:\"cloudflare_api_token\";s:0:\"\";}','yes'),(295164,'webpc_is_new_installation','0','yes'),(295165,'webpc_notice_thanks','1734924187','yes'),(295166,'webpc_notice_upgrade','1734280288','yes'),(295167,'webpc_stats_installation_date','2023-12-07 19:27:42','yes'),(295168,'webpc_stats_first_version','5.11.5','yes'),(295170,'wcf_ca_status','on','yes'),(295171,'wcf_ca_gdpr_status','off','yes'),(295172,'wcf_ca_coupon_code_status','off','yes'),(295173,'wcf_ca_zapier_tracking_status','off','yes'),(295174,'wcf_ca_delete_plugin_data','off','yes'),(295175,'wcf_ca_cut_off_time','15','yes'),(295176,'wcf_ca_from_name','Le nom du site','yes'),(295177,'wcf_ca_from_email','ecomexpansion@gmail.com','yes'),(295178,'wcf_ca_reply_email','ecomexpansion@gmail.com','yes'),(295179,'wcf_ca_discount_type','percent','yes'),(295180,'wcf_ca_coupon_amount','10','yes'),(295181,'wcf_ca_zapier_cart_abandoned_webhook','','yes'),(295182,'wcf_ca_gdpr_message','Your email & cart are saved so we can send email reminders about this order.','yes'),(295183,'wcf_ca_coupon_expiry','0','yes'),(295184,'wcf_ca_coupon_expiry_unit','hours','yes'),(295185,'wcf_ca_excludes_orders','a:2:{i:0;s:10:\"processing\";i:1;s:9:\"completed\";}','yes'),(295186,'wcf_ca_version','1.2.26','yes'),(295187,'cf_analytics_installed_time','1701977290','no'),(295191,'sfa_abandoned_carts_version','2.4.0','yes'),(295192,'_site_transient_webpc_error_detector','1701977567893','no'),(295193,'webpc_errors_cache','a:0:{}','yes'),(295194,'webpc_stats_webp_all','848','yes'),(295195,'webpc_stats_webp_unconverted','0','yes'),(295196,'webpc_stats_avif_all','848','yes'),(295197,'webpc_stats_avif_unconverted','848','yes'),(295202,'_site_transient_webpc_cron_request_id','','no'),(295207,'webpc_stats_regeneration_images','848','yes'),(295533,'cf_analytics_optin','no','no'),(295939,'members_settings','a:1:{s:21:\"review_prompt_removed\";b:1;}','yes'),(295954,'litespeed.conf.cache-vary_cookies','[]','yes'),(295955,'litespeed.conf.media-preload_featured','','yes'),(295974,'woocommerce_store_id','f6f3ff36-dcfe-4a76-bffd-7e58c181f5a3','yes'),(295983,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(296027,'rank_math_sitemap_cache_files','a:1:{s:46:\"rank_math_173f594ccc528f80630f689ff95ed122.xml\";s:6:\"blocks\";}','yes'),(296223,'wpvivid_backup_success_count','2','no'),(296224,'wpvivid_backup_reports','a:2:{s:21:\"wpvivid-657c804a1c68b\";a:3:{s:7:\"task_id\";s:21:\"wpvivid-657c804a1c68b\";s:11:\"backup_time\";i:1702658123;s:6:\"status\";s:34:\"The last backup message not found.\";}s:21:\"wpvivid-65931ccb76c26\";a:3:{s:7:\"task_id\";s:21:\"wpvivid-65931ccb76c26\";s:11:\"backup_time\";i:1704139980;s:6:\"status\";s:34:\"The last backup message not found.\";}}','yes'),(296395,'litespeed.conf._version','6.0.0.1','yes'),(296407,'wpaicg_azure_api_key','','yes'),(296408,'wpaicg_azure_endpoint','','yes'),(296409,'wpaicg_azure_deployment','','yes'),(296410,'wpaicg_azure_embeddings','','yes'),(296411,'wpaicg_provider','OpenAI','yes'),(296412,'wpaicg_ai_model','gpt-4-1106-preview','yes'),(296413,'wpaicg_toc_title','Table of Contents','yes'),(296414,'wpaicg_intro_title_tag','h2','yes'),(296415,'wpaicg_conclusion_title_tag','h2','yes'),(296416,'wpaicg_image_source','dalle3','yes'),(296417,'wpaicg_featured_image_source','dalle3','yes'),(296418,'wpaicg_sleep_time','1','yes'),(296419,'wpaicg_woo_custom_prompt_title','Compose an SEO-optimized title in English for the following product: %s. Ensure it is engaging, concise, and includes relevant keywords to maximize its visibility on search engines.','yes'),(296420,'wpaicg_woo_custom_prompt_short','Provide a compelling and concise summary in English for the following product: %s, highlighting its key features, benefits, and unique selling points.','yes'),(296421,'wpaicg_woo_custom_prompt_description','Craft a comprehensive and engaging product description in English for: %s. Include specific details, features, and benefits, as well as the value it offers to the customer, thereby creating a compelling narrative around the product.','yes'),(296422,'wpaicg_woo_custom_prompt_focus_keyword','Identify the primary keyword for the following product: %s. Please respond in English. No additional comments, just the keyword.','yes'),(296423,'wpaicg_woo_custom_prompt_keywords','Propose a set of relevant keywords in English for the following product: %s. The keywords should be directly related to the product, enhancing its discoverability. Please present these keywords in a comma-separated format, avoiding the use of symbols such as -, #, etc.','yes'),(296424,'wpaicg_woo_custom_prompt_meta','Craft a compelling and concise meta description in English for: %s. Aim to highlight its key features and benefits within a limit of 155 characters, while incorporating relevant keywords for SEO effectiveness.','yes'),(296425,'wpaicg_custom_image_settings','a:9:{s:6:\"artist\";s:4:\"None\";s:17:\"photography_style\";s:4:\"None\";s:8:\"lighting\";s:4:\"None\";s:7:\"subject\";s:4:\"None\";s:15:\"camera_settings\";s:4:\"None\";s:11:\"composition\";s:4:\"None\";s:10:\"resolution\";s:4:\"None\";s:5:\"color\";s:4:\"None\";s:15:\"special_effects\";s:4:\"None\";}','yes'),(296426,'wpaicg_editor_change_action','below','yes'),(296427,'wpaicg_editor_button_menus','a:17:{i:0;a:2:{s:4:\"name\";s:28:\"Write a paragraph about this\";s:6:\"prompt\";s:36:\"Write a paragraph about this: [text]\";}i:1;a:2:{s:4:\"name\";s:9:\"Summarize\";s:6:\"prompt\";s:22:\"Summarize this: [text]\";}i:2;a:2:{s:4:\"name\";s:6:\"Expand\";s:6:\"prompt\";s:19:\"Expand this: [text]\";}i:3;a:2:{s:4:\"name\";s:7:\"Rewrite\";s:6:\"prompt\";s:20:\"Rewrite this: [text]\";}i:4;a:2:{s:4:\"name\";s:25:\"Generate ideas about this\";s:6:\"prompt\";s:33:\"Generate ideas about this: [text]\";}i:5;a:2:{s:4:\"name\";s:20:\"Make a bulleted list\";s:6:\"prompt\";s:28:\"Make a bulleted list: [text]\";}i:6;a:2:{s:4:\"name\";s:10:\"Paraphrase\";s:6:\"prompt\";s:23:\"Paraphrase this: [text]\";}i:7;a:2:{s:4:\"name\";s:25:\"Generate a call to action\";s:6:\"prompt\";s:44:\"Generate a call to action about this: [text]\";}i:8;a:2:{s:4:\"name\";s:15:\"Correct grammar\";s:6:\"prompt\";s:31:\"Correct grammar in this: [text]\";}i:9;a:2:{s:4:\"name\";s:19:\"Generate a question\";s:6:\"prompt\";s:38:\"Generate a question about this: [text]\";}i:10;a:2:{s:4:\"name\";s:15:\"Suggest a title\";s:6:\"prompt\";s:32:\"Suggest a title for this: [text]\";}i:11;a:2:{s:4:\"name\";s:24:\"Convert to passive voice\";s:6:\"prompt\";s:37:\"Convert this to passive voice: [text]\";}i:12;a:2:{s:4:\"name\";s:23:\"Convert to active voice\";s:6:\"prompt\";s:36:\"Convert this to active voice: [text]\";}i:13;a:2:{s:4:\"name\";s:18:\"Write a conclusion\";s:6:\"prompt\";s:35:\"Write a conclusion for this: [text]\";}i:14;a:2:{s:4:\"name\";s:25:\"Provide a counterargument\";s:6:\"prompt\";s:42:\"Provide a counterargument for this: [text]\";}i:15;a:2:{s:4:\"name\";s:16:\"Generate a quote\";s:6:\"prompt\";s:40:\"Generate a quote related to this: [text]\";}i:16;a:2:{s:4:\"name\";s:20:\"Translate to Spanish\";s:6:\"prompt\";s:33:\"Translate this to Spanish: [text]\";}}','yes'),(296428,'wpaicg_order_status_token','completed','yes'),(296429,'wpaicg_content_custom_prompt','Create a compelling and well-researched article of at least 500 words on the topic of \\\"[title]\\\" in English. Structure the article with clear headings enclosed within the appropriate heading tags (e.g., <h1>, <h2>, etc.) and engaging subheadings. Ensure that the content is informative and provides valuable insights to the reader. Incorporate relevant examples, case studies, and statistics to support your points. Organize your ideas using unordered lists with <ul> and <li> tags where appropriate. Conclude with a strong summary that ties together the key takeaways of the article. Remember to enclose headings in the specified heading tags to make parsing the content easier. Additionally, wrap even paragraphs in <p> tags for improved readability.','yes'),(296430,'wpaicg_comment_prompt','Please generate a relevant and thoughtful response to [username]\\\'s comment on the post titled \\\'[post_title]\\\' with the excerpt \\\'[post_excerpt]\\\'. The user\\\'s latest comment is: \\\'[last_comment]\\\'. If applicable, consider the context of the previous conversation: \\\'[parent_comments]\\\'. Keep the response focused on the topic and avoid creating any new information.','yes'),(296431,'wpaicg_toc_title_tag','h2','yes'),(296436,'wpaicg_pexels_custom_prompt','Extract the most significant keyword from the given title: [title]. Please provide the keyword in the format #keyword, without any additional sentences, words, or characters. Ensure that the keyword consists of a single word, and do not combine or concatenate words or phrases in the keyword.','yes'),(296437,'wpaicg_pixabay_custom_prompt','Extract the most significant keyword from the given title: [title]. Please provide the keyword in the format #keyword, without any additional sentences, words, or characters. Ensure that the keyword consists of a single word, and do not combine or concatenate words or phrases in the keyword.','yes'),(296438,'wpaicg_dalle_type','vivid','yes'),(296442,'_wpaicg_seo_meta_desc','1','yes'),(296443,'rank_math_description','1','yes'),(296449,'wpaicg_woo_meta_description','1','yes'),(296450,'wpaicg_pixabay_language','en','yes'),(296451,'wpaicg_pixabay_type','all','yes'),(296452,'wpaicg_pixabay_orientation','all','yes'),(296453,'wpaicg_pixabay_order','popular','yes'),(296465,'_transient_timeout_vgse_all_meta_keys_product_variation','1704478560','no'),(296466,'_transient_vgse_all_meta_keys_product_variation','a:0:{}','no'),(296488,'wpsett_welcome_redirect','no','yes'),(296543,'_wp_all_import_functions_hash_1','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(296544,'_wp_all_import_functions_hash_2','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(296545,'_wp_all_import_functions_hash_6','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(296573,'acf_version','6.2.4','yes'),(296575,'wp_all_import_woocommerce_addon_db_version','4.0.0','yes'),(296745,'_transient_pmxi_uploads_path','/home/cach0166/nl.ecom-expansion.com/wp-content/uploads/wpallimport/uploads/b534d98f45e986d5eafc8d827b86ef77','yes'),(296746,'mainwp_child_dismiss_warnings','a:1:{s:8:\"warnings\";i:0;}','no'),(296889,'_transient_timeout_ppcp_has_ppec_subscriptions','1705514221','no'),(296890,'_transient_ppcp_has_ppec_subscriptions','false','no'),(296894,'_transient_timeout_wc_shipping_method_count_legacy','1705516364','no'),(296895,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1700328357\";s:5:\"value\";i:5;}','no'),(297130,'rank_math_review_notice_date','1704241798','no'),(297132,'rank_math_notifications','a:0:{}','yes'),(297154,'product-size-chart-for-woo_dismiss_notices','1','yes'),(297180,'_transient_timeout_woocommerce_gpf_meta_prepopulate_options','1705621992','no'),(297181,'_transient_woocommerce_gpf_meta_prepopulate_options','a:2:{s:13:\"disabled:meta\";s:17:\"- Custom fields -\";s:5:\"meta:\";N;}','no'),(297830,'_transient_timeout_wc_low_stock_count','1705893768','no'),(297831,'_transient_wc_low_stock_count','0','no'),(297832,'_transient_timeout_wc_outofstock_count','1705893768','no'),(297833,'_transient_wc_outofstock_count','0','no'),(297912,'_transient_timeout_wc_term_counts','1705894668','no'),(297913,'_transient_wc_term_counts','a:0:{}','no'),(297942,'wp_rocket_settings','a:72:{s:12:\"cache_mobile\";i:1;s:19:\"purge_cron_interval\";i:6;s:15:\"purge_cron_unit\";s:15:\"HOUR_IN_SECONDS\";s:10:\"minify_css\";i:1;s:11:\"exclude_css\";a:0:{}s:26:\"remove_unused_css_safelist\";a:0:{}s:12:\"critical_css\";s:0:\"\";s:9:\"minify_js\";i:1;s:17:\"exclude_inline_js\";a:0:{}s:10:\"exclude_js\";a:0:{}s:12:\"defer_all_js\";i:1;s:16:\"exclude_defer_js\";a:1:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";}s:8:\"delay_js\";i:1;s:28:\"delay_js_exclusions_selected\";a:8:{i:0;s:36:\"05d3eb78-f574-49be-95e1-3f11714005d1\";i:1;s:36:\"34d225a4-688c-476b-846b-420774160d6b\";i:2;s:36:\"051cbfbb-7ad2-4f06-a493-3cf423a80904\";i:3;s:36:\"bd6732fe-4c2b-40a1-9035-8464057e2da5\";i:4;s:36:\"d044900d-07e1-4533-9516-33106efcb259\";i:5;s:36:\"bff953b1-2213-4666-8112-76a84a3cc207\";i:6;s:36:\"fb01246b-a5f8-4021-b514-c02cf55e80bd\";i:7;s:36:\"890e15b6-c66b-4a9e-9b7d-55417df94916\";}s:19:\"delay_js_exclusions\";a:52:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:4:\"cart\";i:2;s:8:\"customjq\";i:3;s:5:\"hover\";i:4;s:9:\"yith-wcan\";i:5;s:8:\"flatsome\";i:6;s:8:\"infinite\";i:7;s:4:\"lazy\";i:8;s:4:\"core\";i:9;s:8:\"backbone\";i:10;s:4:\"util\";i:11;s:8:\"polyfill\";i:12;s:7:\"blockUI\";i:13;s:16:\"js.cookie.min.js\";i:14;s:12:\"getbutton.io\";i:15;s:34:\"//a.omappapi.com/app/js/api.min.js\";i:16;s:67:\"feedbackcompany.com/includes/widgets/feedback-company-widget.min.js\";i:17;s:46:\"snap.licdn.com/li.lms-analytics/insight.min.js\";i:18;s:29:\"static.ads-twitter.com/uwt.js\";i:19;s:31:\"platform.twitter.com/widgets.js\";i:20;s:13:\"/sdk.js#xfbml\";i:21;s:46:\"static.leadpages.net/leadbars/current/embed.js\";i:22;s:43:\"translate.google.com/translate_a/element.js\";i:23;s:19:\"widget.manychat.com\";i:24;s:21:\"xfbml.customerchat.js\";i:25;s:27:\"static.hotjar.com/c/hotjar-\";i:26;s:27:\"smartsuppchat.com/loader.js\";i:27;s:18:\"grecaptcha.execute\";i:28;s:8:\"Tawk_API\";i:29;s:11:\"shareaholic\";i:30;s:9:\"sharethis\";i:31;s:26:\"simple-share-buttons-adder\";i:32;s:8:\"addtoany\";i:33;s:12:\"font-awesome\";i:34;s:8:\"wpdiscuz\";i:35;s:15:\"cookie-law-info\";i:36;s:8:\"pinit.js\";i:37;s:8:\"/gtag/js\";i:38;s:7:\"/gtm.js\";i:39;s:5:\"/gtm-\";i:40;s:11:\"fbevents.js\";i:41;s:33:\"google-analytics.com/analytics.js\";i:42;s:14:\"adsbygoogle.js\";i:43;s:10:\"ShopifyBuy\";i:44;s:31:\"widget.trustpilot.com/bootstrap\";i:45;s:13:\"ft.sdk.min.js\";i:46;s:31:\"apps.elfsight.com/p/platform.js\";i:47;s:27:\"livechatinc.com/tracking.js\";i:48;s:14:\"LiveChatWidget\";i:49;s:27:\"/busting/facebook-tracking/\";i:50;s:5:\"olark\";i:51;s:32:\"pixel-caffeine/build/frontend.js\";}s:16:\"exclude_lazyload\";a:0:{}s:16:\"image_dimensions\";i:1;s:20:\"preload_excluded_uri\";a:0:{}s:12:\"dns_prefetch\";a:0:{}s:13:\"preload_fonts\";a:0:{}s:16:\"cache_reject_uri\";a:3:{i:0;s:15:\"/checkout/(.*)/\";i:1;s:11:\"/cart/(.*)/\";i:2;s:15:\"/wishlist/(.*)/\";}s:20:\"cache_reject_cookies\";a:3:{i:0;s:25:\"woocommerce_items_in_cart\";i:1;s:21:\"woocommerce_cart_hash\";i:2;s:19:\"woocommerce_session\";}s:15:\"cache_reject_ua\";a:0:{}s:17:\"cache_purge_pages\";a:0:{}s:19:\"cache_query_strings\";a:0:{}s:27:\"automatic_cleanup_frequency\";s:0:\"\";s:10:\"cdn_cnames\";a:0:{}s:8:\"cdn_zone\";a:0:{}s:16:\"cdn_reject_files\";a:0:{}s:17:\"control_heartbeat\";i:1;s:24:\"heartbeat_admin_behavior\";s:0:\"\";s:25:\"heartbeat_editor_behavior\";s:0:\"\";s:23:\"heartbeat_site_behavior\";s:0:\"\";s:18:\"cloudflare_api_key\";s:0:\"\";s:16:\"cloudflare_email\";s:0:\"\";s:18:\"cloudflare_zone_id\";s:0:\"\";s:18:\"sucury_waf_api_key\";s:0:\"\";s:12:\"consumer_key\";s:8:\"********\";s:14:\"consumer_email\";s:22:\"activated@wp-rocket.me\";s:10:\"secret_key\";s:8:\"619860fc\";s:7:\"license\";s:0:\"\";s:16:\"secret_cache_key\";s:0:\"\";s:14:\"minify_css_key\";s:22:\"6594a78084a9d879403439\";s:13:\"minify_js_key\";s:22:\"6594a78084aa8278958948\";s:7:\"version\";s:6:\"3.15.6\";s:23:\"cloudflare_old_settings\";s:0:\"\";s:9:\"cache_ssl\";i:1;s:19:\"minify_google_fonts\";i:0;s:5:\"emoji\";i:0;s:17:\"remove_unused_css\";i:0;s:9:\"async_css\";i:0;s:22:\"minify_concatenate_css\";s:0:\"\";s:16:\"async_css_mobile\";s:0:\"\";s:17:\"cache_logged_user\";i:0;s:23:\"do_caching_mobile_files\";i:0;s:21:\"minify_concatenate_js\";i:0;s:8:\"lazyload\";i:0;s:16:\"lazyload_iframes\";i:0;s:16:\"lazyload_youtube\";i:0;s:18:\"database_revisions\";i:0;s:20:\"database_auto_drafts\";i:0;s:22:\"database_trashed_posts\";i:0;s:22:\"database_spam_comments\";i:0;s:25:\"database_trashed_comments\";i:0;s:23:\"database_all_transients\";i:0;s:24:\"database_optimize_tables\";i:0;s:26:\"schedule_automatic_cleanup\";i:0;s:14:\"manual_preload\";i:0;s:21:\"sucury_waf_cache_sync\";i:0;s:3:\"cdn\";i:0;s:18:\"varnish_auto_purge\";i:0;s:39:\"delay_js_exclusions_selected_exclusions\";a:31:{i:0;s:13:\"js.stripe.com\";i:1;s:11:\"local_ga_js\";i:2;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:3;s:25:\"/jquery-migrate(.min)?.js\";i:4;s:11:\"/jquery/ui/\";i:5;s:24:\"/woo-variation-swatches/\";i:6;s:28:\"/woo-variation-swatches-pro/\";i:7;s:17:\"underscore.min.js\";i:8;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:9;s:53:\"/woocommerce/assets/js/frontend/cart-fragments.min.js\";i:10;s:49:\"/woocommerce/assets/js/js-cookie/js.cookie.min.js\";i:11;s:61:\"/plugins/woocommerce/assets/js/frontend/single-product.min.js\";i:12;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:13;s:25:\"/jquery-migrate(.min)?.js\";i:14;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:15;s:25:\"/jquery-migrate(.min)?.js\";i:16;s:55:\"/woocommerce/?(.*)/assets/js/zoom/jquery.zoom(.min)?.js\";i:17;s:40:\"/woocommerce/?(.*)/assets/js/photoswipe/\";i:18;s:67:\"/woocommerce/?(.*)/assets/js/flexslider/jquery.flexslider(.min)?.js\";i:19;s:62:\"/woocommerce/?(.*)/assets/js/frontend/single-product(.min)?.js\";i:20;s:24:\"wc_single_product_params\";i:21;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:22;s:25:\"/jquery-migrate(.min)?.js\";i:23;s:31:\"/flatsome/assets/js/flatsome.js\";i:24;s:41:\"/flatsome/assets/libs/packery.pkgd.min.js\";i:25;s:34:\"/flatsome/assets/js/woocommerce.js\";i:26;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:27;s:25:\"/jquery-migrate(.min)?.js\";i:28;s:58:\"/flatsome/inc/integrations/wp-rocket/flatsome-wp-rocket.js\";i:29;s:31:\"/flatsome/assets/js/flatsome.js\";i:30;s:65:\"/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.js\";}}','yes'),(297945,'wpr_rocket_cache_version','20220927','yes'),(297950,'wpr_rucss_used_css_version','20231031','yes'),(297952,'wp_rocket_last_base_url','aHR0cHM6Ly93d3cubmwuZWNvbS1leHBhbnNpb24uY29tLw==','yes'),(297955,'wp_rocket_no_licence','0','yes'),(298145,'rocket_analytics_notice_displayed','1','yes'),(298786,'_transient_timeout_woocommerce_admin_payment_method_promotion_specs','1704841449','no'),(298787,'_transient_woocommerce_admin_payment_method_promotion_specs','a:2:{s:5:\"nl_NL\";a:2:{s:27:\"woocommerce_payments:woopay\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"woocommerce_payments:woopay\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:393:\"Payments made simple — including WooPay, a new express checkout feature.<br/><br/>By using WooPayments you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> (including WooPay <a href=\"https://wordpress.com/tos/#more-woopay-specifically\" target=\"_blank\">merchant terms</a>) and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy Policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"8.1.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}s:20:\"woocommerce_payments\";O:8:\"stdClass\":8:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:369:\"Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.<br/><br/>By clicking “Install”, you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}}s:5:\"en_US\";a:2:{s:27:\"woocommerce_payments:woopay\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"woocommerce_payments:woopay\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:393:\"Payments made simple — including WooPay, a new express checkout feature.<br/><br/>By using WooPayments you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> (including WooPay <a href=\"https://wordpress.com/tos/#more-woopay-specifically\" target=\"_blank\">merchant terms</a>) and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy Policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"8.1.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}s:20:\"woocommerce_payments\";O:8:\"stdClass\":8:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:369:\"Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.<br/><br/>By clicking “Install”, you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}}}','no'),(299100,'wc_stripe_version','7.8.1','yes'),(299304,'_transient_timeout_wpr_dynamic_lists','1704541672','no'),(299305,'_transient_wpr_dynamic_lists','O:8:\"stdClass\":12:{s:28:\"rucss_inline_atts_exclusions\";a:16:{i:0;s:26:\"rocket-lazyload-inline-css\";i:1;s:35:\"divi-style-parent-inline-inline-css\";i:2;s:14:\"gsf-custom-css\";i:3;s:29:\"extra-style-inline-inline-css\";i:4;s:30:\"woodmart-inline-css-inline-css\";i:5;s:30:\"woodmart_shortcodes-custom-css\";i:6;s:29:\"rs-plugin-settings-inline-css\";i:7;s:28:\"divi-style-inline-inline-css\";i:8;s:27:\"tcb-post-list-dynamic-style\";i:9;s:6:\"n2-ss-\";i:10;s:6:\"wpcf7-\";i:11;s:32:\"siteorigin-panels-layouts-footer\";i:12;s:28:\"xstore-inline-css-inline-css\";i:13;s:17:\"assets.reviews.io\";i:14;s:8:\"ezoicCSS\";i:15;s:4:\"stk-\";}s:31:\"rucss_inline_content_exclusions\";a:44:{i:0;s:14:\".wp-container-\";i:1;s:13:\".wp-elements-\";i:2;s:16:\"#wpv-expandable-\";i:3;s:16:\".custom-content-\";i:4;s:5:\"#thb-\";i:5;s:16:\".et_pb_text_dap_\";i:6;s:24:\"#gdlr-core-shape-divider\";i:7;s:8:\"#ultib3-\";i:8;s:10:\".uvc-wrap-\";i:9;s:26:\".jet-listing-dynamic-post-\";i:10;s:6:\".vcex_\";i:11;s:20:\".wprm-advanced-list-\";i:12;s:9:\".adsslot_\";i:13;s:7:\".jnews_\";i:14;s:21:\".cp-info-bar.content-\";i:15;s:16:\"#stockie-custom-\";i:16;s:13:\"#ohio-custom-\";i:17;s:5:\".uid-\";i:18;s:15:\"#wpfMainWrapper\";i:19;s:7:\"#penci_\";i:20;s:7:\"#penci-\";i:21;s:7:\".wpbs_s\";i:22;s:8:\"#apcore_\";i:23;s:8:\"#apress_\";i:24;s:6:\"#zolo_\";i:25;s:30:\".extended-products-grid#style-\";i:26;s:27:\".preloader#style-preloader-\";i:27;s:16:\".thegem-heading-\";i:28;s:15:\".thegem-button-\";i:29;s:15:\".thegem-custom-\";i:30;s:14:\".thegem-popup-\";i:31;s:9:\"#pattern-\";i:32;s:20:\"#thegem-video-frame-\";i:33;s:8:\"#thegem-\";i:34;s:14:\".qwery_inline_\";i:35;s:19:\".dcgd_submit_button\";i:36;s:8:\".irs-bar\";i:37;s:14:\".gallery-grid-\";i:38;s:13:\".cmplz-hidden\";i:39;s:13:\"#sqbquizouter\";i:40;s:19:\"#start_sqbquizouter\";i:41;s:13:\".flo-header--\";i:42;s:19:\".trx_addons_inline_\";i:43;s:21:\".wpp-cardview-compact\";}s:26:\"defer_js_inline_exclusions\";a:10:{i:0;s:16:\"DOMContentLoaded\";i:1;s:14:\"document.write\";i:2;s:22:\"window.lazyLoadOptions\";i:3;s:5:\"N.N2_\";i:4;s:18:\"rev_slider_wrapper\";i:5;s:18:\"FB3D_CLIENT_LOCALE\";i:6;s:19:\"ewww_webp_supported\";i:7;s:21:\"anr_captcha_field_div\";i:8;s:24:\"renderInvisibleReCaptcha\";i:9;s:17:\"bookingInProgress\";}s:28:\"defer_js_external_exclusions\";a:36:{i:0;s:15:\"gist.github.com\";i:1;s:22:\"content.jwplatform.com\";i:2;s:14:\"js.hsforms.net\";i:3;s:16:\"www.uplaunch.com\";i:4;s:20:\"google.com/recaptcha\";i:5;s:20:\"widget.reviews.co.uk\";i:6;s:29:\"verify.authorize.net/anetseal\";i:7;s:43:\"lib/admin/assets/lib/webfont/webfont.min.js\";i:8;s:18:\"app.mailerlite.com\";i:9;s:17:\"widget.reviews.io\";i:10;s:35:\"simplybook.(.*)/v2/widget/widget.js\";i:11;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:12;s:79:\"/wp-content/plugins/wpfront-notification-bar/js/wpfront-notification-bar(.*).js\";i:13;s:64:\"/wp-content/plugins/oxygen/component-framework/vendor/aos/aos.js\";i:14;s:70:\"/wp-content/plugins/ewww-image-optimizer/includes/check-webp(.min)?.js\";i:15;s:34:\"static.mailerlite.com/data/(.*).js\";i:16;s:37:\"cdn.voxpow.com/static/libs/v1/(.*).js\";i:17;s:40:\"cdn.voxpow.com/media/trackers/js/(.*).js\";i:18;s:15:\"use.typekit.net\";i:19;s:15:\"www.idxhome.com\";i:20;s:44:\"/wp-includes/js/dist/vendor/lodash(.min)?.js\";i:21;s:40:\"/wp-includes/js/dist/api-fetch(.min)?.js\";i:22;s:35:\"/wp-includes/js/dist/i18n(.min)?.js\";i:23;s:49:\"/wp-includes/js/dist/vendor/wp-polyfill(.min)?.js\";i:24;s:34:\"/wp-includes/js/dist/url(.min)?.js\";i:25;s:36:\"/wp-includes/js/dist/hooks(.min)?.js\";i:26;s:21:\"www.paypal.com/sdk/js\";i:27;s:18:\"js-eu1.hsforms.net\";i:28;s:18:\"yanovis.Voucher.js\";i:29;s:76:\"/carousel-upsells-and-related-product-for-woocommerce/assets/js/glide.min.js\";i:30;s:15:\"use.typekit.com\";i:31;s:39:\"/artale/modules/kirki/assets/webfont.js\";i:32;s:21:\"/api/scripts/lb_cs.js\";i:33;s:27:\"js.hscta.net/cta/current.js\";i:34;s:16:\"widget.refari.co\";i:35;s:20:\"player.vdocipher.com\";}s:19:\"delay_js_exclusions\";a:69:{i:0;s:10:\"nowprocket\";i:1;s:31:\"/wp-includes/js/wp-embed.min.js\";i:2;s:15:\"lazyLoadOptions\";i:3;s:13:\"lazyLoadThumb\";i:4;s:33:\"wp-rocket/assets/js/lazyload/(.*)\";i:5;s:30:\"et_core_page_resource_fallback\";i:6;s:25:\"window.\\$us === undefined\";i:7;s:8:\"js-extra\";i:8;s:20:\"fusionNavIsCollapsed\";i:9;s:26:\"/assets/js/smush-lazy-load\";i:10;s:13:\"eio_lazy_vars\";i:11;s:34:\"\\/lazysizes(\\.min|-pre|-post)?\\.js\";i:12;s:44:\"document\\.body\\.classList\\.remove\\(\"no-js\"\\)\";i:13;s:64:\"document\\.documentElement\\.className\\.replace\\( \'no-js\', \'js\' \\)\";i:14;s:17:\"et_animation_data\";i:15;s:16:\"wpforms_settings\";i:16;s:11:\"var nfForms\";i:17;s:14:\"//stats.wp.com\";i:18;s:9:\"_stq.push\";i:19;s:29:\"fluent_form_ff_form_instance_\";i:20;s:9:\"cpLoadCSS\";i:21;s:13:\"ninja_column_\";i:22;s:16:\"var rbs_gallery_\";i:23;s:12:\"var lepopup_\";i:24;s:28:\"var billing_additional_field\";i:25;s:10:\"var gtm4wp\";i:26;s:21:\"var dataLayer_content\";i:27;s:54:\"/ewww-image-optimizer/includes/load[_-]webp(\\.min)?.js\";i:28;s:52:\"/ewww-image-optimizer/includes/check-webp(\\.min)?.js\";i:29;s:19:\"ewww_webp_supported\";i:30;s:32:\"/dist/js/browser-redirect/app.js\";i:31;s:31:\"/perfmatters/js/lazyload.min.js\";i:32;s:16:\"lazyLoadInstance\";i:33;s:27:\"scripts.mediavine.com/tags/\";i:34;s:17:\"initCubePortfolio\";i:35;s:9:\"simpli.fi\";i:36;s:17:\"gforms_recaptcha_\";i:37;s:57:\"/jetpack-boost/vendor/automattic/jetpack-lazy-images/(.*)\";i:38;s:30:\"jetpack-lazy-images-js-enabled\";i:39;s:26:\"jetpack-boost-critical-css\";i:40;s:24:\"wpformsRecaptchaCallback\";i:41;s:20:\"booking-suedtirol-js\";i:42;s:26:\"wpcp_css_disable_selection\";i:43;s:41:\"/gravityforms/js/conditional_logic.min.js\";i:44;s:34:\"statcounter.com/counter/counter.js\";i:45;s:14:\"var sc_project\";i:46;s:59:\"/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/(.*)\";i:47;s:55:\"/themify-builder/themify/js/modules/fallback(\\.min)?.js\";i:48;s:16:\"handlePixMessage\";i:49;s:16:\"var corner_video\";i:50;s:26:\"cdn.pixfuture.com/hb_v2.js\";i:51;s:25:\"cdn.pixfuture.com/pbix.js\";i:52;s:43:\"served-by.pixfuture.com/www/delivery/ads.js\";i:53;s:64:\"served-by.pixfuture.com/www/delivery/headerbid_sticky_refresh.js\";i:54;s:35:\"serv-vdo.pixfuture.com/vpaid/ads.js\";i:55;s:14:\"wprRemoveCPCSS\";i:56;s:19:\"window.jdgmSettings\";i:57;s:67:\"/photonic/include/js/front-end/nomodule/photonic-baguettebox.min.js\";i:58;s:52:\"/photonic/include/ext/baguettebox/baguettebox.min.js\";i:59;s:27:\"window.wsf_form_json_config\";i:60;s:20:\"et_link_options_data\";i:61;s:19:\"FuseboxPlayerAPIKey\";i:62;s:27:\"js.hscta.net/cta/current.js\";i:63;s:14:\"hbspt.cta.load\";i:64;s:27:\"consent.cookiebot.com/uc.js\";i:65;s:53:\"/woofilter-pro/woofilterpro/js/ion.rangeSlider.min.js\";i:66;s:21:\"barra.r7.com/barra.js\";i:67;s:26:\"rocket_css_lazyload_launch\";i:68;s:16:\"#wpr-lazyload-bg\";}s:18:\"js_minify_external\";a:122:{i:0;s:8:\"html5.js\";i:1;s:11:\"show_ads.js\";i:2;s:14:\"histats.com/js\";i:3;s:21:\"ws.amazon.com/widgets\";i:4;s:5:\"/ads/\";i:5;s:17:\"intensedebate.com\";i:6;s:20:\"scripts.chitika.net/\";i:7;s:12:\"jotform.com/\";i:8;s:15:\"gist.github.com\";i:9;s:16:\"forms.aweber.com\";i:10;s:21:\"video.unrulymedia.com\";i:11;s:12:\"stats.wp.com\";i:12;s:19:\"stats.wordpress.com\";i:13;s:23:\"widget.rafflecopter.com\";i:14;s:29:\"widget-prime.rafflecopter.com\";i:15;s:23:\"releases.flowplayer.org\";i:16;s:13:\"c.ad6media.fr\";i:17;s:19:\"cdn.stickyadstv.com\";i:18;s:12:\"www.smava.de\";i:19;s:20:\"contextual.media.net\";i:20;s:19:\"app.getresponse.com\";i:21;s:24:\"adserver.reklamstore.com\";i:22;s:9:\"s0.wp.com\";i:23;s:16:\"wprp.zemanta.com\";i:24;s:21:\"files.bannersnack.com\";i:25;s:22:\"smarticon.geotrust.com\";i:26;s:11:\"js.gleam.io\";i:27;s:25:\"ir-na.amazon-adsystem.com\";i:28;s:19:\"web.ventunotech.com\";i:29;s:20:\"verify.authorize.net\";i:30;s:21:\"ads.themoneytizer.com\";i:31;s:20:\"embed.finanzcheck.de\";i:32;s:20:\"imagesrv.adition.com\";i:33;s:15:\"js.juicyads.com\";i:34;s:18:\"form.jotformeu.com\";i:35;s:15:\"speakerdeck.com\";i:36;s:22:\"content.jwplatform.com\";i:37;s:24:\"ads.investingchannel.com\";i:38;s:13:\"app.ecwid.com\";i:39;s:20:\"www.industriejobs.de\";i:40;s:14:\"s.gravatar.com\";i:41;s:21:\"googlesyndication.com\";i:42;s:13:\"a.optmstr.com\";i:43;s:14:\"a.optmnstr.com\";i:44;s:13:\"a.opmnstr.com\";i:45;s:12:\"adthrive.com\";i:46;s:13:\"mediavine.com\";i:47;s:14:\"js.hsforms.net\";i:48;s:20:\"googleadservices.com\";i:49;s:16:\"f.convertkit.com\";i:50;s:16:\"recaptcha/api.js\";i:51;s:12:\"mailmunch.co\";i:52;s:20:\"apps.shareaholic.com\";i:53;s:28:\"dsms0mj1bbhn4.cloudfront.net\";i:54;s:12:\"nutrifox.com\";i:55;s:13:\"code.tidio.co\";i:56;s:16:\"www.uplaunch.com\";i:57;s:24:\"widget.reviewability.com\";i:58;s:36:\"embed-cdn.gettyimages.com/widgets.js\";i:59;s:18:\"app.mailerlite.com\";i:60;s:7:\"ck.page\";i:61;s:28:\"cdn.jsdelivr.net/gh/AmauriC/\";i:62;s:39:\"static.klaviyo.com/onsite/js/klaviyo.js\";i:63;s:32:\"a.omappapi.com/app/js/api.min.js\";i:64;s:19:\"static.zdassets.com\";i:65;s:58:\"feedbackcompany.com/widgets/feedback-company-widget.min.js\";i:66;s:17:\"widget.gleamjs.io\";i:67;s:14:\"phonewagon.com\";i:68;s:35:\"simplybook.asia/v2/widget/widget.js\";i:69;s:33:\"simplybook.it/v2/widget/widget.js\";i:70;s:33:\"simplybook.me/v2/widget/widget.js\";i:71;s:48:\"static.botsrv.com/website/js/widget2.36cf1446.js\";i:72;s:27:\"static.mailerlite.com/data/\";i:73;s:14:\"cdn.voxpow.com\";i:74;s:16:\"loader.knack.com\";i:75;s:46:\"embed.lpcontent.net/leadboxes/current/embed.js\";i:76;s:52:\"cc.cdn.civiccomputing.com/9/cookieControl-9.x.min.js\";i:77;s:21:\"cse.google.com/cse.js\";i:78;s:19:\"kit.fontawesome.com\";i:79;s:51:\"cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js\";i:80;s:46:\"static.leadpages.net/leadbars/current/embed.js\";i:81;s:27:\"booqable.com/v2/booqable.js\";i:82;s:18:\"googleoptimize.com\";i:83;s:52:\"cdna.hubpeople.com/js/widget_standalone_two_modes.js\";i:84;s:18:\"s3.tradingview.com\";i:85;s:26:\"www.vbt.io/ext/vbtforms.js\";i:86;s:16:\"cdn.callrail.com\";i:87;s:40:\"documentcloud.adobe.com/view-sdk/main.js\";i:88;s:21:\"static.cleverpush.com\";i:89;s:15:\"js.afterpay.com\";i:90;s:33:\"cdn.enable.co.il/licenses/enable-\";i:91;s:21:\"hcaptcha.com/1/api.js\";i:92;s:46:\"voucher.getavo.it/public/js/yanovis.Voucher.js\";i:93;s:18:\"js-eu1.hsforms.net\";i:94;s:34:\"statcounter.com/counter/counter.js\";i:95;s:11:\"snapppt.com\";i:96;s:15:\"use.typekit.com\";i:97;s:35:\"secure.gravatar.com/js/gprofiles.js\";i:98;s:32:\"cdn.jsdelivr.net/npm/hockeystack\";i:99;s:22:\"widget.prod.faslet.net\";i:100;s:31:\"ga.getresponse.com/script/ga.js\";i:101;s:16:\"cognitoforms.com\";i:102;s:15:\"usercentrics.eu\";i:103;s:16:\"cdn.amcharts.com\";i:104;s:5:\"umami\";i:105;s:20:\"cdn.popt.in/pixel.js\";i:106;s:9:\"m2d.m2.ai\";i:107;s:11:\"pubguru.net\";i:108;s:13:\"trustindex.io\";i:109;s:37:\"cdnjs.cloudflare.com/ajax/libs/prism/\";i:110;s:25:\"podigee-podcast-player.js\";i:111;s:24:\"tarteaucitron.io/load.js\";i:112;s:29:\"osm.klarnaservices.com/lib.js\";i:113;s:25:\"mein.clickskeks.at/app.js\";i:114;s:21:\"barra.r7.com/barra.js\";i:115;s:16:\"widget.refari.co\";i:116;s:20:\"widget.reviews.co.uk\";i:117;s:20:\"player.vdocipher.com\";i:118;s:26:\"www.instagram.com/embed.js\";i:119;s:13:\"smartframe.io\";i:120;s:36:\"challenges.cloudflare.com/turnstile/\";i:121;s:20:\"script.roboassist.ai\";}s:21:\"js_move_after_combine\";a:106:{i:0;s:15:\"map_fusion_map_\";i:1;s:13:\"ec:addProduct\";i:2;s:16:\"ec:addImpression\";i:3;s:30:\"clear_better_facebook_comments\";i:4;s:29:\"vc-row-destroy-equal-heights-\";i:5;s:14:\"dfd-icon-list-\";i:6;s:12:\"SFM_template\";i:7;s:14:\"WLTChangeState\";i:8;s:9:\"wlt_star_\";i:9;s:17:\"wlt_pop_distance_\";i:10;s:14:\"smart_list_tip\";i:11;s:12:\"gd-wgt-pagi-\";i:12;s:11:\"data-rf-id=\";i:13;s:7:\"tvc_po=\";i:14;s:10:\"scrapeazon\";i:15;s:10:\"startclock\";i:16;s:22:\"it_logo_field_owl-box_\";i:17;s:15:\"td_live_css_uid\";i:18;s:17:\"wpvl_paramReplace\";i:19;s:11:\"tdAjaxCount\";i:20;s:9:\"mec_skin_\";i:21;s:4:\"_wca\";i:22;s:8:\"_taboola\";i:23;s:17:\"fbq(\'trackCustom\'\";i:24;s:11:\"fbq(\'track\'\";i:25;s:10:\"data.token\";i:26;s:7:\"sharrre\";i:27;s:19:\"dfads_ajax_load_ads\";i:28;s:13:\"tie_postviews\";i:29;s:10:\"wmp_update\";i:30;s:18:\"h5ab-print-article\";i:31;s:17:\"gform_ajax_frame_\";i:32;s:17:\"gform_post_render\";i:33;s:14:\"mts_view_count\";i:34;s:15:\"act_css_tooltip\";i:35;s:10:\"window.SLB\";i:36;s:14:\"wpt_view_count\";i:37;s:11:\"var dateNow\";i:38;s:16:\"gallery_product_\";i:39;s:21:\".flo-block-slideshow-\";i:40;s:17:\"data=\'api-key=ct-\";i:41;s:20:\"ip_common_function()\";i:42;s:31:\"(\"style#gsf-custom-css\").append\";i:43;s:22:\"a3revWCDynamicGallery_\";i:44;s:24:\"#owl-carousel-instagram-\";i:45;s:19:\"window.FlowFlowOpts\";i:46;s:16:\"jQuery(\'.td_uid_\";i:47;s:16:\"jQuery(\".slider-\";i:48;s:18:\"#dfd-vcard-widget-\";i:49;s:21:\"#sf-instagram-widget-\";i:50;s:18:\".woocommerce-tabs-\";i:51;s:16:\"penci_megamenu__\";i:52;s:18:\"vc_prepareHoverBox\";i:53;s:16:\"wp-temp-form-div\";i:54;s:25:\"_wswebinarsystem_already_\";i:55;s:23:\"#views-extra-css\").text\";i:56;s:20:\"fusetag.setTargeting\";i:57;s:20:\"hit.uptrendsdata.com\";i:58;s:27:\"callback:window.renderBadge\";i:59;s:29:\"test_run_nf_conditional_logic\";i:60;s:9:\"cb_nombre\";i:61;s:12:\"$(\'.fl-node-\";i:62;s:24:\"function($){google_maps_\";i:63;s:14:\"$(\"#myCarousel\";i:64;s:18:\"et_animation_data=\";i:65;s:13:\"current_url=\"\";i:66;s:44:\"CustomEvent.prototype=window.Event.prototype\";i:67;s:26:\"electro-wc-product-gallery\";i:68;s:14:\"woof_is_mobile\";i:69;s:20:\"jQuery(\'.videonextup\";i:70;s:10:\"wpp_params\";i:71;s:24:\"us.templateDirectoryUri=\";i:72;s:17:\".fat-gallery-item\";i:73;s:10:\".ratingbox\";i:74;s:33:\"user_rating.prototype.eraseCookie\";i:75;s:23:\"test_run_nf_conditional\";i:76;s:26:\"dpsp-networks-btns-wrapper\";i:77;s:19:\"pa_woo_product_info\";i:78;s:35:\"sharing_enabled_on_post_via_metabox\";i:79;s:22:\"#product-search-field-\";i:80;s:19:\"GOTMLS_login_offset\";i:81;s:40:\"berocket_aapf_time_to_fix_products_style\";i:82;s:27:\"window.vc_googleMapsPointer\";i:83;s:8:\"sinceID_\";i:84;s:31:\"#ut-background-video-ut-section\";i:85;s:26:\"+window.comment_tab_width+\";i:86;s:19:\"dfd-button-hover-in\";i:87;s:21:\"wpseo-address-wrapper\";i:88;s:24:\"platform.stumbleupon.com\";i:89;s:27:\"#woo_pp_ec_button_mini_cart\";i:90;s:14:\"#supercarousel\";i:91;s:10:\"blockClass\";i:92;s:11:\"tdbMenuItem\";i:93;s:13:\"tdbSearchItem\";i:94;s:17:\"best_seller_badge\";i:95;s:24:\"jQuery(\'#product-top-bar\";i:96;s:8:\"fb_desc-\";i:97;s:21:\"FC_regenerate_captcha\";i:98;s:34:\"wp_post_blocks_vars.listed_posts=[\";i:99;s:12:\"captcha-hash\";i:100;s:9:\"mapdata={\";i:101;s:11:\".ywpc-char-\";i:102;s:17:\").countdowntimer(\";i:103;s:16:\"jQuery(\"#td_uid_\";i:104;s:14:\"find(\'#td_uid_\";i:105;s:22:\"variation_estimate_msg\";}s:18:\"js_excluded_inline\";a:311:{i:0;s:14:\"document.write\";i:1;s:9:\"google_ad\";i:2;s:9:\"edToolbar\";i:3;s:4:\"gtag\";i:4;s:9:\"_gaq.push\";i:5;s:5:\"_gaLt\";i:6;s:21:\"GoogleAnalyticsObject\";i:7;s:17:\"syntaxhighlighter\";i:8;s:11:\"adsbygoogle\";i:9;s:7:\"ci_cap_\";i:10;s:4:\"_stq\";i:11;s:5:\"nonce\";i:12;s:7:\"post_id\";i:13;s:8:\"LogHuman\";i:14;s:15:\"idcomments_acct\";i:15;s:9:\"ch_client\";i:16;s:11:\"sc_online_t\";i:17;s:4:\"_stq\";i:18;s:17:\"bannersnack_embed\";i:19;s:15:\"vtn_player_type\";i:20;s:13:\"ven_video_key\";i:21;s:15:\"ANS_customer_id\";i:22;s:7:\"tdBlock\";i:23;s:12:\"tdLocalCache\";i:24;s:11:\"wpRestNonce\";i:25;s:6:\"\"url\":\";i:26;s:15:\"lazyLoadOptions\";i:27;s:8:\"adthrive\";i:28;s:7:\"loadCSS\";i:29;s:17:\"google_tag_params\";i:30;s:13:\"clicky_custom\";i:31;s:15:\"clicky_site_ids\";i:32;s:14:\"NSLPopupCenter\";i:33;s:4:\"_paq\";i:34;s:3:\"gtm\";i:35;s:9:\"dataLayer\";i:36;s:13:\"RecaptchaLoad\";i:37;s:20:\"WPCOM_sharing_counts\";i:38;s:22:\"jetpack_remote_comment\";i:39;s:15:\"subscribe-field\";i:40;s:9:\"contextly\";i:41;s:7:\"_mmunch\";i:42;s:14:\"gt_request_uri\";i:43;s:12:\"doGTranslate\";i:44;s:8:\"docTitle\";i:45;s:17:\"bs_ajax_paginate_\";i:46;s:20:\"bs_deferred_loading_\";i:47;s:22:\"theChampRedirectionUrl\";i:48;s:20:\"theChampFBCommentUrl\";i:49;s:23:\"theChampTwitterRedirect\";i:50;s:25:\"theChampRegRedirectionUrl\";i:51;s:14:\"ESSB_CACHE_URL\";i:52;s:30:\"oneall_social_login_providers_\";i:53;s:22:\"betterads_screen_width\";i:54;s:40:\"woocommerce_wishlist_add_to_wishlist_url\";i:55;s:21:\"arf_conditional_logic\";i:56;s:27:\"heateorSsHorSharingShortUrl\";i:57;s:8:\"TL_Const\";i:58;s:23:\"bimber_front_microshare\";i:59;s:17:\"setAttribute(\"id\"\";i:60;s:18:\"setAttribute( \"id\"\";i:61;s:14:\"TribeEventsPro\";i:62;s:14:\"peepsotimedata\";i:63;s:9:\"wphc_data\";i:64;s:10:\"hc_rand_id\";i:65;s:7:\"RBL_ADD\";i:66;s:18:\"AfsAnalyticsObject\";i:67;s:18:\"_thriveCurrentPost\";i:68;s:13:\"esc_login_url\";i:69;s:18:\"fwduvpMainPlaylist\";i:70;s:26:\"Bibblio.initRelatedContent\";i:71;s:9:\"showUFC()\";i:72;s:8:\"#iphorm-\";i:73;s:7:\"#fancy-\";i:74;s:13:\"ult-carousel-\";i:75;s:17:\"theChampLJAuthUrl\";i:76;s:6:\"f._fbq\";i:77;s:10:\"Insticator\";i:78;s:15:\"w2dc_js_objects\";i:79;s:11:\"cherry_ajax\";i:80;s:9:\"ad_block_\";i:81;s:23:\"elementorFrontendConfig\";i:82;s:5:\"zeen_\";i:83;s:16:\"disqusIdentifier\";i:84;s:14:\"currentAjaxUrl\";i:85;s:27:\"geodir_event_call_calendar_\";i:86;s:8:\"atatags-\";i:87;s:18:\"hbspt.forms.create\";i:88;s:19:\"function(c,h,i,m,p)\";i:89;s:11:\"dataTable({\";i:90;s:12:\"rankMath = {\";i:91;s:10:\"_atrk_opts\";i:92;s:16:\"quicklinkOptions\";i:93;s:11:\"ct_checkjs_\";i:94;s:18:\"WP_Statistics_http\";i:95;s:12:\"penci_block_\";i:96;s:15:\"omapi_localized\";i:97;s:10:\"omapi_data\";i:98;s:15:\"OptinMonsterApp\";i:99;s:9:\"tminusnow\";i:100;s:7:\"nfForms\";i:101;s:18:\"galleries.gallery_\";i:102;s:14:\"wcj_evt.prodID\";i:103;s:19:\"advads_tracking_ads\";i:104;s:28:\"advadsGATracking.postContext\";i:105;s:14:\"woopack_config\";i:106;s:14:\"ulp_content_id\";i:107;s:26:\"wp-cumulus/tagcloud.swf?r=\";i:108;s:24:\"ctSetCookie(\'ct_checkjs\'\";i:109;s:20:\"woof_really_curr_tax\";i:110;s:17:\"uLogin.customInit\";i:111;s:32:\"i18n_no_matching_variations_text\";i:112;s:22:\"alsp_map_markers_attrs\";i:113;s:13:\"var inc_opt =\";i:114;s:13:\"iworks_upprev\";i:115;s:19:\"yith_wcevti_tickets\";i:116;s:27:\"window.metrilo.ensure_cbuid\";i:117;s:13:\"metrilo.event\";i:118;s:19:\"wordpress_page_root\";i:119;s:9:\"wcct_info\";i:120;s:20:\"Springbot.product_id\";i:121;s:17:\"pysWooProductData\";i:122;s:11:\"dfd-heading\";i:123;s:8:\"owl=$(\"#\";i:124;s:14:\"penci_megamenu\";i:125;s:12:\"fts_security\";i:126;s:19:\"algoliaAutocomplete\";i:127;s:22:\"avia_framework_globals\";i:128;s:23:\"tabs.easyResponsiveTabs\";i:129;s:20:\"searchlocationHeader\";i:130;s:16:\"yithautocomplete\";i:131;s:19:\"data-parallax-speed\";i:132;s:14:\"currency_data=\";i:133;s:11:\"cedexisData\";i:134;s:23:\"function reenableButton\";i:135;s:12:\"#wpnbio-show\";i:136;s:29:\"e.Newsletter2GoTrackingObject\";i:137;s:15:\"var categories_\";i:138;s:14:\"\"+nRemaining+\"\";i:139;s:20:\"cartsguru_cart_token\";i:140;s:21:\"after_share_easyoptin\";i:141;s:18:\"location_data.push\";i:142;s:30:\"thirstyFunctions.isThirstyLink\";i:143;s:23:\"styles: \' #custom-menu-\";i:144;s:20:\"function svc_center_\";i:145;s:25:\"#svc_carousel2_container_\";i:146;s:11:\"advads.move\";i:147;s:9:\"elementid\";i:148;s:14:\"advads_has_ads\";i:149;s:14:\"wpseo_map_init\";i:150;s:20:\"mdf_current_page_url\";i:151;s:12:\"tptn_tracker\";i:152;s:20:\"dpsp_pin_button_data\";i:153;s:27:\"searchwp_live_search_params\";i:154;s:10:\"wpp_params\";i:155;s:21:\"top.location,thispage\";i:156;s:18:\"selection+pagelink\";i:157;s:20:\"ic_window_resolution\";i:158;s:11:\"PHP.wp_p_id\";i:159;s:29:\"ShopifyBuy.UI.onReady(client)\";i:160;s:16:\"orig_request_uri\";i:161;s:16:\"gie.widgets.load\";i:162;s:11:\"Adman.Flash\";i:163;s:11:\"PHP.wp_p_id\";i:164;s:26:\"window.broadstreetKeywords\";i:165;s:15:\"var productId =\";i:166;s:16:\"var flatsomeVars\";i:167;s:21:\"wc_product_block_data\";i:168;s:21:\"static.mailerlite.com\";i:169;s:10:\"amzn_assoc\";i:170;s:22:\"_bs_getParameterByName\";i:171;s:9:\"_stq.push\";i:172;s:9:\"h._remove\";i:173;s:16:\"var FlowFlowOpts\";i:174;s:14:\"var WCPFData =\";i:175;s:14:\"var _beeketing\";i:176;s:16:\"var _statcounter\";i:177;s:13:\"var actions =\";i:178;s:15:\"var current_url\";i:179;s:15:\"var object_name\";i:180;s:19:\"var the_ajax_script\";i:181;s:28:\"var wc_cart_fragments_params\";i:182;s:22:\"var woocommerce_params\";i:183;s:16:\"var wpml_cookies\";i:184;s:21:\"wc_add_to_cart_params\";i:185;s:26:\"window.broadstreetKeywords\";i:186;s:35:\"window.wc_ga_pro.available_gateways\";i:187;s:12:\"xa.prototype\";i:188;s:21:\"HOUZEZ_ajaxcalls_vars\";i:189;s:17:\"w2dc_maps_objects\";i:190;s:26:\"w2dc_controller_args_array\";i:191;s:22:\"w2dc_map_markers_attrs\";i:192;s:9:\"YT.Player\";i:193;s:9:\"WPFC.data\";i:194;s:23:\"function current_video_\";i:195;s:12:\"var videodiv\";i:196;s:22:\"var slider_wppasrotate\";i:197;s:8:\"wppas_ga\";i:198;s:14:\"var blockClass\";i:199;s:13:\"tarteaucitron\";i:200;s:21:\"pw_brand_product_list\";i:201;s:15:\"tminusCountDown\";i:202;s:23:\"pysWooSelectContentData\";i:203;s:13:\"wpvq_ans89733\";i:204;s:12:\"_isp_version\";i:205;s:16:\"price_range_data\";i:206;s:29:\"window.FeedbackCompanyWidgets\";i:207;s:22:\"woocs_current_currency\";i:208;s:30:\"woo_variation_swatches_options\";i:209;s:31:\"woocommerce_price_slider_params\";i:210;s:12:\"scriptParams\";i:211;s:19:\"form-adv-pagination\";i:212;s:23:\"borlabsCookiePrioritize\";i:213;s:21:\"urls_wpwidgetpolylang\";i:214;s:14:\"quickViewNonce\";i:215;s:22:\"frontendscripts_params\";i:216;s:21:\"nj-facebook-messenger\";i:217;s:20:\"var fb_mess_position\";i:218;s:36:\"init_particles_row_background_script\";i:219;s:15:\"setREVStartSize\";i:220;s:7:\"fl-node\";i:221;s:11:\"PPAccordion\";i:222;s:10:\"soliloquy_\";i:223;s:25:\"wprevpublicjs_script_vars\";i:224;s:19:\"DTGS_NONCE_FRONTEND\";i:225;s:17:\"et_animation_data\";i:226;s:17:\"archives-dropdown\";i:227;s:15:\"loftloaderCache\";i:228;s:17:\"SmartSliderSimple\";i:229;s:14:\"var nectarLove\";i:230;s:10:\"var incOpt\";i:231;s:33:\"RocketBrowserCompatibilityChecker\";i:232;s:24:\"RocketPreloadLinksConfig\";i:233;s:18:\"placementVersionId\";i:234;s:11:\"var useEdit\";i:235;s:23:\"var DTGS_NONCE_FRONTEND\";i:236;s:8:\"n2jQuery\";i:237;s:26:\"et_core_api_spam_recaptcha\";i:238;s:6:\"cnArgs\";i:239;s:14:\"__CF$cv$params\";i:240;s:17:\"trustbox_settings\";i:241;s:5:\"aepro\";i:242;s:10:\"cdn.jst.ai\";i:243;s:25:\"w2dc_fields_in_categories\";i:244;s:21:\"jetMenuPublicSettings\";i:245;s:17:\"JetTricksSettings\";i:246;s:10:\"aepc_pixel\";i:247;s:20:\"avadaWooCommerceVars\";i:248;s:7:\"var isb\";i:249;s:9:\"fcaPcPost\";i:250;s:10:\"csrf_token\";i:251;s:24:\"icwp_wpsf_vars_lpantibot\";i:252;s:11:\"wpvViewHead\";i:253;s:16:\"ed_school_plugin\";i:254;s:9:\"aps_comp_\";i:255;s:11:\"guaven_woos\";i:256;s:16:\"__lm_redirect_to\";i:257;s:17:\"__wpdm_view_count\";i:258;s:23:\"bookacti.booking_system\";i:259;s:10:\"nfFrontEnd\";i:260;s:20:\"view_quote_cart_link\";i:261;s:19:\"__eae_decode_emails\";i:262;s:20:\"divioverlays_ajaxurl\";i:263;s:10:\"var _EPYT_\";i:264;s:13:\"#ins-heading-\";i:265;s:12:\"#ins-button-\";i:266;s:20:\"tve_frontend_options\";i:267;s:8:\"lb24.src\";i:268;s:24:\"amazon_Login_accessToken\";i:269;s:21:\"porto_infinite_scroll\";i:270;s:14:\".adace-loader-\";i:271;s:11:\"adace_load_\";i:272;s:41:\"tagGroupsAccordiontaggroupscloudaccordion\";i:273;s:31:\"tagGroupsTabstaggroupscloudtabs\";i:274;s:16:\"jrRelatedWidgets\";i:275;s:14:\"UNCODE.initRow\";i:276;s:28:\"amp_mobile_redirect_disabled\";i:277;s:11:\"wpgdprcData\";i:278;s:28:\"wpml_browser_redirect_params\";i:279;s:13:\"swPreRegister\";i:280;s:15:\"kboard_settings\";i:281;s:23:\"ct_ultimate_gdpr_cookie\";i:282;s:23:\"wcpv_registration_local\";i:283;s:15:\"www.idxhome.com\";i:284;s:24:\"arf_footer_cl_logic_call\";i:285;s:23:\"reload_attached_coupons\";i:286;s:8:\"var ftpp\";i:287;s:15:\"forminatorFront\";i:288;s:6:\"_EPYT_\";i:289;s:23:\"edd_free_downloads_vars\";i:290;s:15:\"edd_stripe_vars\";i:291;s:7:\"var ASP\";i:292;s:18:\"ecwidOriginalTitle\";i:293;s:17:\"defaultCategoryId\";i:294;s:25:\"translation-revision-date\";i:295;s:20:\"google_conversion_id\";i:296;s:5:\"hbspt\";i:297;s:21:\"var marker_locations_\";i:298;s:13:\"var AdmMyAjax\";i:299;s:13:\"ifso_page_url\";i:300;s:21:\"referrer_for_pageload\";i:301;s:38:\"WoocommerceWidget/woocommerceWidget.js\";i:302;s:19:\"var ht_ctc_chat_var\";i:303;s:6:\"spuvar\";i:304;s:16:\"var wpilFrontend\";i:305;s:24:\"urls_polylangREPLACETOID\";i:306;s:34:\"e.setAttribute(\'unselectable\',on);\";i:307;s:16:\"try{Typekit.load\";i:308;s:9:\"iMapsData\";i:309;s:24:\"var wpforms_user_journey\";i:310;s:24:\"rocket_lazyload_css_data\";}s:24:\"cache_ignored_parameters\";a:68:{i:0;s:10:\"utm_source\";i:1;s:10:\"utm_medium\";i:2;s:12:\"utm_campaign\";i:3;s:9:\"utm_expid\";i:4;s:8:\"utm_term\";i:5;s:11:\"utm_content\";i:6;s:6:\"utm_id\";i:7;s:19:\"utm_source_platform\";i:8;s:19:\"utm_creative_format\";i:9;s:20:\"utm_marketing_tactic\";i:10;s:10:\"mtm_source\";i:11;s:10:\"mtm_medium\";i:12;s:12:\"mtm_campaign\";i:13;s:11:\"mtm_keyword\";i:14;s:7:\"mtm_cid\";i:15;s:11:\"mtm_content\";i:16;s:9:\"pk_source\";i:17;s:9:\"pk_medium\";i:18;s:11:\"pk_campaign\";i:19;s:10:\"pk_keyword\";i:20;s:6:\"pk_cid\";i:21;s:10:\"pk_content\";i:22;s:13:\"fb_action_ids\";i:23;s:15:\"fb_action_types\";i:24;s:9:\"fb_source\";i:25;s:6:\"fbclid\";i:26;s:10:\"campaignid\";i:27;s:9:\"adgroupid\";i:28;s:4:\"adid\";i:29;s:5:\"gclid\";i:30;s:12:\"age-verified\";i:31;s:12:\"ao_noptimize\";i:32;s:4:\"usqp\";i:33;s:11:\"cn-reloaded\";i:34;s:3:\"_ga\";i:35;s:5:\"sscid\";i:36;s:6:\"gclsrc\";i:37;s:3:\"_gl\";i:38;s:6:\"mc_cid\";i:39;s:6:\"mc_eid\";i:40;s:8:\"_bta_tid\";i:41;s:6:\"_bta_c\";i:42;s:11:\"trk_contact\";i:43;s:7:\"trk_msg\";i:44;s:10:\"trk_module\";i:45;s:7:\"trk_sid\";i:46;s:5:\"gdfms\";i:47;s:6:\"gdftrk\";i:48;s:5:\"gdffi\";i:49;s:3:\"_ke\";i:50;s:3:\"_kx\";i:51;s:21:\"redirect_log_mongo_id\";i:52;s:17:\"redirect_mongo_id\";i:53;s:15:\"sb_referer_host\";i:54;s:5:\"mkwid\";i:55;s:5:\"pcrid\";i:56;s:5:\"ef_id\";i:57;s:7:\"s_kwcid\";i:58;s:7:\"msclkid\";i:59;s:4:\"dm_i\";i:60;s:4:\"epik\";i:61;s:2:\"pp\";i:62;s:6:\"gbraid\";i:63;s:6:\"wbraid\";i:64;s:8:\"ssp_iabi\";i:65;s:8:\"ssp_iaba\";i:66;s:3:\"gad\";i:67;s:6:\"vgo_ee\";}s:18:\"preload_exclusions\";a:4:{i:0;s:9:\"void\\(.*;\";i:1;s:17:\"(.*)__trashed(.*)\";i:2;s:14:\"/jet-menu/(.*)\";i:3;s:15:\"/jet-popup/(.*)\";}s:16:\"exclude_js_files\";a:8:{i:0;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:1;s:76:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/html2canvas.min.js\";i:2;s:68:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/pdf.min.js\";i:3;s:70:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/three.min.js\";i:4;s:77:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/3d-flip-book.min.js\";i:5;s:39:\"/google-site-kit/dist/assets/js/(.*).js\";i:6;s:45:\"/wp-live-chat-support/public/js/callus(.*).js\";i:7;s:41:\"/borlabs-cookie/assets/javascript/(.*).js\";}s:15:\"staging_domains\";a:27:{i:0;s:13:\".wpengine.com\";i:1;s:20:\".wpenginepowered.com\";i:2;s:16:\".pantheonsite.io\";i:3;s:18:\".flywheelsites.com\";i:4;s:20:\".flywheelstaging.com\";i:5;s:11:\".kinsta.com\";i:6;s:13:\".kinsta.cloud\";i:7;s:18:\".cloudwaysapps.com\";i:8;s:18:\".azurewebsites.net\";i:9;s:14:\".wpserveur.net\";i:10;s:19:\"-liquidwebsites.com\";i:11;s:16:\".myftpupload.com\";i:12;s:12:\".dream.press\";i:13;s:12:\".sg-host.com\";i:14;s:16:\".platformsh.site\";i:15;s:12:\".wpstage.net\";i:16;s:22:\".bigscoots-staging.com\";i:17;s:10:\".wpsc.site\";i:18;s:14:\".runcloud.link\";i:19;s:14:\".onrocket.site\";i:20;s:18:\".singlestaging.com\";i:21;s:13:\".myraidbox.de\";i:22;s:12:\".instawp.xyz\";i:23;s:11:\".instawp.co\";i:24;s:13:\".instawp.link\";i:25;s:12:\".instawp.app\";i:26;s:12:\".hstgr.cloud\";}}','no'),(299321,'_transient_timeout_vgse_sort_options_product','1704559826','no'),(299322,'_transient_vgse_sort_options_product','a:10:{s:6:\"ASC:ID\";s:8:\"ID : ASC\";s:7:\"DESC:ID\";s:9:\"ID : DESC\";s:14:\"ASC:post_title\";s:16:\"post_title : ASC\";s:15:\"DESC:post_title\";s:17:\"post_title : DESC\";s:13:\"ASC:post_name\";s:15:\"post_name : ASC\";s:14:\"DESC:post_name\";s:16:\"post_name : DESC\";s:13:\"ASC:post_date\";s:15:\"post_date : ASC\";s:0:\"\";s:26:\"post_date : DESC (Default)\";s:17:\"ASC:post_modified\";s:19:\"post_modified : ASC\";s:18:\"DESC:post_modified\";s:20:\"post_modified : DESC\";}','no'),(299333,'_transient_timeout_vgse_sort_options_post','1704559995','no'),(299334,'_transient_vgse_sort_options_post','a:10:{s:6:\"ASC:ID\";s:8:\"ID : ASC\";s:7:\"DESC:ID\";s:9:\"ID : DESC\";s:14:\"ASC:post_title\";s:16:\"post_title : ASC\";s:15:\"DESC:post_title\";s:17:\"post_title : DESC\";s:13:\"ASC:post_name\";s:15:\"post_name : ASC\";s:14:\"DESC:post_name\";s:16:\"post_name : DESC\";s:13:\"ASC:post_date\";s:15:\"post_date : ASC\";s:0:\"\";s:26:\"post_date : DESC (Default)\";s:17:\"ASC:post_modified\";s:19:\"post_modified : ASC\";s:18:\"DESC:post_modified\";s:20:\"post_modified : DESC\";}','no'),(299337,'_transient_timeout_wpr_dynamic_lists_incompatible_plugins','1704559998','no'),(299338,'_transient_wpr_dynamic_lists_incompatible_plugins','O:8:\"stdClass\":6:{s:0:\"\";a:35:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"wp-super-cache\";s:4:\"file\";s:27:\"wp-super-cache/wp-cache.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:23:\"enable-gzip-compression\";s:4:\"file\";s:51:\"enable-gzip-compression/enable-gzip-compression.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"quick-cache\";s:4:\"file\";s:27:\"quick-cache/quick-cache.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:31:\"leverage-browser-caching-ninjas\";s:4:\"file\";s:66:\"leverage-browser-caching-ninjas/leverage-browser-caching-ninja.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:28:\"wp-performance-score-booster\";s:4:\"file\";s:61:\"wp-performance-score-booster/wp-performance-score-booster.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:15:\"litespeed-cache\";s:4:\"file\";s:35:\"litespeed-cache/litespeed-cache.php\";}i:6;O:8:\"stdClass\":2:{s:4:\"slug\";s:42:\"remove-query-strings-from-static-resources\";s:4:\"file\";s:67:\"remove-query-strings-from-static-resources/remove-query-strings.php\";}i:7;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"wp-http-compression\";s:4:\"file\";s:43:\"wp-http-compression/wp-http-compression.php\";}i:8;O:8:\"stdClass\":2:{s:4:\"slug\";s:21:\"query-strings-remover\";s:4:\"file\";s:47:\"query-strings-remover/query-strings-remover.php\";}i:9;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"page-optimize\";s:4:\"file\";s:31:\"page-optimize/page-optimize.php\";}i:10;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"speed-booster-pack\";s:4:\"file\";s:41:\"speed-booster-pack/speed-booster-pack.php\";}i:11;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"swift-performance\";s:4:\"file\";s:33:\"swift-performance/performance.php\";}i:12;O:8:\"stdClass\":2:{s:4:\"slug\";s:28:\"gzip-ninja-speed-compression\";s:4:\"file\";s:49:\"gzip-ninja-speed-compression/gzip-ninja-speed.php\";}i:13;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"super-static-cache\";s:4:\"file\";s:41:\"super-static-cache/super-static-cache.php\";}i:14;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"lite-cache\";s:4:\"file\";s:21:\"lite-cache/plugin.php\";}i:15;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"hyper-cache\";s:4:\"file\";s:22:\"hyper-cache/plugin.php\";}i:16;O:8:\"stdClass\":2:{s:4:\"slug\";s:7:\"wp-ffpc\";s:4:\"file\";s:19:\"wp-ffpc/wp-ffpc.php\";}i:17;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"wp-fast-cache\";s:4:\"file\";s:31:\"wp-fast-cache/wp-fast-cache.php\";}i:18;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"psn-pagespeed-ninja\";s:4:\"file\";s:38:\"psn-pagespeed-ninja/pagespeedninja.php\";}i:19;O:8:\"stdClass\":2:{s:4:\"slug\";s:22:\"swift-performance-lite\";s:4:\"file\";s:38:\"swift-performance-lite/performance.php\";}i:20;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"force-gzip\";s:4:\"file\";s:25:\"force-gzip/force-gzip.php\";}i:21;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"add-expires-headers\";s:4:\"file\";s:43:\"add-expires-headers/add-expires-headers.php\";}i:22;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"hyper-cache-extended\";s:4:\"file\";s:31:\"hyper-cache-extended/plugin.php\";}i:23;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"gator-cache\";s:4:\"file\";s:27:\"gator-cache/gator-cache.php\";}i:24;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"flexicache\";s:4:\"file\";s:24:\"flexicache/wp-plugin.php\";}i:25;O:8:\"stdClass\":2:{s:4:\"slug\";s:16:\"wp-fastest-cache\";s:4:\"file\";s:35:\"wp-fastest-cache/wpFastestCache.php\";}i:26;O:8:\"stdClass\":2:{s:4:\"slug\";s:26:\"wordpress-gzip-compression\";s:4:\"file\";s:35:\"wordpress-gzip-compression/ezgz.php\";}i:27;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"wp-optimize\";s:4:\"file\";s:27:\"wp-optimize/wp-optimize.php\";}i:28;O:8:\"stdClass\":2:{s:4:\"slug\";s:33:\"check-and-enable-gzip-compression\";s:4:\"file\";s:54:\"check-and-enable-gzip-compression/richards-toolbox.php\";}i:29;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"far-future-expiry-header\";s:4:\"file\";s:50:\"far-future-expiry-header/far-future-expiration.php\";}i:30;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"leverage-browser-caching\";s:4:\"file\";s:53:\"leverage-browser-caching/leverage-browser-caching.php\";}i:31;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"wpcompressor\";s:4:\"file\";s:29:\"wpcompressor/wpcompressor.php\";}i:32;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"combine-css\";s:4:\"file\";s:27:\"combine-css/combine-css.php\";}i:33;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"w3-total-cache\";s:4:\"file\";s:33:\"w3-total-cache/w3-total-cache.php\";}i:34;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"cache-enabler\";s:4:\"file\";s:31:\"cache-enabler/cache-enabler.php\";}}s:21:\"minify_css||minify_js\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"merge-minify-refresh\";s:4:\"file\";s:45:\"merge-minify-refresh/merge-minify-refresh.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:16:\"async-js-and-css\";s:4:\"file\";s:34:\"async-js-and-css/asyncJSandCSS.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:15:\"wp-super-minify\";s:4:\"file\";s:35:\"wp-super-minify/wp-super-minify.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"fast-velocity-minify\";s:4:\"file\";s:28:\"fast-velocity-minify/fvm.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:23:\"dependency-minification\";s:4:\"file\";s:51:\"dependency-minification/dependency-minification.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"bwp-minify\";s:4:\"file\";s:25:\"bwp-minify/bwp-minify.php\";}i:6;O:8:\"stdClass\":2:{s:4:\"slug\";s:8:\"minqueue\";s:4:\"file\";s:19:\"minqueue/plugin.php\";}i:7;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"scripts-gzip\";s:4:\"file\";s:29:\"scripts-gzip/scripts_gzip.php\";}i:8;O:8:\"stdClass\":2:{s:4:\"slug\";s:9:\"wp-minify\";s:4:\"file\";s:23:\"wp-minify/wp-minify.php\";}}s:8:\"lazyload\";a:6:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:9:\"lazy-load\";s:4:\"file\";s:23:\"lazy-load/lazy-load.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"bj-lazy-load\";s:4:\"file\";s:29:\"bj-lazy-load/bj-lazy-load.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:25:\"jquery-image-lazy-loading\";s:4:\"file\";s:46:\"jquery-image-lazy-loading/jq_img_lazy_load.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"crazy-lazy\";s:4:\"file\";s:25:\"crazy-lazy/crazy-lazy.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"specify-image-dimensions\";s:4:\"file\";s:53:\"specify-image-dimensions/specify-image-dimensions.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"advanced-lazy-load\";s:4:\"file\";s:40:\"advanced-lazy-load/advanced_lazyload.php\";}}s:9:\"minify_js\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:5:\"wp-js\";s:4:\"file\";s:15:\"wp-js/wp-js.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"scripts-to-footerphp\";s:4:\"file\";s:42:\"scripts-to-footerphp/scripts-to-footer.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"combine-js\";s:4:\"file\";s:25:\"combine-js/combine-js.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"footer-javascript\";s:4:\"file\";s:39:\"footer-javascript/footer-javascript.php\";}}s:17:\"control_heartbeat\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"heartbeat-control\";s:4:\"file\";s:39:\"heartbeat-control/heartbeat-control.php\";}}s:16:\"lazyload_iframes\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"lazy-load-for-videos\";s:4:\"file\";s:37:\"lazy-load-for-videos/codeispoetry.php\";}}}','no'),(299594,'_site_transient_timeout_browser_9c1ce27f08b16479d2e17743062b28ed','1704743728','no'),(299595,'_site_transient_browser_9c1ce27f08b16479d2e17743062b28ed','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"120.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(299596,'_site_transient_timeout_php_check_38979a08dcd71638878b7b4419751271','1704743728','no'),(299597,'_site_transient_php_check_38979a08dcd71638878b7b4419751271','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(299604,'_transient_timeout_wc_report_orders_stats_31f65ba57375ae34a7a7e82edc0bc42c','1704743731','no'),(299605,'_transient_wc_report_orders_stats_31f65ba57375ae34a7a7e82edc0bc42c','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-01 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(299606,'_transient_timeout_wc_report_orders_stats_b5b6eeaa416852c8ce9f105968d19ecc','1704743731','no'),(299607,'_transient_wc_report_orders_stats_b5b6eeaa416852c8ce9f105968d19ecc','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-01 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(299608,'_transient_timeout_wc_report_products_stats_c2c1629a13f1a9ecfe19a754ef82b262','1704743731','no'),(299609,'_transient_wc_report_products_stats_c2c1629a13f1a9ecfe19a754ef82b262','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-01 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(299610,'_transient_timeout_wc_report_variations_stats_265cbf6ac41f2afe600a9a8156ece621','1704743731','no'),(299611,'_transient_wc_report_variations_stats_265cbf6ac41f2afe600a9a8156ece621','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-01 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(299612,'_transient_timeout_wc_report_orders_stats_b87805a63e10dd5d9629733513e1f00d','1704743731','no'),(299613,'_transient_wc_report_orders_stats_b87805a63e10dd5d9629733513e1f00d','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:7:{i:0;a:6:{s:8:\"interval\";s:10:\"2023-12-26\";s:10:\"date_start\";s:19:\"2023-12-26 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-25 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-26 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-26 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2023-12-27\";s:10:\"date_start\";s:19:\"2023-12-27 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-26 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-27 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-27 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2023-12-28\";s:10:\"date_start\";s:19:\"2023-12-28 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-27 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-28 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-28 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2023-12-29\";s:10:\"date_start\";s:19:\"2023-12-29 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-28 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-29 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-29 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2023-12-30\";s:10:\"date_start\";s:19:\"2023-12-30 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-29 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-30 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-30 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2023-12-31\";s:10:\"date_start\";s:19:\"2023-12-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-30 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-31 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-31 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2024-01-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-01 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:7;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(299632,'_transient_timeout_cartflows-ca-5-star-notice','1706731017','no'),(299633,'_transient_cartflows-ca-5-star-notice','1','no'),(299670,'wpvivid_task_list','a:0:{}','no'),(299720,'_transient_timeout_rocket_get_refreshed_fragments_cache','1704747585','no'),(299721,'_transient_rocket_get_refreshed_fragments_cache','{\"fragments\":{\"div.widget_shopping_cart_content\":\"<div class=\\\"widget_shopping_cart_content\\\">\\n\\n\\t<div class=\\\"ux-mini-cart-empty flex flex-row-col text-center pt pb\\\">\\n\\t\\t\\t\\t<div class=\\\"ux-mini-cart-empty-icon\\\">\\n\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 17 19\\\" style=\\\"opacity: .1;height:80px;\\\">\\n\\t\\t\\t\\t<path d=\\\"M8.5 0C6.7 0 5.3 1.2 5.3 2.7v2H2.1c-.3 0-.6.3-.7.7L0 18.2c0 .4.2.8.6.8h15.7c.4 0 .7-.3.7-.7v-.1L15.6 5.4c0-.3-.3-.6-.7-.6h-3.2v-2c0-1.6-1.4-2.8-3.2-2.8zM6.7 2.7c0-.8.8-1.4 1.8-1.4s1.8.6 1.8 1.4v2H6.7v-2zm7.5 3.4 1.3 11.5h-14L2.8 6.1h2.5v1.4c0 .4.3.7.7.7.4 0 .7-.3.7-.7V6.1h3.5v1.4c0 .4.3.7.7.7s.7-.3.7-.7V6.1h2.6z\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" fill=\\\"#303031\\\"><\\/path>\\n\\t\\t\\t<\\/svg>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<p class=\\\"woocommerce-mini-cart__empty-message empty\\\">Geen producten in de winkelwagen.<\\/p>\\n\\t\\t\\t\\t\\t<p class=\\\"return-to-shop\\\">\\n\\t\\t\\t\\t<a class=\\\"button primary wc-backward\\\" href=\\\"https:\\/\\/www.nl.ecom-expansion.com\\/alle-producten\\/\\\">\\n\\t\\t\\t\\t\\tTerug naar de winkel\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/div>\\n\\n\\n<\\/div>\",\".cart-price\":\" <span class=\\\"cart-price\\\"><span class=\\\"woocommerce-Price-amount amount\\\"><bdi><span class=\\\"woocommerce-Price-currencySymbol\\\">&euro;<\\/span>0.00<\\/bdi><\\/span><\\/span>\",\".header .cart-icon\":\"\\t\\t<span class=\\\"cart-icon image-icon\\\">\\n\\t\\t\\t<strong>0<\\/strong>\\n\\t\\t<\\/span>\\n\\t\\t\",\".cart-item i.icon-shopping-basket\":\"\\t\\t<i class=\\\"icon-shopping-basket\\\" data-icon-label=\\\"0\\\">\\n\\t\\t\",\"div.ux-free-shipping\":\"\"},\"cart_hash\":\"\"}','no'),(299723,'parcelpanel_tracking_page_new_options','a:4:{s:4:\"code\";i:200;s:3:\"msg\";s:2:\"ok\";s:4:\"time\";i:1704142823;s:4:\"data\";a:12:{s:14:\"display_option\";a:16:{s:6:\"_width\";s:6:\"1200px\";s:5:\"color\";s:7:\"#00bfff\";s:8:\"ui_style\";i:0;s:24:\"map_coordinates_position\";i:1;s:13:\"hide_keywords\";s:32:\"China,Aliexpress,Chinese cities,\";s:15:\"carrier_details\";b:0;s:15:\"tracking_number\";b:1;s:24:\"package_contents_details\";b:1;s:15:\"map_coordinates\";b:0;s:23:\"google_translate_widget\";b:0;s:12:\"b_od_nb_a_em\";b:1;s:7:\"b_tk_nb\";b:0;s:22:\"tracking_detailed_info\";b:1;s:5:\"width\";i:1200;s:10:\"width_unit\";s:2:\"px\";s:13:\"show_branding\";b:0;}s:26:\"tracking_page_translations\";a:31:{s:12:\"order_number\";s:12:\"Bestelnummer\";s:17:\"expected_delivery\";s:20:\"Verwachte leverdatum\";s:2:\"or\";s:2:\"Of\";s:5:\"email\";s:6:\"E-Mail\";s:5:\"track\";s:6:\"Volgen\";s:5:\"order\";s:10:\"Bestelling\";s:15:\"tracking_number\";s:13:\"Traceernummer\";s:7:\"product\";s:7:\"Product\";s:7:\"carrier\";s:10:\"Vervoerder\";s:6:\"status\";s:6:\"Status\";s:15:\"order_not_found\";s:29:\"Kon de bestelling niet vinden\";s:16:\"enter_your_order\";s:22:\"Voer uw ordernummer in\";s:16:\"enter_your_email\";s:23:\"Voer uw e-mail adres in\";s:26:\"enter_your_tracking_number\";s:21:\"Voer uw volgnummer in\";s:15:\"not_yet_shipped\";s:38:\"Deze artikelen zijn nog niet verzonden\";s:7:\"ordered\";s:7:\"Besteld\";s:11:\"order_ready\";s:16:\"Bestelling klaar\";s:15:\"waiting_updated\";s:93:\"De bezorgdienst heeft de tracking informatie nog niet geupdate, probeer het later nog eenkeer\";s:11:\"shipping_to\";s:11:\"Sturen naar\";s:16:\"current_location\";s:15:\"Huidige locatie\";s:8:\"may_like\";s:33:\"Misschien vind je dit ook leuk...\";s:7:\"pending\";s:17:\"In afwachting van\";s:10:\"in_transit\";s:8:\"Onderweg\";s:16:\"out_for_delivery\";s:8:\"Levering\";s:9:\"delivered\";s:8:\"Geleverd\";s:7:\"expired\";s:8:\"Verlopen\";s:14:\"failed_attempt\";s:17:\"Mislukte levering\";s:9:\"exception\";s:12:\"Uitzondering\";s:13:\"info_received\";s:18:\"Informatie krijgen\";s:6:\"pickup\";s:8:\"Levering\";s:7:\"transit\";s:8:\"Onderweg\";}s:19:\"custom_order_status\";a:0:{}s:20:\"custom_tracking_info\";a:2:{s:4:\"days\";s:0:\"\";s:4:\"info\";s:0:\"\";}s:23:\"estimated_delivery_time\";a:5:{s:7:\"enabled\";b:0;s:9:\"calc_from\";i:0;s:5:\"e_d_t\";a:2:{i:0;i:10;i:1;i:20;}s:11:\"bod_enabled\";b:0;s:9:\"bod_items\";a:0:{}}s:17:\"product_recommend\";a:4:{s:7:\"enabled\";b:0;s:8:\"position\";i:0;s:8:\"advanced\";b:0;s:14:\"product_cat_id\";i:0;}s:23:\"additional_text_setting\";a:2:{s:10:\"text_above\";s:0:\"\";s:10:\"text_below\";s:0:\"\";}s:20:\"date_and_time_format\";a:2:{s:11:\"date_format\";i:0;s:11:\"time_format\";i:0;}s:32:\"translate_tracking_detailed_info\";a:0:{}s:19:\"custom_css_and_html\";a:3:{s:3:\"css\";s:0:\"\";s:8:\"html_top\";s:0:\"\";s:11:\"html_bottom\";s:0:\"\";}s:14:\"theme_language\";a:1:{s:3:\"val\";s:2:\"nl\";}s:13:\"pluginsTagger\";a:1:{s:4:\"wpml\";b:0;}}}','yes'),(299981,'_transient_timeout_wc_report_orders_stats_724e4cb30e2b687841ac92cd5db1157c','1704839166','no'),(299982,'_transient_wc_report_orders_stats_724e4cb30e2b687841ac92cd5db1157c','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-02 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(299983,'_transient_timeout_wc_report_orders_stats_6ca295948c26e0a8a533fc60ee878ce5','1704839166','no'),(299984,'_transient_wc_report_orders_stats_6ca295948c26e0a8a533fc60ee878ce5','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-02 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(299985,'_transient_timeout_wc_report_products_stats_6498a7cb360e36f647b327559765c4b4','1704839167','no'),(299986,'_transient_wc_report_products_stats_6498a7cb360e36f647b327559765c4b4','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-02 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(299987,'_transient_timeout_wc_report_variations_stats_60c041d31de6a36a6712cb3199f5d2b0','1704839167','no'),(299988,'_transient_wc_report_variations_stats_60c041d31de6a36a6712cb3199f5d2b0','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-02 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(299989,'_transient_timeout_wc_report_orders_stats_1f534cabed9e8681d6a2b0baf44d613d','1704839167','no'),(299990,'_transient_wc_report_orders_stats_1f534cabed9e8681d6a2b0baf44d613d','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:7:{i:0;a:6:{s:8:\"interval\";s:10:\"2023-12-27\";s:10:\"date_start\";s:19:\"2023-12-27 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-26 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-27 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-27 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2023-12-28\";s:10:\"date_start\";s:19:\"2023-12-28 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-27 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-28 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-28 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2023-12-29\";s:10:\"date_start\";s:19:\"2023-12-29 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-28 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-29 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-29 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2023-12-30\";s:10:\"date_start\";s:19:\"2023-12-30 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-29 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-30 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-30 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2023-12-31\";s:10:\"date_start\";s:19:\"2023-12-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-30 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-31 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-31 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2024-01-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-01 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2024-01-02\";s:10:\"date_start\";s:19:\"2024-01-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-01 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-02 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:7;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(300023,'wp-all-export-pro_f3e07d8a5567b52eda97b45478a42948','O:8:\"stdClass\":18:{s:11:\"new_version\";s:5:\"1.8.6\";s:14:\"stable_version\";s:5:\"1.8.6\";s:4:\"name\";s:13:\"WP All Export\";s:4:\"slug\";s:17:\"wp-all-export-pro\";s:3:\"url\";s:68:\"https://www.wpallimport.com/downloads/wp-all-export-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-12-04 11:16:50\";s:8:\"homepage\";s:56:\"https://www.wpallimport.com/downloads/wp-all-export-pro/\";s:8:\"sections\";a:2:{s:11:\"description\";s:164:\"<p>Learn more about WP All Export at <a href=\"http://www.wpallimport.com/export\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/export</a></p>\";s:9:\"changelog\";s:35960:\"<h4>1.8.6</h4>Minimum WordPress version: 5.0\r\nMinimum PHP version: 7.4\r\n<ul>\r\n<li>security improvement</li>\r\n<li>API: add new filter \'wp_all_export_functions_file_path\' to change the Function Editor\'s file location</li>\r\n<li>API: add new filter \'wp_all_export_product_variation_where\' to override the WP_Query \'where\' for variations</li>\r\n<li>API: add new filter \'wp_all_export_meta_query_limit\' to control how many custom fields can be shown</li>\r\n<li>bug fix: resolve PHP notices for ajax requests</li>\r\n<li>bug fix: fatal error on pre-HPOS WooCommerce versions</li>\r\n<li>bug fix: fatal error in some cases when exporting to XML or GMC</li>\r\n<li>bug fix: fatal error when retrieving file if export doesn\'t exist</li>\r\n<li>bug fix: PHP 8.2 errors</li>\r\n<li>improvement: better handling of brackets in exported data when using custom export fields</li><h4>1.8.5</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: WooCommerce Export Add-On 1.0.8+ is required to export orders</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n<li>improvement: add support for filtering by parent slug</li>\r\n<li>improvement: enable adding BOM to files by default for new exports and improve description</li>\r\n<li>improvement: minimize code called during AJAX requests</li>\r\n<li>improvement: remove \'wp_navigation\' from dropdown on Step 1</li>\r\n<li>improvement: gracefully handle cron URL calls to nonexistent exports</li>\r\n<li>improvement: add \'cancel\' action for cron URLs</li>\r\n<li>improvement: only add code to \'admin_head\' when on WP All Export pages</li>\r\n<li>bug fix: resolve miscellaneous PHP notices</li>\r\n<li>bug fix: setting \'Display each product in its own row\' not saved in some cases</li>\r\n<li>bug fix: prevent saved WP All Export sessions from being corrupted by some database configurations</li>\r\n</ul><h4>1.8.4</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li> improvement: prevent caching of file URLs used with Zapier</li>\r\n<li> adjustment: uncheck \'Display each product in its own row ?\' by default when using \'Migrate\' option for WooCommerce Orders</li>\r\n<li> bug fix: corrected XML layout when using real time order exports</li>\r\n<li> bug fix: corrected exporting of comment IDs to XLS</li>\r\n<li> bug fix: ensure the correct Unique Identifier is set when using the \'Import with WP All Import\' option</li>\r\n</ul><h4>1.8.3</h4><ul>\r\n<li>bug fix: resolve \'enable_real_time_exports\' notice</li>\r\n<li>bug fix: fatal error when post types are defined using closures</li>\r\n</ul><h4>1.8.2</h4><ul>\r\n<li>improvement: individual record data is now available in Zapier when using real time exports (requires 2.0.1+ Zapier trigger version)</li>\r\n<li>improvement: allow exporting \'0\' value in ACF fields</li>\r\n<li>improvement: better \'s\' parameter support for WP_Query exports</li>\r\n<li>improvement: clean up PHP 8 related notices</li>\r\n<li>improvement: better support for symlinked /upload folders</li>\r\n<li>improvement: remove deprecated jQuery functions</li>\r\n<li>improvement: enhanced real time exporting support for RealHomes theme properties</li>\r\n<li>bug fix: don\'t change the \'Product\' label used in the ShopCommerce theme\'s breadcrumbs</li>\r\n<li>bug fix: resolve PHP notices related to Google Merchant Center exports</li>\r\n<li>bug fix: prevent custom XML editor from being shown when exporting to CSV in rare circumstances</li>\r\n<li>bug fix: correct Gravity Forms exported record counts</li>\r\n<li>bug fix: delete missing now works properly with imports created with the \'Import with WP All Import\' option</li>\r\n</ul><h4>1.8.1</h4><ul>\r\n<li>new feature: real time exports - <a href=\"https://www.wpallimport.com/documentation/how-to-run-real-time-exports/\" target=\"_blank\">https://www.wpallimport.com/documentation/how-to-run-real-time-exports/</a> </li>\r\n<li>improvement: set headers to prevent cron URLs and export bundle from being cached</li>\r\n<li>bug fix: enable use of \'s\', \'LIKE\' and \'NOT LIKE\' in WP_Query exports</li>\r\n</ul><h4>1.8.0 </h4><ul><li>bug fix: revert filtering improvements</li></ul>\r\n<h4>1.7.9</h4><ul>\r\n<li>security improvement</li>\r\n<li>bug fix: JavaScript error when the user has the \'Disable syntax highlighting when editing code\' option enabled</li>\r\n<li>bug fix: only one export field can use the \'Export the value returned by a PHP function\' option at a time</li>\r\n<li>improvement: restore compatibility for WordPress 5.0+</li>\r\n<li>improvement: better filtering performance</li>\r\n<li>improvement: better \'custom export field\' performance</li>\r\n</ul><h4>1.7.8</h4><ul><li>bug fix: cannot export products in a single language when using WPML</li></ul>\r\n</ul><h4>1.7.7</h4><ul>\r\n<li>new feature: add option to disable generation of empty export files if no records are matched for export when running via automation</li>\r\n<li>bug fix: allow exporting empty value with custom export field</li>\r\n<li>bug fix: encoded ampersand showing in \'Confirm & Run\' text</li>\r\n<li>bug fix: delimiters are sometimes removed when a field with multiple values is used in a custom export field</li>\r\n<li>bug fix: prevent caching of GMC export files</li>\r\n<li>bug fix: properly format multiple values provided via \'Custom data\' for Product Type in a GMC export</li>\r\n<li>improvement: resolve miscellaneous PHP notices</li>\r\n<li>improvement: only check Scheduling Service connectivity if a Scheduling license has been saved</li>\r\n<li>improvement: UI enhancements</li>\r\n<li>improvement: use CodeMirror library from WordPress Core</li>\r\n</ul><h4>1.7.6</h4><ul>\r\n<li>improvement: add support for Country, Region, and Service shipping sub-attributes for GMC exports</li>\r\n<li>bug fix: can\'t save code to Function Editor</li>\r\n<li>bug fix: error when product dimensions are empty in GMC exports</li>\r\n</ul><h4>1.7.5</h4><ul>\r\n<li>improvement: UI updates</li>\r\n</ul><h4>1.7.4</h4>- bug fix: jQuery nestedSortable compatibility with WordPress 5.9\r\n- improvement: PHP 8 compatibility<h4>1.7.3</h4><ul>\r\n<li>New Feature: compatibility with the Gravity Forms Export Add-On</li>\r\n<li>improvement: fallback to PclZip if ZipArchive isn\'t available</li>\r\n<li>improvement: add support for Cyrillic and Greek characters in element names</li>\r\n<li>bugfix: some output not correctly escaped</li>\r\n<li>bugfix: in some cases, export files are cached when downloaded via a direct link</li>\r\n<li>bugfix: error when exporting attributes</li>\r\n<li>bugfix: notice  when saving client mode settings</li>\r\n<li>bugfix: error on PHP 8 when exports are corrupt</li>\r\n<li>bugfix: error when exporting custom field in simple XML</li>\r\n</ul><h4>1.7.2</h4><ul>\r\n<li>improvement: add support for exporting non-WooCommerce \'product\' CPTs</li>\r\n<li>improvement: initial PHP 8 support</li>\r\n<li>bug fix: fatal error when running \'post\' WP_Query export</li>\r\n<li>bug fix: unexpected newline added to manual custom XML exports</li>\r\n<li>bug fix: CPT exports failing when WooCommerce Export Add-On not active</li>\r\n<li>bug fix: Google Merchant Center shipping dimension unit conversions were incorrect in some cases</li>\r\n<li>bug fix</li>\r\n</ul><h4>1.7.1</h4>\r\n<ul>\r\n 	<li>improvement: decrease the frequency of plugin update checks</li>\r\n 	<li>improvement: add HKG Dollar to Google Merchant Center exports</li>\r\n 	<li>bugfix: error when filtering by WPML language</li>\r\n 	<li>bugfix: WPML language filter not applied when running scheduled exports</li>\r\n 	<li>bugfix: closing tag missing when custom XML export files are empty</li>\r\n</ul>\r\n<h4>1.7.0</h4>\r\n<ul>\r\n 	<li>improvement: added RON to Google Merchant Center export currencies</li>\r\n 	<li>improvement: moved ACF and WooCommerce support to add-ons</li>\r\n</ul>\r\n<h4>1.6.7</h4>\r\n<ul>\r\n 	<li>bugfix: XML tag appended to empty CSV files</li>\r\n 	<li>bugfix: ACF user email field not exported correctly</li>\r\n 	<li>bugfix: PHP notice when adjusting prices in Google Merchant Center exports</li>\r\n</ul>\r\n<h4>1.6.6</h4>\r\n<ul>\r\n 	<li>maintenance: compatibility with Elementor v3.3 JavaScript changes</li>\r\n</ul>\r\n<h4>1.6.5</h4>\r\n<ul>\r\n 	<li>improvement: hide _oembed_ fields from custom fields</li>\r\n 	<li>improvement: update scheduling keys in the scheduling service when changed in settings</li>\r\n 	<li>bugfix: filtering by a custom field called featured working only for products</li>\r\n 	<li>bugfix: functions with empty string arguments not parsed correctly in Custom XML exports</li>\r\n 	<li>bugfix: ratings and star count not exported in WooCommerce Review exports</li>\r\n 	<li>bugfix: simple XML exports generate invalid XML when there are no records by missing the closing tag</li>\r\n 	<li>bugfix: values that contain square brackets not exported in Google Merchants Exports</li>\r\n 	<li>bugfix: custom functions not correctly parsed in Google Merchants Exports</li>\r\n 	<li>bugfix: ACF repeater fields are exported using commas as a delimiter, but the bundle defaults to pipes when importing</li>\r\n</ul>\r\n<h4>1.6.4</h4>\r\n<ul>\r\n 	<li>improvement - remove Friendly Name editing option from Client Mode</li>\r\n 	<li>bugfix - array_intersect_key error when PMXE_Options are corrupt</li>\r\n 	<li>bugfix - order item fields with HTML encoded names can\'t be exported</li>\r\n</ul>\r\n<h4>1.6.3</h4>\r\n<ul>\r\n 	<li>New Feature: Allow non-admins to run exports with Client Mode</li>\r\n 	<li>bug fix: incorrect number of processed entries when exporting items only once in multiple iterations</li>\r\n 	<li>bug fix: Google Merchant Center throws error on shipping length</li>\r\n 	<li>bug fix: state not saved for \'Fill in empty columns\' and \'Display each repeater row in its own csv line\' in ACF repeater fields</li>\r\n 	<li>bug fix: js error when removing filters</li>\r\n 	<li>bug fix: use wp_salt() when AUTH_SALT isn\'t defined</li>\r\n 	<li>bug fix: downloadable files aren\'t migrated properly in some cases</li>\r\n 	<li>bug fix: \'0\' is present in the \'Export the value returned by a PHP function\' setting for Attachment fields</li>\r\n 	<li>bug fix: import template in bundle file not set to choose \'WooCommerce Reviews\' when imported</li>\r\n 	<li>bug fix: featured and attached images options not working for image fields</li>\r\n</ul>\r\n<h4>1.6.2</h4>\r\n<ul>\r\n 	<li>bugfix: some checkbox options broken after WordPress v5.5 compatibility fix</li>\r\n</ul>\r\n<h4>1.6.1</h4>\r\n<ul>\r\n 	<li>maintenance: compatibility with WordPress v5.5 jQuery changes</li>\r\n</ul>\r\n<h4>1.6.0</h4>\r\n<ul>\r\n 	<li>improvement: Export WooCommerce Reviews</li>\r\n 	<li>improvement: Migrate Comments and WooCommerce Reviews</li>\r\n 	<li>improvement: Export Cost of Goods Sold to Google Merchant Center</li>\r\n 	<li>improvement: Add WP_Query support for Toolset Types exports</li>\r\n 	<li>bug fix: time not exported in fields with date and time</li>\r\n 	<li>bug fix: date filters with ‘equal or older than’ doesn\'t include dates equal to the filter value</li>\r\n 	<li>bug fix: no default value for \"Set to false if product has no GTIN or MPN\"</li>\r\n 	<li>bug fix: PHP 7.3 warnings when exporting Excel files</li>\r\n</ul>\r\n<h4>1.5.11</h4>\r\n<ul>\r\n 	<li>improvement: export custom ACF fields defined in Gutenberg blocks</li>\r\n 	<li>improvement: disable scheduled exports via Automatic Scheduling UI</li>\r\n 	<li>API: add new filter wp_all_export_no_cache to avoid server cache for export files</li>\r\n 	<li>bug fix: WPAE UI is translated to the filtered WPML language</li>\r\n 	<li>bug fix: custom functions unavailable when editing an exported field</li>\r\n 	<li>bug fix: unable to update filters on the Run Export page</li>\r\n 	<li>bug fix: date filters including first/last day of month do not work properly</li>\r\n 	<li>bug fix: notices related to Google Merchants exports</li>\r\n 	<li>bug fix: exports sent to Zapier in the incorrect order</li>\r\n 	<li>bug fix: WooCommerce customer exports do not correctly report the number of exported customers</li>\r\n 	<li>bug fix: unable to only export customers once via scheduled exports</li>\r\n 	<li>bug fix: fields containing commas incorrectly exported to Google Merchant Center</li>\r\n 	<li>bug fix: product names are incorrectly urlencoded in custom XML exports</li>\r\n 	<li>bug fix: taxonomy meta fields not available for export</li>\r\n 	<li>bug fix: 0 values are represented as an empty string in custom XML exports</li>\r\n 	<li>bug fix: order items doubled in custom export fields in custom XML exports</li>\r\n 	<li>bug fix: custom fields not parsed correctly in custom XML exports</li>\r\n 	<li>bug fix: Manual Scheduling disabled when Automatic Scheduling is selected</li>\r\n 	<li>bug fix: unable to filtering by hours or minutes in some cases</li>\r\n 	<li>bug fix: unable to export ACF group fields</li>\r\n 	<li>bug fix: trying to delete History File fails ungracefully if it doesn\'t exist</li>\r\n 	<li>bug fix: Fee Amount exporting as an empty field in custom XML exports</li>\r\n</ul>\r\n<h4>1.5.10</h4>\r\n<ul>\r\n 	<li>improvement: add SAR currency to Google Merchant Center</li>\r\n 	<li>improvement: add default Unit Pricing Measure to Google Merchant Center</li>\r\n 	<li>improvement: only update max_execution_time on plugin requests, don\'t modify it globally</li>\r\n 	<li>bugfix: unable to export WooCommerce customers to XML</li>\r\n 	<li>bugfix: error with empty strings at the beginning or end of function calls</li>\r\n 	<li>bugfix: ACF date field not parsed correctly with some custom date formats</li>\r\n 	<li>bugfix: unable to export image galleries inside ACF flexible content fields to XML</li>\r\n 	<li>bugfix: time-based export filters should use GMT not server time</li>\r\n</ul>\r\n<h4>1.5.9</h4>\r\n<ul>\r\n 	<li>bug fix: unable to export users</li>\r\n</ul>\r\n<h4>1.5.8</h4>\r\n<ul>\r\n 	<li>improvement: add UAH currency to Google Merchant Center exports</li>\r\n 	<li>API: add \'pmxe_is_bundle\' filter</li>\r\n 	<li>bug fix: unable to filter by user data</li>\r\n 	<li>bug fix: wp_query missing error in some cases</li>\r\n 	<li>bug fix: ACF link export incorrectly formatted</li>\r\n 	<li>bug fix: \"Tax Amount\" rounded to nearest integer</li>\r\n 	<li>bug fix: currency included in price field when price is empty for Google Merchant Center exports</li>\r\n</ul>\r\n<h4>1.5.7</h4>\r\n<ul>\r\n 	<li>improvement: add Thai Baht to Google Merchant Center currencies</li>\r\n 	<li>improvement: add custom line endings for CSV</li>\r\n 	<li>API: add new action pmxe_acf_date_picker_format to set custom ACF date formats</li>\r\n 	<li>bugfix: unable to use wp-cron for scheduled exports on sites running PHP-FPM and WordPress 5.1+</li>\r\n 	<li>switched to wp-load for cron URLs, with backwards compatibility for wp-cron</li>\r\n 	<li>bugfix: ACF repeaters export incorrect values in ACF version 5.7.10+</li>\r\n 	<li>bugfix: Google Merchant Center incorrectly converts units from inches to mm</li>\r\n 	<li>bugfix: ACF date format not parsed correctly</li>\r\n 	<li>bugfix: tax amount incorrectly calculated in PHP 7.1+</li>\r\n 	<li>bugfix: is_empty field only looks for NULL fields, not empty values</li>\r\n 	<li>bugfix: exporting ACF user fields results in error</li>\r\n</ul>\r\n<h4>1.5.6</h4>\r\n<ul>\r\n 	<li>add-on: move all user export functionality to new user export add-on</li>\r\n 	<li>improvement: preserve admin body classes that are added by other plugins</li>\r\n 	<li>improvement: change scheduling endpoints from wp-cron.php to wp-load.php for WordPress 5.1/PHP-FPM compatibility</li>\r\n 	<li>bugfix: change language code alias for WPML compatibility</li>\r\n 	<li>bugfix: meta keys that are not returned as an array are exported as empty</li>\r\n 	<li>bugfix: allow uppercase ID in custom XML template</li>\r\n 	<li>bugfix: use ACF date format for date pickers</li>\r\n 	<li>bugfix: custom export field notices not working for WooCommerce orders</li>\r\n 	<li>bugfix: missing items in combine multiple fields are not replaced</li>\r\n 	<li>bugfix: term ID missing when using custom fields and exporting taxonomies</li>\r\n 	<li>bugfix: some WooCommerce attributes cause errors when writing to CSV</li>\r\n 	<li>bugfix: scheduling API responses improperly translated</li>\r\n 	<li>bugfix: changes to field not rendered in preview from edit field modal</li>\r\n</ul>\r\n<h4>1.5.5</h4>\r\n<ul>\r\n 	<li>bug fix: compatibility with ACF v5.7.11</li>\r\n</ul>\r\n<h4>1.5.4</h4>\r\n<ul>\r\n 	<li>improvement: add RTL support for Excel</li>\r\n 	<li>improvement: add Indonesian Rupiah to Google Merchant Center</li>\r\n 	<li>improvement: add Google Merchant Center field name as global variable to be used in custom functions</li>\r\n 	<li>bugfix: improve support for quotes in custom xml</li>\r\n 	<li>bugfix: increase number of rendered categories for Google Merchant Center</li>\r\n 	<li>bugfix: Google Merchant Center dimensions</li>\r\n 	<li>bugfix: include variations when filtering by categories</li>\r\n 	<li>bugfix: combine error messages when exporting refunds</li>\r\n 	<li>bugfix: refund ID snippet not being replaced when field is missing</li>\r\n 	<li>bugfix: fix filtering error when exporting comments</li>\r\n 	<li>bugfix: support exports scheduled at 12am and 12pm</li>\r\n 	<li>bugfix: fix filtering products with titles that contain slashes</li>\r\n 	<li>bugfix: merge headers for empty columns at end of file</li>\r\n 	<li>bugfix: fix filtering UI for long titles</li>\r\n 	<li>bugfix: allow exporting ACF checkbox fields</li>\r\n 	<li>bugfix: pmxe_woo_field parameters incorrect</li>\r\n 	<li>bugfix: downloadable files in custom XML not exporting</li>\r\n 	<li>bugfix: close incorrect tags when exporting ACF</li>\r\n 	<li>bugfix: export serialized values in combined fields</li>\r\n 	<li>bugfix: custom functions in Google Merchant Center price elements not triggering</li>\r\n 	<li>bugfix: get_site_url in multisite when using Google Merchant Center</li>\r\n 	<li>bugfix: allow users to be filtered by name</li>\r\n 	<li>bugfix: fix custom export fields in simple XML exports</li>\r\n 	<li>bugfix: fix tax rate code exports in custom export fields</li>\r\n</ul>\r\n<h4>1.5.3</h4>\r\n<ul>\r\n 	<li>improvement: improve function parsing in custom export fields</li>\r\n 	<li>improvement: Google Merchant Center titles are limited to 150 characters</li>\r\n 	<li>improvement: increase custom query meta limit</li>\r\n 	<li>new filter: added pmxe_after_iteration action</li>\r\n 	<li>bugfix: remove deprecated function calls for PHP 7.2 compatibility</li>\r\n 	<li>bugfix: address various PHP warnings and notices</li>\r\n 	<li>bugfix: filters for WooCommerce product variations</li>\r\n 	<li>bugfix: graceful failure for non:writable uploads folder</li>\r\n 	<li>bugfix: add warning when exporting WooCommerce orders using Automatic Scheduling</li>\r\n 	<li>bugfix: WooCommerce product variations exported as separate products when adding product attributes to custom export fields</li>\r\n 	<li>bugfix: function editor not rendered until clicked</li>\r\n 	<li>bugfix: small UI and spacing issues</li>\r\n 	<li>bugfix: WooCommerce products don\'t on their own row in order exports when using custom export fields</li>\r\n 	<li>bugfix: prices with more than two decimal places are not exported correctly</li>\r\n 	<li>bugfix: \'Only export orders that have been modified since last export\' doesn\'t work when filtering orders</li>\r\n 	<li>bugfix: exporting empty ACF values shifts rows in CSV exports</li>\r\n 	<li>bugfix: Australia missing from scheduling timezones</li>\r\n 	<li>bugfix: exporting meta in WooCommerce orders</li>\r\n 	<li>bugfix: unable to filter or export WooCommerce product visibility data</li>\r\n 	<li>bugfix: cannot export product type for variable products to Google Merchant Center</li>\r\n 	<li>bugfix: Google Merchant Center exports cannot automatically map sub-categories</li>\r\n</ul>\r\n<h4>1.5.2</h4>\r\n<ul>\r\n 	<li>improvement: Support migrating users &amp; keeping passwords</li>\r\n 	<li>improvement: Add Featured Image to Available Data › Media</li>\r\n 	<li>new filter: wp_all_export_raw_prices - disables price formatting</li>\r\n 	<li>bugfix: Error thrown when uploads folder is not writable</li>\r\n 	<li>bugfix: Preview is broken for date fields</li>\r\n 	<li>bugfix: Product visibility broken for old WooCommerce versions</li>\r\n 	<li>bugfix: Custom Export Field values not saved in some cases</li>\r\n 	<li>bugfix: Headers not matching content when they contain special characters</li>\r\n 	<li>bugfix: Headers not matching content when exporting certain ACF fields</li>\r\n 	<li>bugfix: Loading order for styles optimized to reduce conflicts</li>\r\n 	<li>bugfix: Import templates broken for WooCommerce product attributes</li>\r\n 	<li>bugfix: \'Export Images from Post Content\' option doesn\'t displaying in some cases</li>\r\n 	<li>bugfix: JSON parameters can now be passed through functions in Google Merchant Center exports</li>\r\n 	<li>bugfix: WP Query exports broken for users and comments</li>\r\n 	<li>bugfix: Meta missing when migrating unattached images</li>\r\n 	<li>bugfix: Available Data broken when there\'s more than 500 data elements</li>\r\n 	<li>bugfix: Custom Export Fields are unstable when many are added to the same export</li>\r\n</ul>\r\n<h4>1.5.1</h4>\r\n<ul>\r\n 	<li>bug fix: custom fields are exported as their name</li>\r\n</ul>\r\n<h4>1.5.0</h4>\r\n<ul>\r\n 	<li>new feature: Automatic Scheduling</li>\r\n 	<li>new feature: Custom export fields</li>\r\n 	<li>improvement: licenses hidden in the ui and encoded in the database</li>\r\n 	<li>improvement: improved error reporting for custom functions errors</li>\r\n 	<li>improvement: changed excerpt to short description</li>\r\n 	<li>improvement: better price formatting</li>\r\n 	<li>improvement: better function parsing in Google Merchant Center exports</li>\r\n 	<li>improvement: exclude parent products from Google Merchant Center exports</li>\r\n 	<li>improvement: added CHF to list of supported Google Merchant Center currencies</li>\r\n 	<li>improvement: added support for acf clone field</li>\r\n 	<li>improvement: added security token to cron URLs for improved security</li>\r\n 	<li>improvement: added author information to Available Data</li>\r\n 	<li>improvement: added wp_all_export_order_item filter</li>\r\n 	<li>improvement: added wp_all_export_use_csv_compliant_line_endings filter</li>\r\n 	<li>improvement: added wp_all_export_pre_csv_headers filter</li>\r\n 	<li>improvement: added wp_all_export_repeater_delimiter filter</li>\r\n 	<li>bugfix: PHP notices and warnings</li>\r\n 	<li>bugfix: error when activating Pro version and Free version</li>\r\n 	<li>bugfix: splitting custom XML export files</li>\r\n 	<li>bugfix: removed moment.js which was causing false virus positives in some browsers</li>\r\n 	<li>bugfix: Google Merchant Center category mapping</li>\r\n 	<li>bugfix: do not update comment status by default</li>\r\n 	<li>bugfix: \"only export modified posts\" when using cron</li>\r\n 	<li>bugfix: file name filters when using crons</li>\r\n 	<li>bugfix: shortcodes in custom XML snippets</li>\r\n 	<li>bugfix: ACF flexible fields</li>\r\n 	<li>bugfix: problems when running Google Merchant Center exports via cron</li>\r\n 	<li>bugfix: CSV writer fixes to take into account https://bugs.php.net/bug.php?id=43225</li>\r\n 	<li>bugfix: exporting ACF and custom fields with HTML tags</li>\r\n 	<li>bugfix: stray root tags in WooCommerce Order exports</li>\r\n 	<li>bugfix: timeouts when connecting Jetpack to WordPress.com</li>\r\n 	<li>bugfix: exporting product images in Google Merchant Center</li>\r\n 	<li>bugfix: corrupted Excel files</li>\r\n 	<li>bugfix: conflicts with some plugins changing the post order</li>\r\n 	<li>bugfix: comment handling in custom XML</li>\r\n 	<li>bugfix: blank CodeMirror in dialogs</li>\r\n 	<li>bugfix: parsing CDATA tags that contain HTML tags</li>\r\n 	<li>bugfix: Google Merchant Center handling quotes in functions</li>\r\n 	<li>bugfix: improved Google Merchant Center snippet parser</li>\r\n 	<li>bugfix: CSV headers when field names contained quotes</li>\r\n 	<li>bugfix: included WPML query in variation query</li>\r\n 	<li>bugfix: handling of the \"visibility\" field based on WooCommerce version</li>\r\n</ul>\r\n<h4>1.4.7</h4>\r\n<ul>\r\n 	<li>improvement: Improved accuracy for export timer</li>\r\n 	<li>improvement: Removed moment.js dependency which causes false positives in some antivirus software</li>\r\n 	<li>imporovement New export complete page</li>\r\n 	<li>bugfix: Fixed problems when switching from WPAE free to WPAE pro</li>\r\n 	<li>bugfix: Special characters in product attributes support</li>\r\n 	<li>bugfix: Fix category mapper containing special characters</li>\r\n 	<li>bugfix: Fixed parsing content with shortcodes in custom XML Export</li>\r\n 	<li>bugfix: Fixed exporting ACF fields with no value for some posts</li>\r\n</ul>\r\n<h4>1.4.6</h4>\r\n<ul>\r\n 	<li>improvement: removed autoload=true from wp_options</li>\r\n 	<li>improvement: use \'Export product variations and their parent products\' by default</li>\r\n 	<li>improvement: WPML options in separate section</li>\r\n 	<li>improvement: category mapper optimization</li>\r\n 	<li>improvement: memory usage to avoid memory limit errors</li>\r\n 	<li>bug fix: allow underscores in main xml tags</li>\r\n 	<li>bug fix: prevent uploading import template into wpae</li>\r\n 	<li>bug fix: ID column in CSV</li>\r\n 	<li>bug fix: date equals or older filter</li>\r\n 	<li>bug fix: ACF repeater headers</li>\r\n 	<li>bug fix: size type mapper and no categories message</li>\r\n 	<li>bug fix: export ID in custom XML mode</li>\r\n 	<li>bug fix: date filtering</li>\r\n 	<li>bug fix: export product variation status</li>\r\n 	<li>bug fix: the \"Shipping Class\" field in Google Merchants export.</li>\r\n</ul>\r\n<h4>1.4.5</h4>\r\n<ul>\r\n 	<li>improvement: added new option \'Only export Pages that have been modified since last export\'</li>\r\n 	<li>improvement: added post_modified field</li>\r\n 	<li>improvement: handling functions in google meerchants fields</li>\r\n 	<li>bug fix: snippets parsing in Custom XML Export</li>\r\n 	<li>bug fix: template saving. Fixed product image export to Google Merchants</li>\r\n 	<li>bug fix: export attributes for simple products</li>\r\n 	<li>bug fix: db schema updating</li>\r\n 	<li>bug fix: variations with trashed parents shouldn\'t be included in the export</li>\r\n 	<li>bug fix: google Merchants inconsistent category search</li>\r\n 	<li>bug fix: minified JS to avoid problems for CloudFlare users</li>\r\n</ul>\r\n<h4>1.4.4</h4>\r\n<ul>\r\n 	<li>improvement: export to Google Merchant Center</li>\r\n 	<li>improvement: choose WPML language in export options</li>\r\n 	<li>improvement: filter WooCommerce Orders by order item data</li>\r\n 	<li>improvement: export CSV without header row</li>\r\n 	<li>bug fix: export ACF message field</li>\r\n 	<li>bug fix: export product categories with AFC repeater fields</li>\r\n 	<li>bug fix: export duplicate images from gallery</li>\r\n 	<li>bug fix: filter products by custom fields</li>\r\n 	<li>bug fix: export search</li>\r\n 	<li>bug fix: export product variation attribute names</li>\r\n 	<li>bug fix: processing serialized data in custom snippets</li>\r\n 	<li>bug fix: export more than one coupon_used field</li>\r\n 	<li>bug fix: migrating hierarchical posts and pages</li>\r\n</ul>\r\n<h4>1.4.3</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with PHP 7.x</li>\r\n 	<li>improvement: new export field \'Order Item ID\'</li>\r\n 	<li>improvement: possibility for filter order by order items data</li>\r\n 	<li>improvement: new option \'Include header row and column titles in export\'</li>\r\n 	<li>bug fix: processing serialized data in custom snippets</li>\r\n 	<li>bug fix: export ACF repeater field in custom XML mode</li>\r\n 	<li>bug fix: applying php function to product attributes</li>\r\n 	<li>bug fix: export coupon_used field</li>\r\n</ul>\r\n<h4>1.4.2</h4>\r\n<ul>\r\n 	<li>new feature: added export taxonomies feature</li>\r\n 	<li>improvement: new export variable products options</li>\r\n 	<li>improvement: added possibility to export to xlsx</li>\r\n 	<li>improvement: added ACF fields to \'migrate\' &amp; \'add all fields\' features</li>\r\n 	<li>improvement: added new filter \'wp_all_export_field_name\'</li>\r\n 	<li>improvement: changed default date export to Y/m/d</li>\r\n 	<li>bug fix: export shipping class for product variations</li>\r\n 	<li>bug fix: import template for ACF relationship fields</li>\r\n 	<li>bug fix: export ACF fields in custom XML mode</li>\r\n 	<li>bug fix: export empty images metadata</li>\r\n 	<li>bug fix: import template for ACF gallery</li>\r\n 	<li>bug fix: import template for variation_description</li>\r\n 	<li>bug fix: import template for default product attributes</li>\r\n 	<li>bug fix: fields ordering for custom XML export</li>\r\n 	<li>bug fix: menu order migration</li>\r\n 	<li>bug fix: automatically adding parent_id column on products export</li>\r\n 	<li>bug fix: SQL query ( caused timeout error )</li>\r\n 	<li>bug fix: parsing snippets in attributes in elements</li>\r\n</ul>\r\n<h4>1.4.1</h4>\r\n<ul>\r\n 	<li>bug fix: compatibility with PHP 5.3</li>\r\n</ul>\r\n<h4>1.4.0</h4>\r\n<ul>\r\n 	<li>new feature: export custom xml template</li>\r\n 	<li>improvement: new filter wp_all_export_after_csv_line</li>\r\n 	<li>improvement: date options for sale price dates from/to</li>\r\n 	<li>improvement: ability to use tab as csv delimiter</li>\r\n 	<li>improvement: new filter \'wp_all_export_csv_headers\'</li>\r\n 	<li>improvement: pull the parent taxonomy data when exporting variations</li>\r\n 	<li>improvement: remove spaces from export filename</li>\r\n 	<li>bug fix: \'posts_clauses\' filter issue</li>\r\n 	<li>bug fix: db schema on multisite</li>\r\n 	<li>bug fix: export order items date</li>\r\n 	<li>bug fix: import template for media items</li>\r\n 	<li>bug fix: \'Only export Products once\' for new exports</li>\r\n 	<li>bug fix: export ACF repeater in XML format</li>\r\n 	<li>bug fix: order_completed_date filter</li>\r\n 	<li>bug fix: export in CSV format when \'Main XML Tag\' &amp; \'Record XML Tag\' option are blank</li>\r\n 	<li>bug fix: export order items taxonomies</li>\r\n 	<li>bug fix: export ACF date_time_picker</li>\r\n 	<li>bug fix: date filter by time</li>\r\n 	<li>bug fix: is empty filters</li>\r\n 	<li>bug fix: nested filter rules</li>\r\n</ul>\r\n<h4>1.3.2</h4>\r\n<ul>\r\n 	<li>fixed \'Only export Posts once\' for new exports</li>\r\n 	<li>fixed db schema for multisite</li>\r\n 	<li>fixed export order items date</li>\r\n 	<li>fixed media items export ordering</li>\r\n 	<li>fixed import template for media items</li>\r\n 	<li>fixed export ACF repeater in XML format</li>\r\n 	<li>fixed order_completed_date filter</li>\r\n 	<li>added new filter \'wp_all_export_csv_headers\'</li>\r\n 	<li>added possibility to use tab as csv delimiter \"t\"</li>\r\n 	<li>updated french translation</li>\r\n</ul>\r\n<h4>1.3.1</h4>\r\n<ul>\r\n 	<li>added WooCommerce order migration</li>\r\n 	<li>added _thumbnail_id to the filtering dropdown</li>\r\n 	<li>added new filter \'wp_all_export_is_wrap_value_into_cdata\'</li>\r\n 	<li>added new filters \'wp_all_export_add_before_element\', \'wp_all_export_add_after_element\'</li>\r\n 	<li>added \'WPML Translation ID\' element to available data</li>\r\n 	<li>modified preview to show first 10 records</li>\r\n 	<li>fixed csv export with non comma delimiter</li>\r\n 	<li>fixed conflict with WP Google Maps Pro plugin</li>\r\n 	<li>fixed downloading XLS export file when security mode is disabled</li>\r\n</ul>\r\n<h4>1.3.0</h4>\r\n<ul>\r\n 	<li>fixed misaligned columns on exporting product attributes</li>\r\n 	<li>fixed export nested repeaters field in CSV format</li>\r\n 	<li>fixed conflict between enabled ‘Only export Products once’ &amp; filtering rules</li>\r\n 	<li>fixed live records counting for advanced export mode</li>\r\n 	<li>fixed Events Calendar conflict</li>\r\n 	<li>added Google Merchants support</li>\r\n 	<li>added new filters \'wp_all_export_add_before_node\', \'wp_all_export_add_after_node\'</li>\r\n 	<li>added possibility to filter posts by author data</li>\r\n 	<li>added XLS support, redesign CSV/XML options in Step 2</li>\r\n 	<li>added feature to use php function in filtering rules</li>\r\n 	<li>added possibility export repeater rows one per line</li>\r\n 	<li>added backward compatibility for export comments on WordPress less than 4.2.0</li>\r\n 	<li>exclude orphaned variations from exprt file</li>\r\n 	<li>changed UI for export media data ( images &amp; attachments )</li>\r\n</ul>\r\n<h4>1.2.3</h4>\r\n<ul>\r\n 	<li>fixed export attachment meta alt</li>\r\n 	<li>fixed export manually stored ACF</li>\r\n 	<li>fixed export repeater field for users in csv format</li>\r\n 	<li>fixed saving special chars in function editor</li>\r\n 	<li>fixed import export templates</li>\r\n 	<li>fixed error on activate WPAE license</li>\r\n 	<li>fixed ajaxurl conflict with WPML</li>\r\n 	<li>fixed filtering by ACF taxonomy field</li>\r\n 	<li>create a stable copy of exported file for remote access during export process</li>\r\n 	<li>added French &amp; Latvian translations</li>\r\n 	<li>added \'Variation Description\' field</li>\r\n</ul>\r\n<h4>1.2.2</h4>\r\n<ul>\r\n 	<li>fixed \'wp_all_export_additional_data\' filter on cron job</li>\r\n 	<li>fixed Zapier intergation</li>\r\n 	<li>fixed import template for variable products</li>\r\n 	<li>fixed css for WordPress 4.4</li>\r\n 	<li>fixed export ACF repeater field</li>\r\n</ul>\r\n<h4>1.2.1</h4>\r\n<ul>\r\n 	<li>added export comments</li>\r\n 	<li>added possibility to add NS to field names</li>\r\n 	<li>fixed export repeater field ACF 4.x</li>\r\n 	<li>fixed cron export, was exported wrong data amount when there are sticky posts in database</li>\r\n 	<li>fixed updating filter rules on cron job</li>\r\n 	<li>fixed error on edit custom column name for Woo Orders</li>\r\n</ul>\r\n<h4>1.2.0</h4>\r\n<ul>\r\n 	<li>fixed manage exports screen: \"Info and options\" disappears when WPAI plugin is disabled</li>\r\n 	<li>fixed WP_Query results ordering</li>\r\n 	<li>fixed export ACF repeater field for CSV</li>\r\n 	<li>fixed export filtering</li>\r\n 	<li>added es_ES translation</li>\r\n 	<li>added possibility to change export field name ( related to export WooCommerce Orders )</li>\r\n 	<li>added option \'Split large exports into multiple files\'</li>\r\n 	<li>added option \'Only export posts once\'</li>\r\n 	<li>added option \'Create a new export file each time export is run\'</li>\r\n 	<li>added option \'Fill in empty columns\': If enabled, each order item will appear as its own row with all order info filled in for every column. If disabled, order info will only display on one row with only the order item info displaying in additional rows</li>\r\n 	<li>added ‘pmxe_exported_post’ action: do_action(\'pmxe_exported_post\', $record-&gt;ID );</li>\r\n 	<li>added Zapier support ( beta )</li>\r\n 	<li>added possibility to control main xml tag names &amp; put additional info into xml file: apply_filters(\'wp_all_export_additional_data\', array(), $exportOptions)</li>\r\n 	<li>added export templates</li>\r\n 	<li>added hidden post types to the dropdown list on step 1</li>\r\n 	<li>replaced \'export key\' to \'export hash\' in \'Export File URL\' on scheduling page</li>\r\n 	<li>updated re-run export screen</li>\r\n</ul>\r\n<h4>1.1.1</h4>\r\n<ul>\r\n 	<li>fixed download bundle</li>\r\n 	<li>fixed export repeater fields for ACF 4.x</li>\r\n 	<li>fixed import template for custom product attributes</li>\r\n 	<li>fixed cron job responses, now theay are in JSON format</li>\r\n 	<li>added bundle URL to scheduling page</li>\r\n 	<li>added new option \'include BOM to export file</li>\r\n 	<li>added RU translation</li>\r\n 	<li>added function editor</li>\r\n 	<li>removed hidden post types from dropdown in step 1</li>\r\n</ul>\r\n<h4>1.1.0</h4>\r\n<ul>\r\n 	<li>fixed export taxonomy: name instead of slug</li>\r\n 	<li>fixed export filtering (query with multiple meta keys)</li>\r\n 	<li>fixed display products in own row option</li>\r\n 	<li>fixed pass data through php function</li>\r\n 	<li>added advanced (custom fields) section to export woo orders</li>\r\n 	<li>added draggable element deletion</li>\r\n 	<li>added auto-generate product export fields</li>\r\n 	<li>added \'attributes\' field to product data</li>\r\n 	<li>added feedback page</li>\r\n 	<li>added another \'Auto Generate\' button for products export</li>\r\n 	<li>added button to download bundle for WP All Import</li>\r\n 	<li>updated export file name</li>\r\n 	<li>changed export files destination to /exports</li>\r\n</ul>\r\n<h4>1.0.2</h4>\r\n<ul>\r\n 	<li>Added export users</li>\r\n 	<li>Added scheduled exports</li>\r\n 	<li>Added orders export</li>\r\n 	<li>Added filtering options</li>\r\n</ul>\r\n<h4>1.0.1</h4>\r\n<ul>\r\n 	<li>updated icons</li>\r\n 	<li>fixed taxonomies export</li>\r\n</ul>\r\n<h4>1.0.0</h4>\r\n<ul>\r\n 	<li>Initial release</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:56:\"https://ps.w.org/wp-all-export/assets/banner-772x250.png\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:33:\"No license key has been provided.\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"contributors\";a:2:{s:6:\"soflyy\";a:3:{s:12:\"display_name\";s:6:\"soflyy\";s:7:\"profile\";s:37:\"https://profiles.wordpress.org/soflyy\";s:6:\"avatar\";s:51:\"https://wordpress.org/grav-redirect.php?user=soflyy\";}s:11:\"wpallimport\";a:3:{s:12:\"display_name\";s:11:\"wpallimport\";s:7:\"profile\";s:42:\"https://profiles.wordpress.org/wpallimport\";s:6:\"avatar\";s:56:\"https://wordpress.org/grav-redirect.php?user=wpallimport\";}}}','no'),(300024,'wp-all-export-pro_timeout_f3e07d8a5567b52eda97b45478a42948','1704238321','yes'),(300027,'wp-all-import-pro_85b8495febade7a221f67b0bca7d59d9','O:8:\"stdClass\":18:{s:11:\"new_version\";s:5:\"4.8.5\";s:14:\"stable_version\";s:5:\"4.8.5\";s:4:\"name\";s:13:\"WP All Import\";s:4:\"slug\";s:17:\"wp-all-import-pro\";s:3:\"url\";s:68:\"https://www.wpallimport.com/downloads/wp-all-import-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-12-12 02:27:11\";s:8:\"homepage\";s:56:\"https://www.wpallimport.com/downloads/wp-all-import-pro/\";s:8:\"sections\";a:2:{s:11:\"description\";s:216:\"<p>Learn more about WP All Import at <a href=\"https://www.wpallimport.com/import-wordpress-csv-xml-excel/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.wpallimport.com/import-wordpress-csv-xml-excel/</a></p>\";s:9:\"changelog\";s:45284:\"<h4>4.8.5</h4><ul>\r\n<li>improvement: ensure temporary files never use a .php extension</li>\r\n<li>bug fix: restore old CSV encoding conversion behavior</li>\r\n<li>bug fix: orders cannot be matched by order meta</li>\r\n<li>bug fix: SFTP imports fail to run via cron in some cases</li>\r\n</ul><h4>4.8.4</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>bug fix: do not automatically deactivate old versions of the WooCommerce Import Add-On</li>\r\n</ul><h4>4.8.3</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>bug fix: PHP 8.2 fatal error when importing some Excel files</li>\r\n<li>bug fix: PHP 8.2 fatal error when file cannot be written in some cases</li>\r\n</ul><h4>4.8.2</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: WooCommerce Import Add-On 4.0.0+ is required to import orders</li>\r\n<li>new setting: add \'Do not create new terms\' setting on Edit Template page</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n<li>improvement: include example cron commands on Scheduling Options modal</li>\r\n<li>improvement: better import file preview loading</li>\r\n<li>improvement: enable updating taxonomy description image URLs when using \'Scan through post content...\' option</li>\r\n<li>improvement: enable matching review products by title</li>\r\n<li>improvement: replace tmpfile() call with wp_tempnam() to avoid host restrictions</li>\r\n<li>bug fix: preview modal isn\'t scrollable in some cases</li>\r\n<li>bug fix: resolve \'change missing\' loop in some cases when products have backorders enabled</li>\r\n<li>bug fix: resolve fatal error when taxonomies are set to update but the WooCommerce Add-On isn\'t active</li>\r\n<li>bug fix: navigating import file preview shows incorrectly numbered records</li>\r\n</ul><h4>4.8.1</h4><ul>\r\n<li> minimum required WP version: 5.0</li>\r\n<li> minimum required PHP version: 7.2.5</li>\r\n<li> improvement: remove wp_navigation from Step 1 dropdown</li>\r\n<li> improvement: fix PHP 8 deprecated notice</li>\r\n<li> improvement: add new filter \'wp_all_import_hash_ignore_options\' </li>\r\n<li> bug fix: match existing terms by ID</li>\r\n<li> bug fix: ensure records added with an \'Existing Items\' import are recognized by the options to modify missing records</li>\r\n<li> bug fix: ensure \"History file not found\' message doesn\'t remain when file is valid</li>\r\n<li> bug fix: avoid fatal error while editing import when import file has been deleted outside of WP All Import</li>\r\n<li> bug fix: ensure correct import IDs are processed when running multiple imports sequentially via WP-CLI</li>\r\n<li> bug fix: don\'t invalidate unchanged record hash when import \'security\' option value changes</li>\r\n<li> bug fix: allow using an \'Existing Items\' import that only removes products that aren\'t in the import file</li>\r\n</ul><h4>4.8.0</h4><ul>\r\n    <li>bug fix: file preview shows incorrect record order in some cases</li>\r\n    <li>bug fix: PHP8 fatal error when updating Scheduling configuration in limited cases</li>\r\n</ul><h4>4.7.9</h4><ul>\r\n    <li>new feature: edit import filters on import \'Edit Template\' screen</li>\r\n    <li>bug fix: allow saving custom fields \'0\' values</li>\r\n    <li>bug fix: do not duplicate images when they contain dimensions in the name</li>\r\n    <li>bug fix: infinite loop when performing \'missing post\' actions in some cases</li>\r\n    <li>bug fix: undefined variable $import notice</li>\r\n    <li>bug fix: resolve notice when $attch variable not defined</li>\r\n    <li>improvement: use wp_trash_post when sending posts to trash</li>\r\n    <li>improvement: resolve PHP 8.x deprecated items</li>\r\n    <li>improvement: allow more strings to be translated with _e</li>\r\n    <li>improvement: use wp_add_inline_script instead of localize where appropriate</li>\r\n    <li>improvement: add setting to disable the \'I HAVE BACKUPS\' prompt</li>\r\n    <li>improvement: better handling when expected files are not found or have the wrong permissions</li>\r\n    <li>improvement: ensure the run import screen correctly shows what fields are set to update</li>\r\n    <li>improvement: add nonce to clean up logs action</li>\r\n    <li>improvement: allow specifying templates for post types other than pages</li>\r\n    <li>improvement: replace deprecated get_page_by_title function</li>\r\n    <li>improvement: ensure correct version of PCLZIP is used with WP All Import</li>\r\n    <li>improvement: ensure history file path returns correctly regardless of import file source</li>\r\n    <li>improvement: ensure wp_read_video_metadata function exists before calling</li>\r\n    <li>improvement: ensure import file preview sections can be expanded on Edit Template screen</li>\r\n    <li>improvement: allow changing stock status for missing existing products</li>\r\n    <li>improvement: call pmxi_before_delete_post hook as needed when running via WP-CLI</li>\r\n    <li>improvement: don\'t show \'hidden\' imports when listing via WP-CLI</li>\r\n    <li>improvement: don\'t assign parent when parent field is empty</li>\r\n    <li>improvement: allow importing emojis from JSON files</li>\r\n    <li>improvement: improve wp_all_import_get_import_id to work when running multiple imports via WP-CLI</li>\r\n    <li>improvement: better record matching for delete missing option</li>\r\n    <li>improvement: better existing image matching when importing images from Content</li>\r\n\r\n</ul><h4>4.7.8</h4><ul>\r\n    <li>new feature: Records missing from your import file can now be deleted even if WP All Import didn\'t create them. \'Existing Items\' imports have gained the ability to delete records missing from your import file as well.</li>\r\n    <li>improvement: add support for libxml 2.9.0+</li>\r\n    <li>improvement: set headers to prevent caching of cron URLs</li>\r\n    <li>improvement: fixed miscellaneous PHP notices</li>\r\n</ul>\r\n<h4>4.7.7</h4><ul>\r\n    <li>security improvement</li>\r\n    <li>improvement: import progress bar appearance</li>\r\n</ul><h4>4.7.6</h4><ul>\r\n    <li>security improvement</li>\r\n    <li>note: minimum PHP version for WP All Import 4.7.4 and above is now 7.2.5</li>\r\n    <li>bug fix: fatal error when PHP version is less than 7.2.5</li>\r\n    <li>improvement: replace deprecated jQuery functions</li>\r\n    <li>improvement: add support for newer SFTP servers</li>\r\n    <li>improvement: update FTP support for PHP 8.1+</li>\r\n    <li>improvement: better file extension detection for downloaded attachments</li>\r\n</ul><h4>4.7.5</h4><ul>\r\n<li>bug fix: fatal error when importing from (S)FTP</li>\r\n</ul><h4>4.7.4</h4><ul>\r\n  <li>security improvement</li>\r\n  <li>bug fix: error when importing tab delimited text files on PHP 8</li>\r\n  <li>bug fix: ensure wp_read_video_metadata() function is available before calling it</li>\r\n  <li>improvement: better autoloading of plugin files</li>\r\n  <li>improvement: better handling for server paths that contain underscores</li>\r\n  <li>improvement: fix notice when downloading from Google Sheets</li>\r\n</ul><h4>4.7.3</h4><ul>\r\n    <li>improvement: changed Manage Imports page button labels to be more precise</li>\r\n    <li>improvement: assign \'Uncategorized\' term to posts imported without a category assigned</li>\r\n    <li>improvement: add support for taxonomies that return objects instead of IDs</li>\r\n    <li>improvement: check if import file still exists before trying to load it</li>\r\n    <li>improvement: remove commented code that could cause false positives for security scans</li>\r\n    <li>bug fix: jQuery error related to \'destroy\' method</li>\r\n    <li>bug fix: rare issue that prevented content image URLs from being updated during import</li>\r\n    <li>bug fix: option to mark missing products as out of stock doesn\'t work with cron</li>\r\n    <li>bug fix: taxonomies section drag and drop doesn\'t save after rearranging fields</li>\r\n    <li>bug fix: can\'t save code to Function Editor</li>\r\n    <li>bug fix: conflict with Advanced Ads plugin</li>\r\n</ul><h4>4.7.2</h4><ul>\r\n<li>bug fix: \'Set missing records to out of stock\' option doesn\'t work when \'Delete products that are no longer present in your file\' option enabled</li>\r\n<li>bug fix: do not invalidate hash when FTP settings change</li>\r\n<li>bug fix: drag-and-drop hierarchical taxonomies doesn\'t work ( WordPress 5.9 )</li>\r\n<li>improvement: respect filename matching options with images in content</li>\r\n</ul><h4>4.7.1</h4><ul>\r\n<li>security fix</li>\r\n<li>improvement: add support for extremely long image source URLs</li>\r\n<li>improvement: invalidate \'skip records that haven\'t changed\' hash when using the \'instead of delete\' options</li>\r\n<li>bug fix: file cleanup fails on PHP 8</li>\r\n</ul><h4>4.7.0</h4>\r\n<ul>\r\n    <li>bugfix: ensure that invalid Automatic Scheduling times aren\'t supplied by import template</li> \r\n    <li>improvement: add ability to control taxonomy mapping case sensitivity via filter wpai_is_case_insensitive_taxonomy_mapping</li> \r\n    <li>improvement: add ability to control uploads directory for single file/image via filters wp_all_import_single_image_uploads_dir and wp_all_import_single_attachment_uploads_dir</li>  \r\n    <li>improvement: add missing options on confirm import step</li> \r\n    <li>improvement: decrease frequency of plugin updates check</li> \r\n    <li>bug fix</li>\r\n    <li>improvement: initial PHP 8 support</li>\r\n</ul>    \r\n<h4>4.6.9</h4>\r\n<ul>\r\n 	<li>bug fix: categories were imported despite the taxonomy option being disabled</li>\r\n 	<li>improvement: ssl_verify was disabled for api requests</li>\r\n 	<li>improvement: parent review setting was missing when importing WooCommerce Reviews</li>\r\n 	<li>improvement: add ability to filter csv escape symbol via wp_all_import_csv_parser_settings filter</li>\r\n</ul>\r\n<h4>4.6.8</h4>\r\n<ul>\r\n 	<li>maintenance: compatibility with Elementor v3.3 JavaScript changes</li>\r\n</ul>\r\n<h4>4.6.7 2021-05-21</h4>\r\n<ul>\r\n 	<li>bug fix: import of taxonomies hierarchy didn\'t work properly</li>\r\n</ul>\r\n<h4>4.6.6 2021-05-18</h4>\r\n<ul>\r\n 	<li>bug fix: records were removed from pmxi_posts table when activating WPAI on multisite installation</li>\r\n 	<li>improvement: git rid of deprecated join query on manage imports screen</li>\r\n 	<li>improvement: add is_update_post_format option</li>\r\n 	<li>improvement: add wp_all_import_manual_matching filter</li>\r\n 	<li>improvement: add wp_all_import_logger filter</li>\r\n 	<li>improvement: add display type option for Product Categories</li>\r\n 	<li>improvement: update scheduling keys in the scheduling service when changed in settings</li>\r\n</ul>\r\n<h4>4.6.5 2020-10-24</h4>\r\n<ul>\r\n 	<li>improvement: added support for custom FTP root paths via filter</li>\r\n 	<li>improvement: return to 1st record in file when applying filters</li>\r\n 	<li>bug fix: update only selected custom fields didn\'t work properly</li>\r\n 	<li>bug fix: update featured image provided by 3rd party add-ons didn\'t work properly</li>\r\n 	<li>bug fix: get rid of unused deprecated function add_contextual_help()</li>\r\n 	<li>bug fix: impossible to move past step 4 when using import template that had import schedules configured</li>\r\n 	<li>bug fix: last run timestamp not updated if import file is valid</li>\r\n 	<li>bug fix: no records available when multiple filters are removed</li>\r\n</ul>\r\n<h4>4.6.4 2020-10-07</h4>\r\n<ul>\r\n 	<li>New Feature: Import files from FTP</li>\r\n 	<li>improvement: deprecate \'High Speed Small File Processing\' import option</li>\r\n 	<li>improvement: allow multiple import IDs to be passed to WP-CLI</li>\r\n 	<li>improvement: sort imports by friendly name</li>\r\n 	<li>improvement: improve import speed when matching WooCommerce products by _sku custom field</li>\r\n 	<li>bug fix: \'Change image file names\' setting used when \'Use images currently in Media Library\' is selected</li>\r\n 	<li>bug fix: existing Reviews content type conflicts with WooCommerce Reviews</li>\r\n 	<li>bug fix: \'Use images currently in Media Library\' option tries to match images in content section</li>\r\n 	<li>bug fix: periods removed from cron job keys when saving plugin settings</li>\r\n 	<li>bug fix: references in \'pmxi_posts\' table for terms imported via \'Taxonomies\' imports removed on plugin deactivation</li>\r\n 	<li>bug fix: invalid images in post content downloaded as HTML pages</li>\r\n 	<li>bug fix: chromium scroll anchoring causes screen jumping effect</li>\r\n 	<li>bug fix: pagenum query argument causes broken link on import complete screen</li>\r\n 	<li>bug fix: WPML translations matching don\'t work for product variations in some cases</li>\r\n 	<li>bug fix: unable to match existing comments/reviews by custom field</li>\r\n 	<li>bug fix: unable to import existing files from sub folders</li>\r\n 	<li>bug fix: disabling \'Keep images currently in Media Library\' invalidates hashes when \'Images\' aren\'t set to be updated</li>\r\n 	<li>bug fix: changing image options in add-ons using Rapid Add-On API doesn\'t invalidate hashes</li>\r\n 	<li>bug fix: post created/updated/deleted counts disappear from \'Import in Progress\' page upon import completion</li>\r\n</ul>\r\n<h4>4.6.3 2020-08-11</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: compatibility with WordPress 5.5</li>\r\n 	<li>bug fix: new log created on each cron processing call</li>\r\n 	<li>API: added helper function wp_all_import_get_import_id()</li>\r\n 	<li>API: added helper function wp_all_import_get_import_post_type($import_id)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h4>4.6.2 2020-07-07</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: Import Comments</li>\r\n 	<li>improvement: Import WooCommerce Reviews</li>\r\n 	<li>improvement: Skip updating records when data in import file has not changed</li>\r\n 	<li>improvement: Optimize speed when matching updated posts by custom field or SKU</li>\r\n 	<li>improvement: Disable scheduled imports via Automatic Scheduling UI</li>\r\n 	<li>API: add post ID to wp_all_import_images_uploads_dir</li>\r\n 	<li>bug fix: CodeMirror throws missing dependencies error</li>\r\n 	<li>bug fix: when using Match Images by URL images are also matched by filename</li>\r\n 	<li>bug fix: CSV column header detection causes issues in some cases</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.6.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: run imports via WP-CLI</li>\r\n 	<li>bug fix: switch to CodeMirror implementation shipped in WordPress core</li>\r\n 	<li>bug fix: unable to double click to insert XPath in some cases</li>\r\n 	<li>bug fix: unable to apply pmxi_is_images_to_update filter to featured images</li>\r\n 	<li>bug fix: unable to match existing images when suffix is added to file name during import</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.6.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>API: add new filter wp_all_import_scan_files_recursively</li>\r\n 	<li>bug fix: import custom fields caused import duplicate values</li>\r\n 	<li>bug fix: unable to match existing scaled images</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: import post content images from srcset attribute</li>\r\n 	<li>API: add new filter wp_all_import_recount_terms_after_import</li>\r\n 	<li>API: add new filter wp_all_import_content_images_get_full_size</li>\r\n 	<li>API: add new filter wp_all_import_feed_type</li>\r\n 	<li>bug fix: original_value argument for pmxi_custom_field contains incorrect value</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: match existing images by filename with underscores</li>\r\n 	<li>API: add new action wp_all_import_before_preserve_post_data</li>\r\n 	<li>API: add new filter wp_all_import_specified_delimiters</li>\r\n 	<li>bug fix: attachment author not imported for API image imports</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: get files nested in subdirectories from /wp-content/uploads/wpallimport/files</li>\r\n 	<li>improvement: add support for importing WebP images</li>\r\n 	<li>bug fix: images in content not being imported when creating new items</li>\r\n 	<li>bug fix: unable to match existing users by user ID</li>\r\n 	<li>bug fix: strip special characters from cron job key</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: add support for .tsv format</li>\r\n 	<li>improvement: load WP All Import only on admin dashboard on cron calls</li>\r\n 	<li>API: add new action pmxi_before_delete_post</li>\r\n 	<li>API: add new filter wp_all_import_use_wp_set_object_terms</li>\r\n 	<li>API: add new filter wp_all_import_copy_uploaded_file_into_files_folder</li>\r\n 	<li>API: add new filter wp_all_import_is_php_allowed</li>\r\n 	<li>API: add current XML variable to pmxi_article_data filter</li>\r\n 	<li>API: add articleData argument to wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: search for existing images doesn\'t work properly when rename images option in use</li>\r\n 	<li>bug fix: post terms incorrect after import complete, must be recounted</li>\r\n 	<li>bug fix: empty attachments created when attachment import fails</li>\r\n 	<li>bug fix: page template for some posts is overwritten in some cases</li>\r\n 	<li>bug fix: pmxi_update_post_meta action not firing in some cases</li>\r\n 	<li>bug fix: unable to import featured image from content section</li>\r\n 	<li>bug fix: matching posts by ID matches and imports into attachments with the same ID</li>\r\n 	<li>bug fix: matching taxonomy terms by term ID matches and imports into posts and attachments with the same ID</li>\r\n 	<li>bug fix: remove deprecated function pmxi_convert_encoding from API</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: do not keep trigger log items in history</li>\r\n 	<li>improvement: added new filter wp_all_import_search_image_by_wp_attached_file</li>\r\n 	<li>improvement: added new filter wp_all_import_get_existing_image</li>\r\n 	<li>improvement: added pmxi_import_failed action</li>\r\n 	<li>improvement: search for existing attachments in /files folder</li>\r\n 	<li>improvement: set featured image from img tags when importing content</li>\r\n 	<li>bug fix: don\'t delete records from pmxi_posts for existing users and taxonomy terms</li>\r\n 	<li>bug fix: skipping empty lines during csv to xml convertation</li>\r\n 	<li>bug fix: skip post when custom field data is unchanged</li>\r\n 	<li>bug fix: import custom field name via XPath</li>\r\n 	<li>bug fix: trigger delete_post action when imported posts are deleting</li>\r\n 	<li>bug fix: imports that are scheduled to run at 12am/pm</li>\r\n 	<li>bug fix: fixed updating custom fields with quotes</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: import using stream reader</li>\r\n 	<li>bug fix: generation temporary files in system temporary folder</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: add support for Toolset Types</li>\r\n 	<li>bug fix: trigger deleted_user action when import deleting a user</li>\r\n 	<li>bug fix: add-ons api - searching for existing images in pmxi_images table</li>\r\n 	<li>bug fix: php error on array push alias</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>new feature: Automatic Scheduling - run imports on a schedule</li>\r\n 	<li>improvement: search for existing images based on remote image URL</li>\r\n 	<li>improvement: various backend improvements to image imports</li>\r\n 	<li>improvement: various import speed optimizations</li>\r\n 	<li>bug fix: remove deprecated function calls for PHP 7.2 compatibility</li>\r\n 	<li>bug fix: delete db tables when mu blog deleted</li>\r\n 	<li>bug fix: remove BOM from import templates</li>\r\n 	<li>bug fix: saving CSV delimiter when changing import file</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: import images from dropbox</li>\r\n 	<li>improvement: skips import process to the first specific record</li>\r\n 	<li>improvement: added new filter wp_all_import_is_render_whole_xml_tree</li>\r\n 	<li>improvement: added wp_all_import_images_uploads_dir filter into add-ons api</li>\r\n 	<li>bug fix: conflict with InfiniteWP</li>\r\n 	<li>bug fix: oddity update notification for Link cloaking add-on</li>\r\n 	<li>bug fix: load functions before pmxi_before_xml_import</li>\r\n 	<li>bug fix: do not re-count category terms when post imported as draft</li>\r\n 	<li>bug fix: import base64 encoded images in add-ons</li>\r\n 	<li>bug fix: woo order custom fields auto-detection</li>\r\n 	<li>security fix - XSS exploit (Special thanks to Mardan Muhidin for reporting)</li>\r\n 	<li>security fix - XSS exploit (Special thanks to Yuji Tounai for reporting)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: Make the WooCo Short Description expandable</li>\r\n 	<li>improvement: show notice when function editor is not saved</li>\r\n 	<li>improvement: added timestamp to import log lines</li>\r\n 	<li>improvement: added support for bmp images</li>\r\n 	<li>improvement: added new action pmxi_before_post_import_{$addon}</li>\r\n 	<li>security fix: patch XSS exploit</li>\r\n 	<li>bug fix: import pages hierarchy</li>\r\n 	<li>bug fix: error in pclzip.lib.php with php 7.1</li>\r\n 	<li>bug fix: import taxonomies hierarchy</li>\r\n 	<li>bug fix: json to xml convertation</li>\r\n 	<li>bug fix: import password protected feeds with port defined</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: custom fields detection</li>\r\n 	<li>improvement: new action wp_all_import_post_skipped</li>\r\n 	<li>improvement: updated history page title</li>\r\n 	<li>improvement: optimize large imports deletion</li>\r\n 	<li>improvement: added import friendly name to confirm screen</li>\r\n 	<li>improvement: sql query optimization on manage imports screen</li>\r\n 	<li>improvement: added wp_all_import_shard_delay filter</li>\r\n 	<li>improvement: added wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: compatibility with WPML</li>\r\n 	<li>bug fix: generation image filename</li>\r\n 	<li>bug fix: wp_all_import_specified_records filter</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: added hungarian translation</li>\r\n 	<li>bug fix: csv headers generation</li>\r\n 	<li>bug fix: import template from Import Settings works again</li>\r\n 	<li>bug fix: users no longer logged out when user is update via import</li>\r\n 	<li>bug fix: images with encoded quotes</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: cron job completed early for imports with xpath</li>\r\n 	<li>bug fix: csv headers with non latin characters</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: cron job un-triggered on timeout error</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: import xls from dropbox</li>\r\n 	<li>bug fix: template preview</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: new filter \'wp_all_import_phpexcel_delimiter\'</li>\r\n 	<li>improvement: new filter \'wp_all_import_is_trim_parsed_data\'</li>\r\n 	<li>improvement: added new \'filter wp_all_import_skip_x_csv_rows\'</li>\r\n 	<li>improvement: added csv delimiter setting to import options screen</li>\r\n 	<li>bug fix: taxonomies dropdown list</li>\r\n 	<li>bug fix: cron job was never untriggered when calling to undefined function</li>\r\n 	<li>bug fix: taxonomies preview</li>\r\n 	<li>bug fix: import duplicate tags</li>\r\n 	<li>bug fix: importing taxonomy terms that already exist in a different taxonomies</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: parsing images for newly added records</li>\r\n 	<li>bug fix: the event calendar conflict</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: added new filter wp_all_import_phpexcel_object to modify excel data before import</li>\r\n 	<li>bug fix: search for images ending with underscores in media</li>\r\n 	<li>bug fix: import hierarchical posts and pages</li>\r\n 	<li>bug fix: import custom post type page templates</li>\r\n 	<li>bug fix: matching taxonomies by name</li>\r\n 	<li>bug fix: custom fields validation</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: compatibility with PHP 7.x</li>\r\n 	<li>improvement: search for existing attachments option</li>\r\n 	<li>improvement: new filter for file path of functions.php file</li>\r\n 	<li>bug fix: images preview</li>\r\n 	<li>bug fix: improved matching for images similar to image.com.png</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>new feature: added import taxonomies feature</li>\r\n 	<li>bug fix: hierarchy taxonomies preview</li>\r\n 	<li>bug fix: empty logs folder generation</li>\r\n 	<li>bug fix: \'Keep images currently in Media Library\' option for add-ons</li>\r\n 	<li>bug fix: import bundles with gz files</li>\r\n 	<li>bug fix: custom functions for attachments</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.3.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: \'Force Stream Reader\' setting</li>\r\n 	<li>improvement: tar + gz compression support for remote feeds</li>\r\n 	<li>improvement: new filter \'wp_all_import_auto_create_csv_headers\'</li>\r\n 	<li>improvement: new filter \'wp_all_import_is_base64_images_allowed\'</li>\r\n 	<li>improvement: new filter \'wp_all_import_set_post_terms\' to leave a specific category alone when a post is being updated</li>\r\n 	<li>bug fix: cron import timeout when set missing outofstock option is enabled</li>\r\n 	<li>bug fix: nodes navigation for xpath like /news/item</li>\r\n 	<li>bug fix: frozen import template screen for cyrillic XML feeds</li>\r\n 	<li>bug fix: conflict between taxonomies &amp; user import</li>\r\n 	<li>bug fix: creating users with the same email</li>\r\n 	<li>bug fix: enable keep line breaks option by default</li>\r\n 	<li>bug fix: composer namespace conflict</li>\r\n 	<li>bug fix: images preview when wp is in subdirectory</li>\r\n 	<li>bug fix: \'Instead of deletion, set Custom Field\' option for users import</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.3.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed issue with libxml 2.9.3</li>\r\n 	<li>execute \'pmxi_article_data\' filter for all posts ( new &amp; existing )</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.3.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added de_CH translation</li>\r\n 	<li>added support for .svg images</li>\r\n 	<li>added possibility for import excerpts for pages</li>\r\n 	<li>added new filter \'wp_all_import_specified_records\'</li>\r\n 	<li>added new filter \'wp_all_import_is_post_to_delete\'</li>\r\n 	<li>fixed saving function editor</li>\r\n 	<li>fixed custom fields mapping rules with \'0\' value</li>\r\n 	<li>fixed termination of the import if the \"Delete source XML file after importing\" is checked</li>\r\n 	<li>disable XMLReader stream filter for HHVM</li>\r\n 	<li>improve search for existing images in media gallery</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed error messages on step 4</li>\r\n 	<li>fixed renaming image files</li>\r\n 	<li>fixed delete missing records option</li>\r\n 	<li>fixed csv to xml convertation in case when there are some equal titles in csv file</li>\r\n 	<li>stop using $HTTP_RAW_POST_DATA for PHP 7.x compatibility</li>\r\n 	<li>added new action \'pmxi_missing_post\'</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>update required database tables</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed detecting root nodes with colons in names</li>\r\n 	<li>fixed php notice \"Undefined variable: existing_meta_keys\"</li>\r\n 	<li>fixed rendering special chars in function editor</li>\r\n 	<li>fixed css for WordPress 4.4</li>\r\n 	<li>added feature to delete only posts not import</li>\r\n 	<li>added feature to download template/bundle from import settings</li>\r\n 	<li>added new option for importing images \"Use images currently in Media Library\"</li>\r\n 	<li>remove periods to hyphens convertation in image name</li>\r\n 	<li>auto detect dropbox URLs and change to dl=1</li>\r\n 	<li>changed comma delimiting behavior/UI in image meta</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed preview prices</li>\r\n 	<li>fixed counting XML nodes</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed \'Delete source XML file after importing\' option</li>\r\n 	<li>fixed ‘Instead of deletion, change post status to Draft’ option</li>\r\n 	<li>fixed reading XML files with NS in element names</li>\r\n 	<li>added ‘WooCommerce Order’ to post type list on step 1</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed duplicate matching by custom field</li>\r\n 	<li>fixed error messages on step1 in case when server throws fatal error e.q. time limit exception</li>\r\n 	<li>fixed option \"Delete posts that are no longer present in your file\", now it works with empty CSV files which has only one header row</li>\r\n 	<li>fixed importing custom fields with the same name</li>\r\n 	<li>fixed custom functions in images preview</li>\r\n 	<li>added es_ES translation</li>\r\n 	<li>added de_DE translation</li>\r\n 	<li>added iterative ajax delete process ( deleting associated posts )</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Fixed removing uploaded XML source file on re-run process</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Fixed saving function editor</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed duplicate matching by custom field ( cron )</li>\r\n 	<li>fixed converting image filenames to lowercase</li>\r\n 	<li>fixed import html to image description</li>\r\n 	<li>fixed import _wp_old_slug</li>\r\n 	<li>added Post ID to manual record matching</li>\r\n 	<li>added \'Comment status\' to \'Choose data to update\' section</li>\r\n 	<li>added \'cancel\' to cron API /wp-cron.php?import_key=Kt&amp;import_id=407&amp;action=cancel</li>\r\n 	<li>added function editor</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed parsing CSV with empty lines</li>\r\n 	<li>fixed parsing multiple IF statements</li>\r\n 	<li>fixed preview in case when ‘Disable the visual editor when writing’ is enabled</li>\r\n 	<li>fixed conflict with WooCommerce - Store Exporter Deluxe</li>\r\n 	<li>added possibility to start synchronized cron requests &amp;sync=1</li>\r\n 	<li>added notifications for required addons</li>\r\n 	<li>added support for wp all export bundle</li>\r\n 	<li>added support for manual import bundle</li>\r\n 	<li>added feature \'click to download import file\'</li>\r\n 	<li>added validation for excerpt and images sections</li>\r\n 	<li>added auto-detect a broken Unique ID notification</li>\r\n 	<li>added import template notifications</li>\r\n 	<li>removed support for importing WooCommerce Orders</li>\r\n 	<li>changed absolute paths to relative in db</li>\r\n 	<li>updated cron response messages</li>\r\n 	<li>moved uploaded files to \'Use existing\' dropdown</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added support for Excel files ( .xls, .xlsx )</li>\r\n 	<li>added new option \'Do not remove images from media gallery\' on import\r\nsettings screen</li>\r\n 	<li>added new options to taxonomies import \'Try to match terms to\r\nexisting child Product Categories\' &amp; \'Only assign Products to the\r\nimported Product Category, not the entire hierarchy\'</li>\r\n 	<li>fixed excessive update requests</li>\r\n 	<li>added options to \'Delete associated posts</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>load ini_set only on plugins pages</li>\r\n 	<li>fixed saving import template</li>\r\n 	<li>added import post format via XPath</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed import page template</li>\r\n 	<li>added a second argument to pmxi_saved_post action ( SimpleXML object ) of current record</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed Apply mapping rules before splitting via separator symbol for manual hierarchy</li>\r\n 	<li>fixed path equal or less than</li>\r\n 	<li>fixed changing unique key when moving back from confirm screen</li>\r\n 	<li>fixed override page template</li>\r\n 	<li>fixed unlink images on deleting missing posts</li>\r\n 	<li>updated wp_all_import_is_post_to_update filter with second argument XML node as array</li>\r\n 	<li>updated compatibility with WP All Export</li>\r\n 	<li>added filter <code>wp_all_import_feed_type</code></li>\r\n 	<li>added possibility to use php to calculate URL on first step <code>[add_to_url(\"https://google.com/\")]</code></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed un triggering issue on cron jobs for empty files</li>\r\n 	<li>changed updater priority from 10 to 20</li>\r\n 	<li>added post parent option for all hierarchical CPT</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Important security fixes - additional hardening, prevention of blind SQL injection and reflected XSS attacks</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>critical security fix - stopping non-logged in users from accessing adminInit https://www.wpallimport.com/2015/02/wp-import-4-1-1-mandatory-security-update/</li>\r\n 	<li>added new filter <code>wp_all_import_is_post_to_update</code> to skip needed posts <code>add_filter(\'wp_all_import_is_post_to_update\', \'is_post_to_update\', 10, 1);</code></li>\r\n 	<li>added new option <code>Search for existing attachments to prevent duplicates in media library<code></code></code></li>\r\n 	<li>fixed imports pagination</li>\r\n 	<li>fixed preview taxonomies</li>\r\n 	<li>fixed upload folder creation when \'upload_dir\' filter defined</li>\r\n 	<li>fixed db schema for wpmu when new site added</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed cron execution when titles are not defined</li>\r\n 	<li>added an option to separate hierarchy groups via symbol</li>\r\n 	<li>added separator symbol for manually nested taxonomies</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added license key setting for automatic update</li>\r\n 	<li>added option <code>search images through attachments</code></li>\r\n 	<li>added option <code>assign term to the bottom level term in the hierarchy</code></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed taxonomies preview</li>\r\n 	<li>fixed import meta description for images</li>\r\n 	<li>added feature to assign posts to needed terms</li>\r\n 	<li>added new option for taxonomies <code>Apply mapping rules before splitting via separator symbol</code></li>\r\n 	<li>added set with XPath option for comment status, ping status, page parent, page template</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed feed detection for rss chanels</li>\r\n 	<li>fixed parsing json data</li>\r\n 	<li>fixed add only new images option</li>\r\n 	<li>fixed delete missing records option</li>\r\n 	<li>added ability to import custom fields with the same name</li>\r\n 	<li>added port setting</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed encoding for taxonomies mapping</li>\r\n 	<li>optimization for delete missing records option</li>\r\n 	<li>fixed feed type auto-detection</li>\r\n 	<li>fixed changes that related to _wp_page_template meta data</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed template parsing when php function arguments contains an array()</li>\r\n 	<li>fixed error msg when feed is html page e.g. page 404</li>\r\n 	<li>fixed xpath building</li>\r\n 	<li>update hierarchy taxonomies options</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>changed main file name to wp-all-import-pro.php</li>\r\n 	<li>fixed feed type auto-detection</li>\r\n 	<li>fixed bug with empty unique keys</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed re-count record when a file has been changed at an import setting screen</li>\r\n 	<li>fixed database schema auto-update</li>\r\n 	<li>fixed uploading large files</li>\r\n 	<li>fixed auto-detecting root element</li>\r\n 	<li>fixed log storage in database</li>\r\n 	<li>fixed cron execution when \"do not create new records\" option is enabled</li>\r\n 	<li>fixed feed type detection</li>\r\n 	<li>fixed unlink attachment source when posts updated/deleted</li>\r\n 	<li>fixed specialchars in taxnomies/categories mapping</li>\r\n 	<li>updated taxonomies hierarchy settings</li>\r\n 	<li>added a limit 10 to the existing meta values</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>speed up the import of taxonomies/categories</li>\r\n 	<li>added taxonomies/categories mapping feature</li>\r\n 	<li>added custom fields auto-detection feature</li>\r\n 	<li>added custom fields mapping feature</li>\r\n 	<li>added images/taxonomies preview feature</li>\r\n 	<li>added unofficial support for more file formats - json &amp; sql</li>\r\n 	<li>added new setting (secure mode) to protect your files</li>\r\n 	<li>better import logs</li>\r\n 	<li>updated design</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.4.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed navigation bug</li>\r\n 	<li>fixed search duplicates</li>\r\n 	<li>fixed duplicate categories</li>\r\n 	<li>fixed path builder for element attributes</li>\r\n 	<li>fixed cron processing for already uploaded files (XML)</li>\r\n 	<li>added taxonomies for pages</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.4.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed <code>pmxi_delete_post</code> action: this action was executed after posts were deleted</li>\r\n 	<li>fixed import menu order &amp; post parent for pages</li>\r\n 	<li>fixed import log for continue import feature</li>\r\n 	<li>added is update author option</li>\r\n 	<li>fixed post formats</li>\r\n 	<li>fixed cron processing: WP_Error object was not initialized</li>\r\n 	<li>fixed cron processing for import where XPath filtering is defined</li>\r\n 	<li>fixed UTC dates on manage imports page</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.4.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed: import empty content</li>\r\n 	<li>fixed: log files</li>\r\n 	<li>fixed: detect image extension</li>\r\n 	<li>fixed: terms hierarchy on cron job execution</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added: feature to do not escape shortcodes</li>\r\n 	<li>fixed: pre-processing logic</li>\r\n 	<li>fixed: downloading images with unicode url</li>\r\n 	<li>fixed: clear non ASCII/invalid symbols in CSV files</li>\r\n 	<li>fixed: import option \'Instead of using original image file name, set file name(s)\'</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed: admin notices</li>\r\n 	<li>fixed: creation duplicates draft post via cron</li>\r\n 	<li>fixed: images with encoded symbols</li>\r\n 	<li>fixed: upload file via URL</li>\r\n 	<li>fixed: php notices</li>\r\n 	<li>added: compatibility with WP 3.9</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>updated convertation CSV to XML with XMLWriter</li>\r\n 	<li>fixed import *.zip files</li>\r\n 	<li>fixed xpath helper on step 2</li>\r\n 	<li>fixed showing zeros in XML tree</li>\r\n 	<li>allow post content to be empty on step 3</li>\r\n 	<li>added autodetect session mode</li>\r\n 	<li>delete deprecated settings <code>my csv contain html code</code> and <code>case sensitivity</code></li>\r\n 	<li>fixed deleting history files</li>\r\n 	<li>fixed autodetect image extensions</li>\r\n 	<li>fixed increasing SQL query length</li>\r\n 	<li>added error messages</li>\r\n 	<li>fixed \"High Speed Small File Processing\" option</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed: multiple cron execution</li>\r\n 	<li>fixed: load options template</li>\r\n 	<li>fixed: session initialization</li>\r\n 	<li>fixed: import search</li>\r\n 	<li>fixed: attachment author on cron execution</li>\r\n 	<li>fixed: download images option</li>\r\n 	<li>added: errors messages to the log</li>\r\n 	<li>added: \"not contains\" filter to step 2</li>\r\n 	<li>added: compatibility with categories mapping addon</li>\r\n 	<li>updated: cpt navigation on step 4</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed bug with cron processing</li>\r\n 	<li>fixed bug with saving wrong image name</li>\r\n 	<li>added serialized custom fields feature</li>\r\n 	<li>added compatibility with user import add-on</li>\r\n 	<li>added compatibility with 3rd party developers</li>\r\n 	<li>added new setting \'Cron processing time limit\'</li>\r\n</ul>\r\n</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:56:\"https://ps.w.org/wp-all-import/assets/banner-772x250.png\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:33:\"No license key has been provided.\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"contributors\";a:2:{s:6:\"soflyy\";a:3:{s:12:\"display_name\";s:6:\"soflyy\";s:7:\"profile\";s:37:\"https://profiles.wordpress.org/soflyy\";s:6:\"avatar\";s:51:\"https://wordpress.org/grav-redirect.php?user=soflyy\";}s:11:\"wpallimport\";a:3:{s:12:\"display_name\";s:11:\"wpallimport\";s:7:\"profile\";s:42:\"https://profiles.wordpress.org/wpallimport\";s:6:\"avatar\";s:56:\"https://wordpress.org/grav-redirect.php?user=wpallimport\";}}}','no'),(300028,'wp-all-import-pro_timeout_85b8495febade7a221f67b0bca7d59d9','1704238322','yes'),(300031,'wpai-woocommerce-add-on_080fdc82a3a678dab2d4f10c27ddeb79','O:8:\"stdClass\":19:{s:11:\"new_version\";s:5:\"4.0.0\";s:14:\"stable_version\";s:5:\"4.0.0\";s:4:\"name\";s:18:\"WooCommerce Add-On\";s:4:\"slug\";s:23:\"wpai-woocommerce-add-on\";s:3:\"url\";s:76:\"https://www.wpallimport.com/downloads/woocommerce-import-add-on/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-12-04 23:20:55\";s:8:\"homepage\";s:64:\"https://www.wpallimport.com/downloads/woocommerce-import-add-on/\";s:8:\"sections\";a:2:{s:11:\"description\";s:132:\"<p>Learn more at <a href=\"http://www.wpallimport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/</a></p>\";s:9:\"changelog\";s:27575:\"<h4>4.0.0</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: WP All Import 4.8.2+ is required to import orders</li>\r\n<li>note: order import behavior has changed, check your order import configurations before running them</li>\r\n<li>improvement: initial support for HPOS</li>\r\n<li>improvement: better order imports</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n<li>bug fix: resolve miscellaneous PHP and JS notices</li>\r\n</ul><h4>3.3.7</h4><ul>\r\n<li>improvement: final changes before the release of the updated order import UI</li>\r\n<li>note: this release includes information about accessing the updated order import UI beta</li>\r\n</ul>\r\n<h4>3.3.6</h4>\r\n<ul><li>improvement: prepare for upcoming release with updated UI for order imports</li></ul>\r\n<h4>3.3.5</h4><ul>\r\n    <li>bug fix: resolve issue adding and updating custom attributes</li>\r\n    <li>bug fix: ensure SKUs are generated when configured for existing product imports</li>\r\n    <li>bug fix: resolve issues related to chaining import runs via WP-CLI</li>\r\n    <li>bug fix: retain existing sale prices if they\\\'re not set to update</li>\r\n    <li>bug fix: updates using the \\\'Link all variations\\\' option removed non-variation attributes</li>\r\n    <li>bug fix: correctly link author when using \\\'Link all variations\\\' option</li>\r\n    <li>bug fix: ensure products are properly converted to \\\'simple\\\' when configured</li>\r\n    <li>improvement: remove deprecated \\\'get_page_by_title\\\' function calls</li>\r\n    <li>improvement: allow activating HPOS (full HPOS support is not yet available)</li>\r\n</ul>\r\n<h4>3.3.4</h4><ul>\r\n    <li>new feature: Records missing from your import file can now be deleted even if WP All Import didn\\\'t create them. \\\'Existing Items\\\' imports have gained the ability to delete records missing from your import file as well.</li>\r\n    <li>bug fix: adjust prices error in PHP 8.1</li>\r\n    <li>improvement: match Order items to products regardless of their post status</li>\r\n    <li>improvement: ensure zero sale price isn\\\'t imported for products</li>\r\n</ul><h4>3.3.3</h4><ull>\r\n<li>bug fix: term counts updated incorrectly</li>\r\n</ul><h4>3.3.2</h4>\r\n<ul>\r\n<li>improvement: gracefully handle errors when recounting terms</li>\r\n<li>improvement: better autoloading of plugin files</li>\r\n</ul>\r\n<h4>3.3.1</h4><ul>\r\n<li>improvement: WPML compatibility</li>\r\n<li>bug fix: import variation enabled when variations presented as child XML elements didn\\\'t work properly</li>\r\n<li>bug fix: import variation status didn\\\'t work</li>\r\n</ul><h4>3.3.0</h4><ul>\r\n    <li>bug fix: import sale prices for link all variations don\\\'t work properly</li>\r\n    <li>bug fix: import order created date doesn\\\'t work properly</li>\r\n    <li>bug fix: importing orders triggers double emails in some cases</li>\r\n</ul><h4>3.2.9</h4><ul>\r\n    <li>improvement: add new action - wp_all_import_before_variable_product_import</li>\r\n    <li>bugfix: update only these attributes option doesn\\\'t work in some cases</li>\r\n    <li>bugfix: import attributes with < and > characters doesn\\\'t work properly</li>\r\n    <li>bugfix: duplicate email notifications are sent in some cases when updating orders</li>\r\n    <li>bugfix: unable to convert variable products to simple in some cases</li>\r\n    <li>bugfix: not possible to import \\\"0\\\" as an attribute value</li>\r\n</ul><h4>3.2.8</h4>\r\n<ul>\r\n 	<li>bugfix: only send order notifications when orders are created or status changes</li>\r\n 	<li>bugfix: \\\'any\\\' attributes for non-taxonomy attributes weren\\\'t imported correctly</li>\r\n 	<li>bugfix: variations not updating correctly when using \\\'link all variations\\\'</li>\r\n 	<li>bugfix: attributes with &lt; and &gt; characters weren\\\'t imported correctly</li>\r\n 	<li>bugfix: match non-Latin taxonomy attribute names with \\\'Update only these Attributes, leave the rest alone\\\' option</li>\r\n 	<li>bugfix: could not import attributes with value 0</li>\r\n 	<li>improvement: decrease frequency of plugin update checks</li>\r\n 	<li>improvement: added \\\'wp_all_import_before_variable_product_import\\\' action</li>\r\n</ul>\r\n<h4>3.2.7</h4>\r\n<ul>\r\n 	<li>bug fix: import stock status for link all variations option didn\\\'t work in some cases</li>\r\n 	<li>bug fix: import custom fields for variations didn\\\'t work in some cases</li>\r\n 	<li>bug fix: order status notifications was not sent during re-import process</li>\r\n 	<li>improvement: add new filter - wp_all_import_sync_parent_acf_with_first_variation</li>\r\n</ul>\r\n<h4>3.2.6</h4>\r\n<ul>\r\n 	<li>improvement: add option to import grouped product children</li>\r\n 	<li>improvement: add support for Additional Variation Images Gallery For WooCommerce</li>\r\n 	<li>bug fix: variations were create if parent product does not exist</li>\r\n 	<li>bug fix: downloadable permissions wan not imported correctly</li>\r\n 	<li>bug fix: images matching option when importing variation via option 5 were not respected</li>\r\n 	<li>bug fix:: set first in stock variation as the default selection didn\\\'t work in some cases</li>\r\n</ul>\r\n<h4>3.2.5</h4>\r\n<ul>\r\n 	<li>improvement: add option to import default attributes via xpath</li>\r\n 	<li>bug fix: email sent when order status changed to completed</li>\r\n 	<li>bug fix: re-running an import with \\\'Skip posts if their data in your file has not changed\\\' removes product variations in some cases</li>\r\n 	<li>bug fix: enabling \\\'Link all variations\\\' and \\\'Delete posts no longer present in your file\\\' results in variations being deleted</li>\r\n 	<li>bug fix: unable to add parent SKU when importing products as child element in XML</li>\r\n 	<li>bug fix: post author for first product variation not imported properly</li>\r\n 	<li>bug fix: product attributes for first product variation not imported properly</li>\r\n 	<li>bug fix: changing parent sku creates duplicate variations</li>\r\n 	<li>bug fix: order line items are imported even if the quantity is 0</li>\r\n 	<li>bug fix: WooCommerce lookup table not cleaned up when products deleted via cron</li>\r\n 	<li>bug fix: linked product matching attempted during the import process before all products are imported</li>\r\n 	<li>bug fix: featured image not updated when only \\\'Images\\\' is set to be updated in \\\'Choose which data to update\\\'</li>\r\n 	<li>bug fix: selective hashing missing for WooCommerce order imports</li>\r\n 	<li>bug fix: all product attributes updated when choosing only to update specific attributes for child XML variations</li>\r\n 	<li>bug fix: attributes containing \\\'#\\\' character not imported properly</li>\r\n 	<li>bug fix: \\\'Tax amount per unit\\\' field disappears in order import options</li>\r\n 	<li>bug fix: \\\'Enable reviews\\\' option not migrated</li>\r\n 	<li>bug fix: product_shipping_class taxonomy not updated</li>\r\n 	<li>bug fix: advanced options are not pre-selected in the 3rd (and all subsequent) attributes in \\\'Attributes\\\' tab</li>\r\n 	<li>bug fix: order author is updated when only updating order status</li>\r\n</ul>\r\n<h4>3.2.4</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with WordPress 5.5</li>\r\n 	<li>bug fix: product attributes are not deleted when missing variations deleted</li>\r\n</ul>\r\n<h4>3.2.3</h4>\r\n<ul>\r\n 	<li>API: extend pmwi_tab_content action with new argument for import options</li>\r\n 	<li>bug fix: import order products meta data delimited by pipe symbol</li>\r\n</ul>\r\n<h4>3.2.2</h4>\r\n<ul>\r\n 	<li>improvement: import default product attributes for variations with value of \\\"Any\\\"</li>\r\n 	<li>bug fix: coupons improperly recalculated for manual order items</li>\r\n 	<li>bug fix: taxes for line items not imported</li>\r\n</ul>\r\n<h4>3.2.1</h4>\r\n<ul>\r\n 	<li>API: add wp_all_import_regenerate_lookup_tables filter to control lookup tables generation</li>\r\n 	<li>improvement: added ability to import meta data for existing order products</li>\r\n 	<li>bug fix: products with no variations do no import as simple products in some cases</li>\r\n 	<li>bug fix: coupons discount amount was imported incorrectly</li>\r\n 	<li>bug fix: import serialized meta for first variation was serialize two times</li>\r\n</ul>\r\n<h4>3.1.1</h4>\r\n<ul>\r\n 	<li>bug fix: unable to import variable products in WooCommerce 3.9</li>\r\n 	<li>bug fix: unable to import additional variation images</li>\r\n 	<li>bug fix: products with no variations do no import as simple products in some cases</li>\r\n 	<li>bug fix: attribute term from parent not removed if variation deleted</li>\r\n 	<li>bug fix: custom fields for first variation do not update when using manual record matching</li>\r\n</ul>\r\n<h4>3.1.0</h4>\r\n<ul>\r\n 	<li>API: add wp_all_import_is_post_to_update filter for import variable products from child XML elements</li>\r\n 	<li>bug fix: unable to block emails to customers when importing WooCommerce orders</li>\r\n 	<li>bug fix: product default attributes are not updated in some cases</li>\r\n 	<li>bug fix: unable to update only selected attributes for variations in some cases</li>\r\n 	<li>bug fix: do not import variation if variable attributes are not defined</li>\r\n 	<li>bug fix: conflict with woo-advanced-shipment-tracking plugin</li>\r\n 	<li>bug fix: recalculate taxes and coupons after order imported</li>\r\n</ul>\r\n<h4>3.0.9</h4>\r\n<ul>\r\n 	<li>improvement: import WooCommerce simple subscriptions</li>\r\n 	<li>improvement: import WooCommerce order item taxes</li>\r\n 	<li>bug fix: lookup table not updating after import</li>\r\n 	<li>bug fix: attributes not re-counting after import</li>\r\n 	<li>bug fix: product variation status not importing in some cases</li>\r\n</ul>\r\n<h4>3.0.8</h4>\r\n<ul>\r\n 	<li>improvement: add new filter wp_all_import_minimum_number_of_variations to import as simple product if it has less than the minimum number of variations</li>\r\n 	<li>bug fix: permissions reset for downloadable products in some cases</li>\r\n 	<li>bug fix: hidden variations created after making product simple</li>\r\n 	<li>bug fix: unable to update attributes with non UTF-8 characters</li>\r\n</ul>\r\n<h4>3.0.7</h4>\r\n<ul>\r\n 	<li>improvement: add validation to catalog visibility field</li>\r\n 	<li>improvement: match cross-sell products by title</li>\r\n 	<li>API: new filter wp_all_import_get_prices_from_first_variation</li>\r\n 	<li>API: new filter wp_all_import_variation_any_attribute</li>\r\n 	<li>API: new filter wp_all_import_product_attributes_delimiter</li>\r\n 	<li>bug fix: images not imported to first variation when \\\'WooCommerce Additional Variation Images\\\' plugin is installed</li>\r\n 	<li>bug fix: shipping class not imported properly in some cases</li>\r\n 	<li>bug fix: prices for variable products with 1 variation are not imported in some cases</li>\r\n 	<li>bug fix: product_visibility taxonomy for product variations not imported in some cases</li>\r\n</ul>\r\n<h4>3.0.6</h4>\r\n<ul>\r\n 	<li>improvement: added ability to sort attributes in import template</li>\r\n 	<li>improvement: added \\\'Low stock threshold\\\' option</li>\r\n 	<li>improvement: added validation for type 6 of import variable products</li>\r\n 	<li>improvement: added ability to import new variations to existing products</li>\r\n 	<li>bug fix: creating shipping class -1</li>\r\n 	<li>bug fix: import _price field when converting variable product into simple</li>\r\n 	<li>bug fix: import custom fields for variation created from parent row</li>\r\n 	<li>bug fix: deleting missing variation when link all variations option in use</li>\r\n 	<li>bug fix: import taxonomy attributes delimited with pipe symbol</li>\r\n 	<li>bug fix: make product simple &amp; link all variations</li>\r\n 	<li>bug fix: import ACF fields into first variation</li>\r\n 	<li>bug fix: import shipping class for variations imported via 2 &amp; 4 options</li>\r\n 	<li>bug fix: undating only sepcified attributes</li>\r\n 	<li>bug fix: updating stock qty when _stock field is not set to update</li>\r\n 	<li>bug fix: import downloadable variations with option 5</li>\r\n 	<li>bug fix: add only new attributes for variable products</li>\r\n 	<li>bug fix: matching parent product by title</li>\r\n</ul>\r\n<h4>3.0.5</h4>\r\n<ul>\r\n 	<li>bug fix: updating product sale dates only</li>\r\n 	<li>bug fix: prices preview</li>\r\n 	<li>bug fix: import custom product types</li>\r\n 	<li>bug fix: import product type 5 when attributes are not defined</li>\r\n 	<li>bug fix: re-count shipping terms after import completed</li>\r\n 	<li>bug fix: import stock status when making variable product simple</li>\r\n 	<li>bug fix: import non utf8 attributes for type 5 of import variable products</li>\r\n 	<li>bug fix: import pipe delimited attributes</li>\r\n 	<li>bug fix: automatically update stock status when _stock is updating</li>\r\n 	<li>bug fix: SKU auto-generation for 5th type of import variable products</li>\r\n 	<li>bug fix: added missing wp_all_import_variable_product_imported hook</li>\r\n</ul>\r\n<h4>3.0.4</h4>\r\n<ul>\r\n 	<li>bug fix: import shipping class</li>\r\n 	<li>bug fix: adjust empty prices</li>\r\n 	<li>bug fix: import attributes with non utf-8 characters</li>\r\n 	<li>bug fix: import stock quantity for variable products ( variations are children in XML file )</li>\r\n</ul>\r\n<h4>3.0.3</h4>\r\n<ul>\r\n 	<li>bug fix: PHP 5.4 compatibility - fixed \\\"can\\\'t use method return value in write context\\\" error</li>\r\n 	<li>bug fix: assing attributes marked as not in variation to parent product</li>\r\n</ul>\r\n<h4>3.0.2</h4>\r\n<ul>\r\n 	<li>bug fix: import attributes marked as not in variation</li>\r\n 	<li>bug fix: import attributes with reserved term names</li>\r\n</ul>\r\n<h4>3.0.1</h4>\r\n<ul>\r\n 	<li>bug fix: PHP 7.0 compatibility</li>\r\n 	<li>bug fix: sanitize variation attribute names</li>\r\n 	<li>bug fix: deleting SKUs during mport with manual records matching enabled</li>\r\n</ul>\r\n<h4>3.0.0</h4>\r\n<ul>\r\n 	<li>improvement: refactored codebase</li>\r\n 	<li>improvement: speed up import variable products</li>\r\n 	<li>improvement: sync variable product with variations</li>\r\n 	<li>bug fix: do not add featured image to the gallery</li>\r\n 	<li>bug fix: updating existing products by post ID</li>\r\n 	<li>bug fix: adjust prices for variable product imported via option 5</li>\r\n 	<li>bug fix: import order notes date</li>\r\n 	<li>bug fix: import order refunds date</li>\r\n 	<li>bug fix: import order payment method</li>\r\n 	<li>bug fix: generate order_key during import orders</li>\r\n</ul>\r\n<h4>2.4.1</h4>\r\n<ul>\r\n 	<li>bug fix: import attributes with special characters</li>\r\n 	<li>bug fix: recount product terms when updating post status</li>\r\n</ul>\r\n<h4>2.4.0</h4>\r\n<ul>\r\n 	<li>bug fix: stock status not importing properly when _backorders custom field is not set</li>\r\n 	<li>bug fix: product dimensions won\\\'t import if \\\'Virtual\\\' field is not set</li>\r\n 	<li>bug fix: compatibility fix WooCommerce 2.6.x</li>\r\n 	<li>bug fix: options conflict when creating simple products</li>\r\n 	<li>bug fix: remove deprecated function calls for PHP 7.2 compatibility</li>\r\n 	<li>bug fix: unable to import 0 as a value for attributes</li>\r\n 	<li>bug fix: mirror new WooCommerce core behavior that forces all uncategorized products to be assigned to the Uncategorized category</li>\r\n 	<li>bug fix: custom fields not imported to all product variations</li>\r\n 	<li>bug fix: stock status not set to outofstock when stock value set to 0 for some product variation imports</li>\r\n 	<li>bug fix: \\\'Stock Quantity\\\' field not visible for some product variation imports</li>\r\n 	<li>bug fix: unable to set \\\'Catalog visibility\\\' to \\\'Search results only\\\' for External/Affiliate products</li>\r\n 	<li>bug fix: unable to import additional variation images for some product variation imports</li>\r\n 	<li>bug fix: variable products not imported as simple products when only one variation is imported</li>\r\n</ul>\r\n<h4>2.3.9</h4>\r\n<ul>\r\n 	<li>bug fix: make product simple options when missing variation deleted</li>\r\n 	<li>bug fix: set missing records out of stock for link all variations</li>\r\n 	<li>bug fix: matching linked products</li>\r\n 	<li>bug fix: link all variations - set custom fields for missing records</li>\r\n 	<li>bug fix: setting order tax items via xpath</li>\r\n</ul>\r\n<h4>2.3.9</h4>\r\n<ul>\r\n 	<li>bug fix: make product simple options when missing variation deleted</li>\r\n 	<li>bug fix: set missing records out of stock for link all variations</li>\r\n 	<li>bug fix: matching linked products</li>\r\n 	<li>bug fix: link all variations - set custom fields for missing records</li>\r\n 	<li>bug fix: setting order tax items via xpath</li>\r\n</ul>\r\n<h4>2.3.8</h4>\r\n<ul>\r\n 	<li>improvement: added new filter wp_all_import_recount_terms_after_import</li>\r\n 	<li>improvement: Allow add variations as linked products</li>\r\n 	<li>bug fix: compatibility with woo commerce 2.6</li>\r\n 	<li>bug fix: error on activation without WP All Import</li>\r\n 	<li>bug fix: grouping variable products</li>\r\n 	<li>bug fix: Set parent product outofstock if all variations are outofstock</li>\r\n 	<li>bug fix: import stock status for 5th type of import variable products</li>\r\n 	<li>bug fix: do not update stock_status if _stock is not set to update</li>\r\n</ul>\r\n<h4>2.3.7</h4>\r\n<ul>\r\n 	<li>improvement: added \\\'WooCommerce Advanced Options\\\' to re-import section</li>\r\n 	<li>bug fix: variations title</li>\r\n 	<li>bug fix: import first variation image</li>\r\n 	<li>bug fix: send order emails after custom fields were imported</li>\r\n 	<li>bug fix: updating featured product status</li>\r\n 	<li>bug fix: WPML &amp; link all variations option conflict</li>\r\n 	<li>bug fix: add _price field for each variation</li>\r\n 	<li>bug fix: terms re-count</li>\r\n</ul>\r\n<h4>2.3.6</h4>\r\n<ul>\r\n 	<li>improvement: new option \\\'Parent SKU\\\' for variable products types 2 &amp; 4</li>\r\n 	<li>improvement: new action wp_all_import_make_product_simple</li>\r\n 	<li>bug fix: import _order_tax</li>\r\n 	<li>bug fix: detecting duplicate SKUs</li>\r\n 	<li>bug fix: import product visibility WC 3.0</li>\r\n 	<li>bug fix: stock threshold</li>\r\n 	<li>bug fix: title for first variation</li>\r\n 	<li>bug fix: import non latin attributes</li>\r\n</ul>\r\n<h4>2.3.5</h4>\r\n<ul>\r\n 	<li>improvement: add japanese translations</li>\r\n 	<li>improvement: compatibility with WC 3.0</li>\r\n 	<li>bug fix: import _tax_class</li>\r\n 	<li>bug fix: remove orphaned attributes relationships</li>\r\n 	<li>bug fix: import order taxes</li>\r\n</ul>\r\n<h4>2.3.4</h4>\r\n<ul>\r\n 	<li>bug fix: import reserved attributes</li>\r\n 	<li>bug fix: updating product gallery</li>\r\n 	<li>bug fix: WooCommerce reports when importing orders</li>\r\n</ul>\r\n<h4>2.3.3</h4>\r\n<ul>\r\n 	<li>improvement: compatibility PHP 7.x</li>\r\n 	<li>improvement: new filter \\\'wp_all_import_variation_taxonomies\\\' to control variation taxonomies</li>\r\n</ul>\r\n<h4>2.3.2</h4>\r\n<ul>\r\n 	<li>improvement: customer matching in order imports</li>\r\n 	<li>improvement: added ACF to re-import options</li>\r\n 	<li>bug fix: term recount for 5th type of import variable products</li>\r\n 	<li>bug fix: import shipping class for 5th type of variable products</li>\r\n 	<li>bug fix: re-creation variations ( link all variations option )</li>\r\n 	<li>bug fix: confirm import screen for order manual record matching</li>\r\n</ul>\r\n<h4>2.3.1</h4>\r\n<ul>\r\n 	<li>improvement: added custom fields section to import options when importing Orders</li>\r\n 	<li>bug fix: conflict between updating Product Type &amp; \\\'Create products with no variations as simple products\\\' option</li>\r\n 	<li>bug fix: \\\'create products with no variations as simple products\\\' option for variable product when variations presented as child XML nodes</li>\r\n</ul>\r\n<h4>2.3.0</h4>\r\n<ul>\r\n 	<li>added order imports</li>\r\n 	<li>fixed conflict between \\\'Delete posts that are no longer present in your file\\\' &amp; \\\'Link All Variations\\\' option</li>\r\n 	<li>fixed ucwords attributes names</li>\r\n 	<li>fixed import attributes which are not in variations</li>\r\n 	<li>fixed tooltips &amp; css for woo 2.6 compatibility</li>\r\n</ul>\r\n<h4>2.2.9</h4>\r\n<ul>\r\n 	<li>added \\\'Allow backorders?\\\' option for variations as child XML elements</li>\r\n 	<li>do not delete missing parent product if there is no parent in import file</li>\r\n 	<li>fixed updating stock qty even when manage stock update disabled</li>\r\n</ul>\r\n<h4>2.2.8</h4>\r\n<ul>\r\n 	<li>fixed compatibility with WPML ( import multilingual attributes )</li>\r\n 	<li>fixed import attributes with \\\"Link All Variations\\\" options enabled</li>\r\n 	<li>fixed importing custom fields into product variations</li>\r\n 	<li>added possibility to import up &amp; cross sells by product SKU, ID, Title</li>\r\n</ul>\r\n<h4>2.2.7</h4>\r\n<ul>\r\n 	<li>fixed showing simple products on frontend</li>\r\n 	<li>import variation images from local folder ( variations presentes as child XML nodes )</li>\r\n</ul>\r\n<h4>2.2.6</h4>\r\n<ul>\r\n 	<li>variable product manual matching speed up</li>\r\n 	<li>do not associate variations with categories &amp; tags</li>\r\n 	<li>added _product_version meta key &amp; updated .po files</li>\r\n</ul>\r\n<h4>2.2.5</h4>\r\n<ul>\r\n 	<li>fixed updating \\\'Variation Enabled\\\' field</li>\r\n 	<li>fixed import variation image</li>\r\n 	<li>fixed set first variation as default</li>\r\n 	<li>fixed update products data ( manual matching by _sku )</li>\r\n 	<li>fixed compatibility with WPAI free edition</li>\r\n 	<li>added \\\'product_type_selector\\\' filter</li>\r\n 	<li>added es_ES translation</li>\r\n</ul>\r\n<h4>2.2.3</h4>\r\n<ul>\r\n 	<li>fixed importing custom fields to variations</li>\r\n</ul>\r\n<h4>2.2.2</h4>\r\n<ul>\r\n 	<li>fixed \\\'Create products with no variations as simple products\\\' option</li>\r\n</ul>\r\n<h4>2.2.1</h4>\r\n<ul>\r\n 	<li>fixed conflict between options [update only these custom fields &amp; update only these attributes]</li>\r\n 	<li>fixed \\\'create new records\\\' for import variable products when manual record matching choosen</li>\r\n 	<li>fixed do not set variations to draft</li>\r\n 	<li>fixed import shipping class for external products</li>\r\n 	<li>added feature to dynamically set attribute options</li>\r\n 	<li>added new option \\\"Convert decimal separator to a period\\\"</li>\r\n</ul>\r\n<h4>2.2.0</h4>\r\n<ul>\r\n 	<li>fixed adjust prices for variation in case when variations presented as XML child elements</li>\r\n 	<li>fixed import _stock_status for parent products in cases: link all variation &amp; variations presented as child XML elements</li>\r\n 	<li>added Variation Description field</li>\r\n 	<li>added auto create shipping classes</li>\r\n 	<li>removed the option to use nested child elements for variable product when importing into Existing Items</li>\r\n 	<li>removed \\\'Virtual\\\' and \\\'Downloadable\\\' checkboxes</li>\r\n 	<li>hide \\\'Downloadable\\\' settings if product not downloadable</li>\r\n</ul>\r\n<h4>2.1.7</h4>\r\n<ul>\r\n 	<li>fixed set default attributes for \\\'link all variations\\\' option</li>\r\n 	<li>fixed import total_sales</li>\r\n 	<li>fixed changelog</li>\r\n</ul>\r\n<h4>2.1.6</h4>\r\n<ul>\r\n 	<li>fixed import total_sales</li>\r\n</ul>\r\n<h4>2.1.5</h4>\r\n<ul>\r\n 	<li>fixed import shipping class</li>\r\n</ul>\r\n<h4>2.1.3</h4>\r\n<ul>\r\n 	<li>fixed import stock status for negative qty</li>\r\n 	<li>fixed import shipping class when their slugs presented as numeric values</li>\r\n</ul>\r\n<h4>2.1.2</h4>\r\n<ul>\r\n 	<li>fixed import stock status for variable products</li>\r\n</ul>\r\n<h4>2.1.1</h4>\r\n<ul>\r\n 	<li>fixed import stock status</li>\r\n</ul>\r\n<h4>2.1.0</h4>\r\n<ul>\r\n 	<li>added new option \\\'save variation image to the gallery\\\'</li>\r\n 	<li>fixed import stock status for variable products</li>\r\n</ul>\r\n<h4>2.0.9</h4>\r\n<ul>\r\n 	<li>fixed stock status out of stock for external products</li>\r\n</ul>\r\n<h4>2.0.8</h4>\r\n<ul>\r\n 	<li>rename disallowed terms</li>\r\n 	<li>fixed auto detect stock status</li>\r\n 	<li>fixed conflict with woo commerce layered nav widget</li>\r\n 	<li>added new action wp_all_import_variable_product_imported</li>\r\n</ul>\r\n<h4>2.0.7</h4>\r\n<ul>\r\n 	<li>fixed importing default selections</li>\r\n 	<li>optimize import variable products</li>\r\n 	<li>improve security</li>\r\n</ul>\r\n<h4>2.0.6</h4>\r\n<ul>\r\n 	<li>fixed import featured image for first variation</li>\r\n 	<li>fixed manual matching for variations</li>\r\n 	<li>fixed css styles</li>\r\n</ul>\r\n<h4>2.0.5</h4>\r\n<ul>\r\n 	<li>fixed import shipping class via xpath</li>\r\n</ul>\r\n<h4>2.0.4</h4>\r\n<ul>\r\n 	<li>added manage stock options for variation level</li>\r\n</ul>\r\n<h4>2.0.3</h4>\r\n<ul>\r\n 	<li>fixed import variable downloadable products</li>\r\n</ul>\r\n<h4>2.0.2</h4>\r\n<ul>\r\n 	<li>fixed bug with updating data for variations</li>\r\n</ul>\r\n<h4>2.0.1</h4>\r\n<ul>\r\n 	<li>fixed import empty prices</li>\r\n 	<li>fixed update only these product attributes option</li>\r\n 	<li>fixed session bug on cron execution</li>\r\n 	<li>fixed rounding prices when \\\"Attempt to convert incorrectly formatted prices to WooCommerce format\\\" option is disabled</li>\r\n 	<li>changed main plugin file name</li>\r\n</ul>\r\n<h4>2.0.0</h4>\r\n<ul>\r\n 	<li>New WooCommerce add-on for WP All Import 4.0. Don\\\'t upgrade without installing WP All Import 4.0 first. Learn more about WP All Import 4.0 at http://www.wpallimport.com/2014/11/introducing-wp-all-import-4-0/</li>\r\n</ul>\r\n<h4>1.3.5</h4>\r\n<ul>\r\n 	<li>fixed set shipping class to empty value</li>\r\n 	<li>fixed option \\\"create product as simple when no variations\\\"</li>\r\n 	<li>fixed tax classes drop down</li>\r\n 	<li>fixed import attributes</li>\r\n 	<li>added new option \\\"set _stock value for parent product</li>\r\n</ul>\r\n<h4>1.3.4</h4>\r\n<ul>\r\n 	<li>fixed saving shipping class option</li>\r\n 	<li>fixed import product attributes</li>\r\n 	<li>fixed import variable products: updating custom fields in case when fourth variable import type is choosen</li>\r\n 	<li>added new option \\\"combine SKU from variation and parent product {ParentSKU}-{Variation SKU}\\\" for variable products in case when variations presented as child elements</li>\r\n</ul>\r\n<h4>1.3.3</h4>\r\n<ul>\r\n 	<li>fixed saving attribute values with specialcharacters like ö, ú, ...</li>\r\n 	<li>fixed woocommerce currency</li>\r\n 	<li>fixed updating shipping class</li>\r\n 	<li>fixed updating tax class</li>\r\n 	<li>fixed wp_generate_attachment_metadata() error for variations images</li>\r\n 	<li>fixed session warnings</li>\r\n 	<li>replaced deprecated function …clear_product_transients() to wc_delete_product_transients()</li>\r\n 	<li>fixed: load import options</li>\r\n</ul>\r\n<h4>1.3.2</h4>\r\n<ul>\r\n 	<li>fixed: import attributes names with xpath</li>\r\n 	<li>fixed: import attributes with encoded symbols</li>\r\n 	<li>fixed: import up-sells &amp; cross-sells products</li>\r\n 	<li>fixed: updating stock Qty for variations</li>\r\n 	<li>fixed: use parent xpath feature for import variable products (case #5</li>\r\n</ul>\r\n<h4>1.3.1</h4>\r\n<ul>\r\n 	<li>updated: matching grouping product</li>\r\n 	<li>added: option \\\"is update product type\\\"</li>\r\n 	<li>fixed: variations tree</li>\r\n 	<li>fixed: import zero value in stock qty for variation</li>\r\n</ul>\r\n<h4>1.3.0</h4>\r\n<ul>\r\n 	<li>fixed: automatic fixing of improperly formatted prices</li>\r\n 	<li>fixed: manual record matching for variations</li>\r\n 	<li>fixed: php notices</li>\r\n</ul>\r\n<h4>1.2.9</h4>\r\n<ul>\r\n 	<li>fixed import zero value for stock quantity for variations</li>\r\n 	<li>fixed import attributes for variable products (case 5)</li>\r\n 	<li>added \\\"Disable automatic fixing of improperly formatted prices.\\\" option</li>\r\n 	<li>fixed import empty sale price</li>\r\n 	<li>fixed setup stock status with xpath</li>\r\n 	<li>fixed import shipping class for variations</li>\r\n</ul>\r\n<h4>1.2.8</h4>\r\n<ul>\r\n 	<li>added: download type option</li>\r\n 	<li>added: file names option</li>\r\n 	<li>fixed: import attributes</li>\r\n 	<li>fixed: attributes duplication</li>\r\n 	<li>fixed: grouping products</li>\r\n</ul>\r\n<h4>1.2.7</h4>\r\n<ul>\r\n 	<li>fixed: price conversation</li>\r\n</ul>\r\n<h4>1.2.5</h4>\r\n<ul>\r\n 	<li>added: xpath case for grouping products</li>\r\n 	<li>updated: filter prices</li>\r\n 	<li>updated: css for compatibility with wocommerce 2.1</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:76:\"http://ps.w.org/woocommerce-xml-csv-product-import/assets/banner-772x250.png\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:719:\"<br/><br/>This update includes an improved UI for WooCommerce order imports.<br/><br/>While it is compatible with existing order imports, some import configurations will result in different behavior. <b>We highly recommend that you test existing WooCommerce order imports before running them in production to ensure everything is imported as expected.</b><br/><br/>We are available at <a target=\"_blank\" href=\"https://www.wpallimport.com/support/\">https://www.wpallimport.com/support/</a> if you encounter any issues. You can also download the previous version of the WooCommerce Import Add-On at <a target=\"_blank\" href=\"https://www.wpallimport.com/portal/downloads/\">https://www.wpallimport.com/portal/downloads/</a>.\";s:19:\"update_note_version\";s:5:\"3.3.7\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:8:\"Success.\";s:7:\"package\";s:77:\"https://update.wpallimport.com/serve_package?package_id=2707184&version=4.0.0\";s:13:\"download_link\";s:77:\"https://update.wpallimport.com/serve_package?package_id=2707184&version=4.0.0\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}','no'),(300032,'wpai-woocommerce-add-on_timeout_080fdc82a3a678dab2d4f10c27ddeb79','1704238323','yes'),(300064,'_site_transient_timeout_browser_fffb9fd301cc97212fa5fca2f6afeb97','1704841193','no'),(300065,'_site_transient_browser_fffb9fd301cc97212fa5fca2f6afeb97','a:10:{s:4:\"name\";s:5:\"Opera\";s:7:\"version\";s:9:\"105.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:22:\"https://www.opera.com/\";s:7:\"img_src\";s:42:\"http://s.w.org/images/browsers/opera.png?1\";s:11:\"img_src_ssl\";s:43:\"https://s.w.org/images/browsers/opera.png?1\";s:15:\"current_version\";s:5:\"12.18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(300066,'_transient_timeout_wc_report_orders_stats_c71f5719b87c69dd4de5c51c5b94f432','1704841202','no'),(300067,'_transient_wc_report_orders_stats_c71f5719b87c69dd4de5c51c5b94f432','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:7:{i:0;a:6:{s:8:\"interval\";s:10:\"2023-12-28\";s:10:\"date_start\";s:19:\"2023-12-28 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-27 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-28 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-28 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2023-12-29\";s:10:\"date_start\";s:19:\"2023-12-29 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-28 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-29 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-29 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2023-12-30\";s:10:\"date_start\";s:19:\"2023-12-30 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-29 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-30 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-30 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2023-12-31\";s:10:\"date_start\";s:19:\"2023-12-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-30 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-31 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-31 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2024-01-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-01 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2024-01-02\";s:10:\"date_start\";s:19:\"2024-01-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-01 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-02 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2024-01-03\";s:10:\"date_start\";s:19:\"2024-01-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-02 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-03 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:7;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(300116,'rank_math_review_notice_added','1','no'),(300154,'_transient_timeout_wpr_dynamic_lists_delayjs','1704845801','no'),(300155,'_transient_wpr_dynamic_lists_delayjs','O:8:\"stdClass\":3:{s:7:\"plugins\";O:8:\"stdClass\":200:{s:36:\"ffc21030-519a-4853-8cea-49f959e82731\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:def67a2c1ddd6df2353e4772b6fd4e5b\";s:5:\"title\";s:51:\"Additional Variation Images Gallery for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:45:\"/woo-variation-gallery/assets/js/slick.min.js\";i:3;s:48:\"/woo-variation-gallery/assets/js/frontend.min.js\";i:4;s:33:\"/wp-includes/js/underscore.min.js\";i:5;s:23:\"variation_custom_fields\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:47:\"woo-variation-gallery/woo-variation-gallery.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"0e7dc253-acd0-4421-877f-a7101d848717\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:4b82cc7379d46c6272f5d556bb264eec\";s:5:\"title\";s:12:\"Advanced Ads\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:16:\"/uploads/(.*).js\";i:3;s:18:\"advanced_ads_ready\";i:4;s:14:\"advadsCfpQueue\";i:5;s:11:\"adsbygoogle\";i:6;s:16:\"adservice.google\";i:7;s:17:\"/advanced-ads(.*)\";i:8;s:12:\"advads_items\";i:9;s:19:\"advads_tracking_ads\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"advanced-ads/advanced-ads.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"a4d5c058-9120-47ee-977c-f30f83fb1a75\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:a076fbb79772f497349a76ee74a7f708\";s:5:\"title\";s:52:\"All-in-one Compliance for GDPR / CCPA Cookie Consent\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:13:\"iubenda_cs.js\";i:1;s:8:\"var _iub\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:55:\"iubenda-cookie-law-solution/iubenda_cookie_solution.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"79a5082f-821a-4a4b-a0e3-caaf22cf3f75\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:9bdceaa1bb89135730a3b2aa4db94c22\";s:5:\"title\";s:17:\"AMO Team Showcase\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:40:\"/amo-team-showcase/public/js/wookmark.js\";i:3;s:56:\"/amo-team-showcase/public/js/amo-team-showcase-public.js\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:11:\"amoTeamVars\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:39:\"amo-team-showcase/amo-team-showcase.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"90c7fd90-3adf-4cb7-8a92-845bdbd95d27\";O:8:\"stdClass\":8:{s:5:\"title\";s:46:\"Anti-Spam by CleanTalk - Prevent console error\";s:9:\"condition\";s:36:\"cleantalk-spam-protect/cleantalk.php\";s:10:\"exclusions\";a:2:{i:0;s:17:\"ctPublicFunctions\";i:1;s:8:\"ctPublic\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ed2ade77cd44e21b1703b093c002a903\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1699370420;}s:36:\"1d058cae-4460-4354-bab3-a96445650bd8\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:b739df50f3f5bf400075f17dca652517\";s:5:\"title\";s:22:\"AnyWhere Elementor Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:38:\"/anywhere-elementor-pro/build/index.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:49:\"anywhere-elementor-pro/anywhere-elementor-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"8a1614c7-55b1-4b6d-88e5-6e8ddc630dae\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:46741e77eaf4d13a0c80be6b86379758\";s:5:\"title\";s:17:\"Astra - Pro Addon\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:32:\"/astra-addon/astra-addon-(.*).js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"astra-addon/astra-addon.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"37d96403-f9ea-4481-b2f8-374d7c93e61a\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:ccd87807930a1856717fd276c336db9a\";s:5:\"title\";s:14:\"Beaver Builder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/uploads/bb-plugin/\";i:3;s:25:\"/bb-plugin/js/yui3.min.js\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:33:\"/bb-plugin/js/fl-slideshow.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f83dbf3b-783e-4ef9-9b18-8a469ca7102d\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Bloom\";s:9:\"condition\";s:15:\"bloom/bloom.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:7:\"/bloom/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e57cdfbc09f4e0f7445c279d9f580bdd\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1685189070;}s:36:\"135aadd2-cd4a-44ae-8dcf-801f3f2316c0\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:055ef01accbad6378e3d1a4965600964\";s:5:\"title\";s:6:\"Booked\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:8:\"/booked/\";i:1;s:31:\"/js/jquery/ui/datepicker.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:17:\"booked/booked.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"ddfee9b0-e5a9-4d3f-8c21-b999cbb61c33\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:492f9b0d55f3bf07c68e915ea1dfb72a\";s:5:\"title\";s:6:\"Bookly\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:53:\"/bookly-responsive-appointment-booking-tool/frontend/\";i:3;s:13:\"window.bookly\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:51:\"bookly-responsive-appointment-booking-tool/main.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"7a013fd6-0881-4dbe-8e93-33edefe7f717\";O:8:\"stdClass\":8:{s:5:\"title\";s:14:\"Borlabs Cookie\";s:9:\"condition\";s:33:\"borlabs-cookie/borlabs-cookie.php\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"borlabsCookieConfig\";i:3;s:21:\"borlabs-cookie.min.js\";i:4;s:27:\"borlabsCookieContentBlocker\";i:5;s:16:\"BorlabsCookieBox\";i:6;s:12:\"allFbWidgets\";i:7;s:34:\"/borlabs-cookie/assets/javascript/\";i:8;s:21:\"borlabs-cookie-config\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e1ec2daca513de476bd3dae79366e9ab\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1702497952;}s:36:\"3999e680-4049-4494-945c-768cecc1a2c4\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:43019d66af7b41e65bb602c01e10c6a0\";s:5:\"title\";s:5:\"Brizy\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:58:\"/brizy/public/editor-build/(.*)-wp/editor/js/group-(.*).js\";i:3;s:55:\"/brizy/public/editor-build/(.*)-wp/editor/js/preview.js\";i:4;s:10:\"Brizy.emit\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:15:\"brizy/brizy.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"af4d9357-3def-42a1-86b7-419553444b4d\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5c317f9f244597d8f236ecb7d8e41752\";s:5:\"title\";s:52:\"Carousel Upsells and Related Product for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:76:\"/carousel-upsells-and-related-product-for-woocommerce/assets/js/glide.min.js\";i:1;s:22:\"carusel_poduct_related\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:91:\"carousel-upsells-and-related-product-for-woocommerce/ffxf-woo-glide-related-and-upsells.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"1d866d90-5451-43ba-a4d1-75b64f9235e1\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0a3a29603ebac8fe0808f64f5c8edbb2\";s:5:\"title\";s:26:\"clickskeks.at Cookiebanner\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:10:\"clickskeks\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:20:\"clickskeks/index.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c09695cc-2387-4416-881a-c0b392188a26\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Complianz\";s:9:\"condition\";s:33:\"complianz-gdpr/complianz-gpdr.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"complianz\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:a766f95208154cd69a3e15150a42f325\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1685188788;}s:36:\"7e551e3b-fbe4-4235-87a9-b476bc9e2020\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:949b1b923d51d10a2fb67a2a39d166b3\";s:5:\"title\";s:11:\"Content Egg\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:42:\"/content-egg/res/js/morrisjs/morris.min.js\";i:3;s:43:\"/content-egg/res/js/morrisjs/raphael.min.js\";i:4;s:11:\"Morris.Area\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"content-egg/content-egg.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"7fbca6c5-9239-4550-a755-6f041f867a57\";O:8:\"stdClass\":8:{s:5:\"title\";s:42:\"Cookie Notice & Compliance for GDPR / CCPA\";s:9:\"condition\";s:31:\"cookie-notice/cookie-notice.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:15:\"/cookie-notice/\";i:3;s:10:\"var cnArgs\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:213d0f883ae27aefb3a7937656bbd11e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681379736;}s:36:\"26722567-fe35-44b5-a5a7-fb0f3a38c3f2\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:1d10ad30bbcf0fd4b26e9625a07abcfc\";s:5:\"title\";s:13:\"Cookiebot CMP\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:21:\"consent.cookiebot.com\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:23:\"cookiebot/cookiebot.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"74110e36-89e5-440d-bec3-7133da3277c2\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:edcf103293ceab711e999d419d038ca1\";s:5:\"title\";s:23:\"Coupon Referral Program\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:25:\"/coupon-referral-program/\";i:3;s:42:\"/wp-includes/js/jquery/ui/draggable.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:51:\"coupon-referral-program/coupon-referral-program.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"ed63e02f-d6c5-481a-bcb9-aae15f72aa21\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:c3e26264dcfd25802805b4fd1a2a449c\";s:5:\"title\";s:29:\"Crisp - Live Chat and Chatbot\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:20:\"CRISP_RUNTIME_CONFIG\";i:3;s:4:\"l.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:15:\"crisp/crisp.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"a8eb622b-279c-4f84-86e0-785e9497add7\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:6e4bf949e12f0bebfefb48f6c316102a\";s:5:\"title\";s:24:\"Custom Twitter Feeds pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:47:\"/custom-twitter-feeds-pro/js/ctf-scripts.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:48:\"custom-twitter-feeds-pro/custom-twitter-feed.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"1624ef15-e25b-406d-bdf9-d4b78d7a59e7\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:1f893b343e72ce55e6c9013fbda172fa\";s:5:\"title\";s:39:\"Customer Reviews for WooCommerce Plugin\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:43:\"/customer-reviews-woocommerce/js/colcade.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:38:\"customer-reviews-woocommerce/ivole.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c15fe3b3-0eaa-48f9-bf04-0e778b1f8c63\";O:8:\"stdClass\":8:{s:5:\"title\";s:14:\"Divi - Supreme\";s:9:\"condition\";s:53:\"supreme-modules-for-divi/supreme-modules-for-divi.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:26:\"/Divi/js/custom.unified.js\";i:5;s:21:\"/js/magnific-popup.js\";i:6;s:8:\"var DIVI\";i:7;s:26:\"/supreme-modules-for-divi/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b5489ae4d8b949f536d6dd2e5b0c1a95\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738701;}s:36:\"dd31451b-989a-4517-b02a-e2c2e2023366\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5caed322df984bbfd3ecb506cf12b688\";s:5:\"title\";s:12:\"Divi Den Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:54:\"/ddpro/build/freddie/js/freddieScriptPageTransition.js\";i:3;s:48:\"/ddpro/build/freddie/js/freddieScriptsHeaders.js\";i:4;s:49:\"/ddpro/build/freddie/js/freddieScriptsContents.js\";i:5;s:40:\"/ddpro/build/freddie/js/gsap/gsap.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:15:\"ddpro/ddpro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"2b006370-cc90-42c1-9656-a30fbfbc91c6\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:402d9b241b04934dd30f32e7ba490e63\";s:5:\"title\";s:11:\"Divi Mobile\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"divi-menu\";i:3;s:6:\"dm_nav\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"divi-mobile/divi-mobile.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"666bbed9-7ce3-457c-ad6e-b5e056d05010\";O:8:\"stdClass\":8:{s:5:\"title\";s:13:\"Divi Overlays\";s:9:\"condition\";s:31:\"divi-overlays/divi-overlays.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:26:\"/Divi/js/custom.unified.js\";i:5;s:8:\"var DIVI\";i:6;s:15:\"/divi-overlays/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1c828c93d87298d2a27c76e13d0880ba\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738664;}s:36:\"42a404af-7792-44be-9baa-565dc3baf25d\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"Divi Pixel\";s:9:\"condition\";s:25:\"divi-pixel/divi-pixel.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:43:\"/divi-pixel/dist/public/js/hamburger.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:dd2494945a487a6cc74d3ab1b2137ccb\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1686859169;}s:36:\"85f5c099-c481-4c38-bbb9-8b76113bdfd5\";O:8:\"stdClass\":8:{s:5:\"title\";s:16:\"Divi Supreme Pro\";s:9:\"condition\";s:61:\"supreme-modules-pro-for-divi/supreme-modules-pro-for-divi.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"elm.style.display\";i:3;s:76:\"/supreme-modules-pro-for-divi/includes/modules/ImageCarousel/frontend.min.js\";i:4;s:60:\"/supreme-modules-pro-for-divi/public/js/swiper-bundle.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3d5f0ae7751702fd1bb490fcf991a334\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1695118162;}s:36:\"0b78d762-c7be-45de-9aae-0c5078ec0619\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:b5fc0101608d0b0627268dc49e3e1f8f\";s:5:\"title\";s:12:\"Divi Toolbox\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:20:\"jQuery(\'.preloader\')\";i:3;s:42:\"/divi-toolbox/assets/js/toolbox-scripts.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"divi-toolbox/divi-toolbox.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"8baba0f8-4449-47d8-a87d-9b6a116e7684\";O:8:\"stdClass\":8:{s:5:\"title\";s:48:\"Dynamic Pricing & Discounts Lite for WooCommerce\";s:9:\"condition\";s:85:\"woo-dynamic-pricing-discounts-lite/dynamic-pricing-discounts-lite-for-woocommerce.php\";s:10:\"exclusions\";a:3:{i:0;s:79:\"/woo-dynamic-pricing-discounts-lite/assets/OwlCarousel/dist/owl.carousel.min.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:185062bf08db42515488e1853d1f4917\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677857247;}s:36:\"0fa129f2-5869-4db7-9bf0-69e4b3549ee2\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:27478327aa44075a86176fad95640d76\";s:5:\"title\";s:39:\"Dynamic Product Gallery for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/woocommerce-dynamic-gallery/\";i:3;s:21:\"a3revWCDynamicGallery\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:62:\"woocommerce-dynamic-gallery/wc_dynamic_gallery_woocommerce.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"9958c6be-2f67-4791-95c3-a7ad96d599c0\";O:8:\"stdClass\":8:{s:5:\"title\";s:47:\"Dynamic Product Gallery Premium for WooCommerce\";s:9:\"condition\";s:66:\"woocommerce-dynamic-gallery-pro/wc_dynamic_gallery_woocommerce.php\";s:10:\"exclusions\";a:5:{i:0;s:55:\"/jquery-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:55:\"/jquery-migrate(.*)(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:2;s:74:\"/woocommerce-dynamic-gallery-pro/assets/js/mygallery/jquery.a3-dgallery.js\";i:3;s:18:\"settings_defaults_\";i:4;s:21:\"a3revWCDynamicGallery\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:11dc02a76019f00422f4ac85f47f5135\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1683208937;}s:36:\"ce26ed21-1be5-481f-80d4-31edfac6d890\";O:8:\"stdClass\":8:{s:5:\"title\";s:43:\"Dynamic.ooo - Dynamic Content for Elementor\";s:9:\"condition\";s:63:\"dynamic-content-for-elementor/dynamic-content-for-elementor.php\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:38:\"/dynamic-content-for-elementor/assets/\";i:8;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:9;s:32:\"/wp-includes/js/dist/i18n.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:d2bd5b348abe016bdc722acce7755062\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1683355024;}s:36:\"6a3161a6-1a6f-457a-a9ee-54b376981927\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:ee1dec033c6481a77fe88de5bef1a02d\";s:5:\"title\";s:22:\"Easy Table of Contents\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:46:\"/easy-table-of-contents/assets/js/front.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:49:\"easy-table-of-contents/easy-table-of-contents.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"25a534a0-2c1f-4cf4-9e19-7941bc032b3a\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:41c8f5f0ab00cb39654aedd783d194e0\";s:5:\"title\";s:29:\"Ecwid Ecommerce Shopping Cart\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:11:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:26:\"/jquery-migrate(.min)?.js \";i:2;s:24:\"app.ecwid.com/script.js \";i:3;s:36:\"/ecwid-shopping-cart/js/frontend.js \";i:4;s:39:\"/ecwid-shopping-cart/js/static-page.js \";i:5;s:21:\"ecwidParamswindow.ec \";i:6;s:14:\"jQuery.mobile \";i:7;s:8:\"xSearch \";i:8;s:14:\"xCategoriesV2 \";i:9;s:16:\"xProductBrowser \";i:10;s:10:\"Ecwid.init\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:43:\"ecwid-shopping-cart/ecwid-shopping-cart.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"40464325-5bae-4a20-bc97-553499e09a73\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Elementor\";s:9:\"condition\";s:23:\"elementor/elementor.php\";s:10:\"exclusions\";a:13:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:28:\"/happy-elementor-addons-pro/\";i:8;s:43:\"/header-footer-elementor/inc/js/frontend.js\";i:9;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:10;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:11;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:12;s:32:\"/wp-includes/js/dist/i18n.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1d15783218a3137bec4ee8df5353e218\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1694425872;}s:36:\"ac86b64c-c80a-4053-894d-6caa8b4fdce8\";O:8:\"stdClass\":8:{s:5:\"title\";s:25:\"Elementor  Loop Carrousel\";s:9:\"condition\";s:23:\"elementor/elementor.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:3;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:4;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:5;s:32:\"/wp-includes/js/dist/i18n.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:0eb8d0bbd1c7ca05ac133ea634f676b7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1694442056;}s:36:\"a8fc9fd1-f6d3-41eb-abe9-ef176de6d7e2\";O:8:\"stdClass\":8:{s:5:\"title\";s:39:\"Elementor - Lazy Load Background Images\";s:9:\"condition\";s:23:\"elementor/elementor.php\";s:10:\"exclusions\";a:1:{i:0;s:19:\"lazyloadRunObserver\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:bf248cb2876558452a566c5dd89262b8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1694453032;}s:36:\"1948aff5-7850-4979-91fa-0ce181484508\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:de658ae6c2d05a5a4a947efecf5e0c16\";s:5:\"title\";s:21:\"Elementor Custom Skin\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:31:\"/ele-custom-skin(.*)/assets/js/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:35:\"ele-custom-skin/ele-custom-skin.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"25708299-c596-4416-8ad8-740aee0f2752\";O:8:\"stdClass\":8:{s:5:\"title\";s:13:\"Elementor Pro\";s:9:\"condition\";s:31:\"elementor-pro/elementor-pro.php\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:28:\"/happy-elementor-addons-pro/\";i:8;s:43:\"/header-footer-elementor/inc/js/frontend.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:030ad23e3851ed7adfa7b9b6c13cf5a6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679490021;}s:36:\"f34dd874-4b34-41e6-a31c-ece3c1efbffc\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:305581ad4294a30eeb1247982f626005\";s:5:\"title\";s:26:\"Elementor Pro - SmartMenus\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:61:\"/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js\";i:3;s:59:\"/elementor-pro/assets/js/preloaded-elements-handlers.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"elementor-pro/elementor-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"111cc8b2-0be9-438b-9aa3-7f1e301a5697\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5ae9f5d99224d5ebc7d0c0bbf5b99787\";s:5:\"title\";s:26:\"Elementor Pro - User Cache\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:33:\"/wp-includes/js/underscore.min.js\";i:1;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:2;s:31:\"/wp-includes/js/backbone.min.js\";i:3;s:23:\"elementorAdminBarConfig\";i:4;s:21:\"elementorCommonConfig\";i:5;s:21:\"elementorWebCliConfig\";i:6;s:23:\"elementorDevToolsConfig\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"elementor-pro/elementor-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c1713bf8-e0c3-4cb5-8b3f-841b06aa87ed\";O:8:\"stdClass\":8:{s:5:\"title\";s:27:\"ElementsKit Lite - Megamenu\";s:9:\"condition\";s:37:\"elementskit-lite/elementskit-lite.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:17:\"/elementskit(.*)/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b91fed2fc4478dbb7067742c1ee4691b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1683270249;}s:36:\"706ff35d-8e33-4b04-a986-346faff704e9\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:417192424139d89fb2a5b1ee1f2b9613\";s:5:\"title\";s:30:\"Essential Addons for Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:55:\"/essential-addons(-for)?-elementor(-lite)?/.*(.min)?.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"b38556dc-2bc4-430f-9c55-7191cf7773db\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:057757d0593ad9d2dc58124f0077a5df\";s:5:\"title\";s:34:\"Essential Addons for Elementor Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:55:\"/essential-addons(-for)?-elementor(-lite)?/.*(.min)?.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:56:\"essential-addons-elementor/essential_adons_elementor.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"719b988f-0d60-40c2-ba46-88f943119cb1\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:c8e6c490f6438f566ade600c33531a85\";s:5:\"title\";s:14:\"Essential Grid\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:16:\"/essential-grid/\";i:3;s:15:\"lightboxOptions\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:33:\"essential-grid/essential-grid.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"47d3d2ab-160d-4b07-ac25-8250b9e6a951\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:dafd19fa48a1fef890dc4348052fcb75\";s:5:\"title\";s:12:\"EventON Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:28:\"/eventon-lite/assets/js/(.*)\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:24:\"eventon-lite/eventon.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"219968d7-cf1f-4ee0-917a-db35dcc93a3e\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:49ff465628fc3cb6d7f23ff81d9b8339\";s:5:\"title\";s:7:\"FacetWP\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:36:\"/facetwp/assets/js/dist/front.min.js\";i:1;s:11:\"window.FWP_\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:17:\"facetwp/index.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"acce5701-5917-48d5-83ab-3e626aa420c5\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:78a1c88a56fa957c802074b6418c6fac\";s:5:\"title\";s:21:\"FacetWP - Flyout menu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:34:\"/facetwp-flyout/assets/js/front.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:33:\"facetwp-flyout/facetwp-flyout.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f2a5b95f-1a22-46d2-8b72-42a53e46ae3f\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5d7555892a3a9968fde3fa3a335fc3d8\";s:5:\"title\";s:40:\"FiboSearch - Ajax Search for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:32:\"/wp-includes/js/jquery/jquery.js\";i:1;s:40:\"/wp-includes/js/jquery/jquery-migrate.js\";i:2;s:56:\"/ajax-search-for-woocommerce-premium/assets/js/search.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:59:\"ajax-search-for-woocommerce/ajax-search-for-woocommerce.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"7d1404e9-be76-449c-87aa-919557abe82d\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:ad46179e8b0584abaf52056b846da227\";s:5:\"title\";s:9:\"FlexBlock\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:41:\"/flo-flex-builder/dist/flex-public.min.js\";i:2;s:9:\"flexDebug\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:37:\"flo-flex-builder/flo-flex-builder.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"b9c6a2dc-b226-4e2c-b85e-29ee55b8f751\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:567a2b15db30ef6bd4904e4317139aac\";s:5:\"title\";s:12:\"Fluent Forms\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:29:\"/fluentform/public/js/(.*).js\";i:2;s:32:\"/fluentformpro/public/js/(.*).js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"fluentform/fluentform.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"10874f8a-2855-4e80-bc46-e484589b76a8\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:e78c153103f698b2b34892332d6b3b62\";s:5:\"title\";s:13:\"Flying Images\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:12:\"flyingImages\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"nazy-load/flying-images.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"53958499-dacd-41d6-93bc-1534fe7d9eda\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5a0e40a6c5783856893b803189de1404\";s:5:\"title\";s:18:\"FooGallery Premium\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:57:\"/plugins/foobox-image-lightbox/free/js/foobox.free.min.js\";i:3;s:88:\"/plugins/foogallery-premium/pro/extensions/default-templates/shared/js/foogallery.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:33:\"foogallery-premium/foogallery.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"7870d704-2024-4622-838c-fad37d5c6753\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:ebb5efb57b19ae60e734e456ca2df3f8\";s:5:\"title\";s:16:\"Formidable Forms\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:7:\"frmSigs\";i:3;s:45:\"/formidable-signature/js/frm.signature.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"formidable/formidable.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"3f24f9b3-e59e-400f-a784-999f93f60fab\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0b08523445b8869a67ca40e777704692\";s:5:\"title\";s:10:\"Forminator\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:9:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:15:\"forminatorFront\";i:3;s:42:\"/forminator/build/front/front.multi.min.js\";i:4;s:52:\"/forminator/assets/js/library/jquery.validate.min.js\";i:5;s:58:\"/forminator/assets/forminator-ui/js/forminator-form.min.js\";i:6;s:55:\"/forminator/assets/forminator-ui/js/select2.full.min.js\";i:7;s:43:\"/wp-includes/js/jquery/ui/datepicker.min.js\";i:8;s:41:\"/wp-includes/js/dist/vendor/moment.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"forminator/forminator.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"3a600ded-3454-48fb-9811-46afa2ab3c05\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5759bf0d47ac3457485314b381a9b528\";s:5:\"title\";s:22:\"GDPR Cookie Compliance\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:44:\"/gdpr-cookie-compliance/dist/scripts/main.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:37:\"gdpr-cookie-compliance/moove-gdpr.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"e21aaa5e-7354-471d-ab86-85f99f48830c\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:ffb40036ab0583218561de7c28c6bd9b\";s:5:\"title\";s:19:\"GDPR Cookie Consent\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:36:\"/public/js/cookie-law-info-public.js\";i:3;s:8:\"Cli_Data\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:49:\"webtoffee-gdpr-cookie-consent/cookie-law-info.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c11ca4ea-1a23-49ee-9a6b-1e549de50ea2\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:3877953c5ec1e66db92ad844ae8ebafc\";s:5:\"title\";s:25:\"Getwid - Gutenberg Blocks\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:37:\"/wp-includes/js/jquery/ui/tabs.min.js\";i:3;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:17:\"getwid/getwid.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"3773bb33-b168-4f68-9963-512da24ac4da\";O:8:\"stdClass\":8:{s:5:\"title\";s:15:\"GoodLayers Core\";s:9:\"condition\";s:35:\"goodlayers-core/goodlayers-core.php\";s:10:\"exclusions\";a:4:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:26:\"/jquery-migrate(.min)?.js \";i:2;s:35:\"/goodlayers-core/plugins/script.js \";i:3;s:43:\"/goodlayers-core/include/js/page-builder.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5f124509a56ca2e0644246919ec70434\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677854322;}s:36:\"2adabe9b-6e03-4a67-959f-492813d40f69\";O:8:\"stdClass\":8:{s:5:\"title\";s:38:\"Google Tag Manager for WooCommerce PRO\";s:9:\"condition\";s:47:\"gtm-ecommerce-woo-pro/gtm-ecommerce-woo-pro.php\";s:10:\"exclusions\";a:1:{i:0;s:54:\"/gtm-ecommerce-woo-pro/assets/gtm-ecommerce-woo-pro.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e54fd4313007b6fedf8ab4df0e05277a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1691218549;}s:36:\"7bf261ac-89d4-492f-8a3d-1c5809b9579a\";O:8:\"stdClass\":8:{s:5:\"title\";s:13:\"Gravity Forms\";s:9:\"condition\";s:29:\"gravityforms/gravityforms.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:14:\"/gravityforms/\";i:2;s:5:\"gform\";i:3;s:9:\"recaptcha\";i:4;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:5;s:40:\"/wp-includes/js/plupload/plupload.min.js\";i:6;s:37:\"/wp-includes/js/plupload/moxie.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:7a1c1606d094f6bff83c0ee155908367\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1694457903;}s:36:\"12340193-5c35-4b0d-b0bc-bea690cf1cae\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:2f3112dd98c39aeb6bde618c9026a29f\";s:5:\"title\";s:11:\"Green Forms\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:13:\"leform.min.js\";i:2;s:24:\"leform_customjs_handlers\";i:3;s:15:\"leform_ajax_url\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"green-forms/green-forms.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"4d20b427-47cf-4cdf-91c7-ff53602d3b2a\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0eb769dddc58f998e913345841b1d0b3\";s:5:\"title\";s:6:\"GTM4WP\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:9:\"dataLayer\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"a2b3c237-728c-49d6-882a-e3885444e9b4\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:3b085ccda851ccf129d9506462f0cd65\";s:5:\"title\";s:10:\"GTranslate\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:20:\"translate.google.com\";i:1;s:26:\"googleTranslateElementInit\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"gtranslate/gtranslate.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"40cd9336-e73f-4a61-a7f6-27ec1ca6892c\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:e1f17c1eac230219e6fec3ac07406a0d\";s:5:\"title\";s:5:\"HBook\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:7:\"/hbook/\";i:3;s:20:\"hb_booking_form_data\";i:4;s:11:\"hb_max_date\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:15:\"hbook/hbook.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"192224c7-df72-4e3d-8f13-3206ac5b2e90\";O:8:\"stdClass\":8:{s:5:\"title\";s:37:\"Helper - OpenAI Chatbot for WordPress\";s:9:\"condition\";s:17:\"/helper/index.php\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:24:\"/helper/js/helper.min.js\";i:2;s:9:\"mdpHelper\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:07311d992a8a9d6af91e4766d2cb9ac9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1691599768;}s:36:\"99cfbb2e-5678-42c2-928f-5cb09d7e43da\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:269c5766fba124a838ac012a4b5a1a13\";s:5:\"title\";s:39:\"HUSKY - Products Filter for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/woocommerce-products-filter/(.*)\";i:3;s:4:\"woof\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:37:\"woocommerce-products-filter/index.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"3a964eac-4aeb-49a7-9fd6-4c31b2645dee\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:d457acfec0f86aac6733f1446f4fc94f\";s:5:\"title\";s:18:\"Instagram Feed Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:41:\"/instagram-feed-pro/js/sbi-scripts.min.js\";i:3;s:23:\"sb_instagram_js_options\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:37:\"instagram-feed-pro/instagram-feed.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"8f9f4788-1b8d-468b-b291-1fcbd48618b9\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:513b0c0ec8e12130af9b4bbbb17d7275\";s:5:\"title\";s:20:\"Interactive Geo Maps\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:66:\"/interactive-geo-maps-premium/assets/public/map-service/app.min.js\";i:3;s:54:\"/interactive-geo-maps/assets/public/map-service/app.js\";i:4;s:9:\"iMapsData\";i:5;s:21:\"cdn.amcharts.com/lib/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:45:\"interactive-geo-maps/interactive-geo-maps.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"cf650ca3-afa0-4a13-9e4f-f7cca19abac6\";O:8:\"stdClass\":8:{s:5:\"title\";s:12:\"Ivory Search\";s:9:\"condition\";s:41:\"add-search-to-menu/add-search-to-menu.php\";s:10:\"exclusions\";a:2:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:49:\"/add-search-to-menu/public/js/ivory-search.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:7430e9d2c985ae0a3339a7b7e1acc318\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677852711;}s:36:\"17a5dd54-1f5e-4d57-a56d-a8a970651954\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:1c8a1e1ba89a601f88654f094139b469\";s:5:\"title\";s:9:\"JetBlocks\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:39:\"/jet-blocks/assets/js/jet-blocks.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"jet-blocks/jet-blocks.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"b6f78c90-9823-459a-8dc1-1257e5f0d4e3\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:dac9ec782180f33d0fcc7c4e0e569b9d\";s:5:\"title\";s:7:\"JetBlog\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:15:\"/elementor-pro/\";i:3;s:11:\"/elementor/\";i:4;s:10:\"/jet-blog/\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:18:\"hasJetBlogPlaylist\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:21:\"jet-blog/jet-blog.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"e17173d8-6ef8-4e27-ba0f-379c9aea7eda\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0fe8895d1da5247b73a5d0b482df4ac4\";s:5:\"title\";s:11:\"JetElements\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:14:\"/jet-elements/\";i:7;s:18:\"hasJetBlogPlaylist\";i:8;s:11:\"jetElements\";i:9;s:26:\"/wp-includes/js/jquery/ui/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"jet-elements/jet-elements.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"cfd77501-9c9e-4f11-b994-0178a592fc08\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"JetEngine\";s:9:\"condition\";s:25:\"jet-engine/jet-engine.php\";s:10:\"exclusions\";a:1:{i:0;s:12:\"/jet-engine/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:bc998e71546860c8c7f70c45a6c18972\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1686208296;}s:36:\"36fed829-a2d9-41b5-94f6-2c3b9f07a94e\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:433a3173f2d06f7d02c7b91c06ed215d\";s:5:\"title\";s:7:\"JetMenu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:13:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:15:\"/elementor-pro/\";i:3;s:11:\"/elementor/\";i:4;s:42:\"/jet-blog/assets/js/lib/slick/slick.min.js\";i:5;s:14:\"/jet-elements/\";i:6;s:10:\"/jet-menu/\";i:7;s:23:\"elementorFrontendConfig\";i:8;s:26:\"ElementorProFrontendConfig\";i:9;s:18:\"hasJetBlogPlaylist\";i:10;s:17:\"JetEngineSettings\";i:11;s:21:\"jetMenuPublicSettings\";i:12;s:37:\"/jet-reviews/assets/js/lib/vue.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:21:\"jet-menu/jet-menu.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"580cfed7-f034-4e39-bc7a-cdd01923ce87\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:51714cfdb43f231a1c93e7cffb1007ab\";s:5:\"title\";s:8:\"JetPopup\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:46:\"/jet-popup/assets/js/lib/anime-js/anime.min.js\";i:1;s:42:\"/jet-popup/assets/js/jet-popup-frontend.js\";i:2;s:17:\"/jet-woo-builder/\";i:3;s:16:\"var jetPopupData\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:23:\"jet-popup/jet-popup.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"d9cd2730-12e2-42d7-a082-6f0efcd466cc\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:df3bc4b6a8a9f28a5ba24cb7496bbc72\";s:5:\"title\";s:17:\"JetProductGallery\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:56:\"/jet-woo-product-gallery/assets/lib/swiper/swiper.min.js\";i:3;s:65:\"/jet-woo-product-gallery/assets/js/jet-woo-product-gallery.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:51:\"jet-woo-product-gallery/jet-woo-product-gallery.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"544aa37b-4d52-4182-99e8-abe23585da14\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5921fc95965ac7fccb7296957bd9abff\";s:5:\"title\";s:10:\"JetReviews\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:46:\"/jet-reviews/assets/js/jet-reviews-frontend.js\";i:3;s:37:\"/jet-reviews/assets/js/lib/vue.min.js\";i:4;s:16:\"jetReviewsWidget\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"jet-reviews/jet-reviews.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"a8460089-34b4-4f8f-8694-5d92fa48aa82\";O:8:\"stdClass\":8:{s:5:\"title\";s:15:\"JetSmartFilters\";s:9:\"condition\";s:39:\"jet-smart-filters/jet-smart-filters.php\";s:10:\"exclusions\";a:1:{i:0;s:23:\"jetOffcanvasInitialized\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:0cd63a514de1f1acb88e2bde65c4bc8d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1694447256;}s:36:\"fe3c4915-6f8b-49b7-aa9c-c97b264d9f12\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:a346b60514ef52afeffc6e2ef2793da3\";s:5:\"title\";s:9:\"JetSticky\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:25:\"/jetsticky-for-elementor/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:51:\"jetsticky-for-elementor/jetsticky-for-elementor.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"853479dc-fff5-47cf-9a60-bf9b00f71fc4\";O:8:\"stdClass\":8:{s:5:\"title\";s:21:\"JetTabs for Elementor\";s:9:\"condition\";s:21:\"jet-tabs/jet-tabs.php\";s:10:\"exclusions\";a:7:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:11:\"/elementor/\";i:2;s:15:\"/elementor-pro/\";i:3;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:63:\"/wp-content/plugins/jet-tabs/assets/js/jet-tabs-frontend.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:d887a6ffea25d759e8aecdb6b78917f7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1697130971;}s:36:\"b7f89562-230c-4f63-8360-7aad6df31e02\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:829272546b040d5aaeeeaf976b6cd4ec\";s:5:\"title\";s:9:\"JetTricks\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:12:\"/jet-tricks/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"jet-tricks/jet-tricks.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"90451e2a-553a-4496-9fa4-cffedbe69d43\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:f44f3dbd09149f57db370e4132b057db\";s:5:\"title\";s:28:\"JetWoo Widgets For Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:58:\"/jetwoo-widgets-for-elementor/assets/js/jet-woo-widgets.js\";i:7;s:49:\"/jet-woo-builder/assets/js/jet-woo-builder.min.js\";i:8;s:42:\"/jet-woo-builder/assets/js/frontend.min.js\";i:9;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:35:\"jet-woo-builder/jet-woo-builder.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"944718c2-48c6-4f53-aaa2-460d07e033cc\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:ed318a971f8a047bed5b02ad546a9c18\";s:5:\"title\";s:13:\"JetWooBuilder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:11:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:3;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:4;s:15:\"/elementor-pro/\";i:5;s:11:\"/elementor/\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:26:\"ElementorProFrontendConfig\";i:8;s:17:\"JetEngineSettings\";i:9;s:17:\"/jet-woo-builder/\";i:10;s:65:\"/jet-woo-builder-custom-quantity-selectors-main/assets/js/main.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:35:\"jet-woo-builder/jet-woo-builder.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f5b62f59-1dae-4cdf-ac3f-f5e846fc9918\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:9562e253cd4ac2b1e1f70e32cb4e32dc\";s:5:\"title\";s:12:\"Layer Slider\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:62:\"/LayerSlider/assets/static/layerslider/js/layerslider.utils.js\";i:3;s:77:\"/LayerSlider/assets/static/layerslider/js/layerslider.kreaturamedia.jquery.js\";i:4;s:68:\"/LayerSlider/assets/static/layerslider/js/layerslider.transitions.js\";i:5;s:15:\"initLayerSlider\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"LayerSlider/layerslider.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"e2be718d-83a2-4fa0-bc98-f0df52be3dc1\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:1425e2735306796fe1539d9184a77e10\";s:5:\"title\";s:14:\"LoftLoader Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"loftloader.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:33:\"loftloader-pro/loftloader-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"cfa18552-656e-453c-9e14-c07522dc6598\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0bf67b8ba84771e1a367fe24590ef09c\";s:5:\"title\";s:20:\"MailUp for WordPress\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:73:\"/mailup-email-and-newsletter-subscription-form/public/js/mailup-public.js\";i:1;s:15:\"mailup-js-extra\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:56:\"mailup-email-and-newsletter-subscription-form/mailup.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c5330c66-ba7b-45b1-87e4-ce590ab005dd\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:10d0de28911c5f66463b9c8783f8148a\";s:5:\"title\";s:11:\"Maintenance\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:13:\"/maintenance/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"maintenance/maintenance.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"267aef71-afa0-4848-b6f8-3e1ca15c3a23\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:9460789bdfe77425c895f130991a4cb4\";s:5:\"title\";s:15:\"Maps Marker Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:36:\"/maps-marker-pro/js/mapsmarkerpro.js\";i:1;s:17:\"var mapsMarkerPro\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:35:\"maps-marker-pro/maps-marker-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"b5a88b63-e906-49b3-8134-420139915ea6\";O:8:\"stdClass\":8:{s:5:\"title\";s:13:\"Master Popups\";s:9:\"condition\";s:31:\"master-popups/master-popups.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:65:\"/plugins/master-popups/assets/public/js/master-popups-libs.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:8fd7bd2c8b0a33e62798573abd12be63\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681305305;}s:36:\"4be41549-bf4d-4c49-8346-0f8a3b88fdba\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:de888634cc4bd51576eed319d5a528fd\";s:5:\"title\";s:13:\"Master Slider\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:12:\"masterslider\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"master-slider/master-slider.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"087bee18-7cd1-4c10-8acc-19e1b7c4f4cd\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:b71309a89bf3c8b558b6fca5d6531919\";s:5:\"title\";s:13:\"Max Mega Menu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:34:\"/wp-includes/js/hoverIntent.min.js\";i:3;s:27:\"/megamenu/js/maxmegamenu.js\";i:4;s:12:\"var megamenu\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:21:\"megamenu/megamenu.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"cf22f0b9-01f4-409e-8a93-ad6743095abd\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:94a7bae84ef2816494be4af66c577bfc\";s:5:\"title\";s:11:\"Meta Slider\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/ml-slider/\";i:3;s:14:\"var metaslider\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:23:\"ml-slider/ml-slider.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"bb2cbc0d-20da-415e-8218-c17f1db53579\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"Monarch\";s:9:\"condition\";s:19:\"monarch/monarch.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:22:\"dt-place-monarch-icons\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b7335d6d6d5c5134ea10ac2d9b04226c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677853476;}s:36:\"a98d6a80-4610-4ede-bd33-c3e15bed0a95\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:4f8651262425ef6d7c223c68a2ec2063\";s:5:\"title\";s:16:\"Monster Insights\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:13:\"__gtagTracker\";i:1;s:24:\"monsterinsights_frontend\";i:2;s:62:\"/google-analytics-for-wordpress/assets/js/frontend-gtag.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"26e1a36e-7a03-449e-8ecc-e42c41ca291c\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:f8fc66b302dec2327bdec0434a3b275b\";s:5:\"title\";s:11:\"Motion.page\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:40:\"/motionpage/core/includes/assets/js/(.*)\";i:1;s:45:\"/motionpage/core/includes/assets/js/gsap/(.*)\";i:2;s:26:\"/motionpage/assets/js/(.*)\";i:3;s:31:\"/motionpage/assets/js/gsap/(.*)\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"motionpage/motionpage.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"459fd663-7f80-45fd-8308-d3484981e161\";O:8:\"stdClass\":8:{s:5:\"title\";s:11:\"Ninja Forms\";s:9:\"condition\";s:27:\"ninja-forms/ninja-forms.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/wp-includes/js/underscore.min.js\";i:3;s:31:\"/wp-includes/js/backbone.min.js\";i:4;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:5;s:44:\"/ninja-forms/assets/js/min/front-end-deps.js\";i:6;s:39:\"/ninja-forms/assets/js/min/front-end.js\";i:7;s:3:\"nf-\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1d3ae9c1a96d5062616968b81eef319d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1703190792;}s:36:\"c97440dd-7592-40e7-8c98-dac20d39808f\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:723a588dcd49285ea9f7404e2379b47f\";s:5:\"title\";s:12:\"Ninja Tables\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:25:\"/ninja-tables(.*)/assets/\";i:3;s:25:\"/ninja-tables(.*)/public/\";i:4;s:41:\"/wp-includes/js/dist/vendor/moment.min.js\";i:5;s:21:\"ninja_table_instance_\";i:6;s:13:\"ninja_filter_\";i:7;s:31:\"ninja_table_ready_init_table_id\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"ninja-tables/ninja-tables.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"ebc01f06-8c35-47fa-9c63-8959c5cbd915\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:f41a52ab1dd50a81cd3a5e341af0007c\";s:5:\"title\";s:13:\"NotificationX\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:39:\"/notificationx/assets/public/js/(.*).js\";i:3;s:16:\"notificationXArr\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"notificationx/notificationx.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"3aaf4a1b-591a-48b7-8d60-e6d65c0f94c9\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:be8fc72a8b8e8eb5958be13737cff47c\";s:5:\"title\";s:23:\"Ocean Elementor Widgets\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:25:\"/ocean-elementor-widgets/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:51:\"ocean-elementor-widgets/ocean-elementor-widgets.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f053a7d3-62b0-4312-b0ca-6ff63380eb0b\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:1a14afe852fefe7b22ccad3893672a29\";s:5:\"title\";s:23:\"One Click Accessibility\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:40:\"/pojo-accessibility/assets/js/app.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"pojo-accessibility/pojo-accessibility.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"61e11800-48a9-4354-8a4c-ac9a2b4b033a\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:b9ed0fe6f2cdbd305691a6b857f4b3dc\";s:5:\"title\";s:30:\"OoohBoi Steroids for Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:32:\"/ooohboi-steroids-for-elementor/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:51:\"ooohboi-steroids-for-elementor/ooohboi-steroids.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"560b78a2-f051-490b-9dc6-a602dece0d81\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:f1ff18a3e04c4e0995fca9cabffe57a7\";s:5:\"title\";s:8:\"Optimole\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:12:\"optimoleData\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"optimole-wp/optimole-wp.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"b0fda458-4bf2-41e9-a159-60d4bb6102a6\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:48ec18bd3f59772d98f85dddab75e305\";s:5:\"title\";s:19:\"OSM - OpenStreetMap\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/osm/js/OL/\";i:3;s:28:\"/osm/js/osm-v3-plugin-lib.js\";i:4;s:7:\"vectorM\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:11:\"osm/osm.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"3743ed67-e0d1-4243-bb1f-ee48a445dd10\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:9eacf0b76484af0259cd788f4923f20c\";s:5:\"title\";s:9:\"OxyExtras\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:4:\"vime\";i:1;s:11:\"vime.esm.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:20:\"oxyextras/plugin.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"52a21e27-af5b-4476-8d6d-54c323fd1443\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:e852555c4b4789d78a96d76f503b3262\";s:5:\"title\";s:14:\"Oxygen Builder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:38:\"/component-framework/vendor/aos/aos.js\";i:3;s:8:\"AOS.init\";i:4;s:20:\"oxygen_init_pro_menu\";i:5;s:26:\"oxy-pro-menu-show-dropdown\";i:6;s:17:\"oxy-shape-divider\";i:7;s:21:\"oxygenVSBInitToggleJs\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:20:\"oxygen/functions.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"ebd282b9-e175-4b83-90a2-fe12389ccd11\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:6f9419e58ec86c94e7698aaaaf9dc715\";s:5:\"title\";s:21:\"PageLoader by Bonfire\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/pageloader-by-bonfire/pageloader.js\";i:3;s:26:\"bonfire-pageloader-overlay\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:47:\"pageloader-by-bonfire/pageloader-by-bonfire.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"0baf6353-aa70-41a9-a3bc-d89870a5839b\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:3a4c4518eb0f60108ab4934fab27d335\";s:5:\"title\";s:12:\"PDF Embedder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:24:\"/pdf-embedder/js/(.*).js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"pdf-embedder/pdf_embedder.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"cba51ec1-87cc-44eb-b12b-d652e3446507\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:4f90aca5957cccbf623e3bbc31afa204\";s:5:\"title\";s:30:\"Perfect Brands for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:57:\"/perfect-woocommerce-brands/assets/lib/slick/slick.min.js\";i:3;s:63:\"/perfect-woocommerce-brands/assets/js/functions-frontend.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:57:\"perfect-woocommerce-brands/perfect-woocommerce-brands.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"808e7a4e-025c-4fae-bf82-de3716e5eb0d\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:84fe214646388d7c021dda25003ac165\";s:5:\"title\";s:8:\"Photonic\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:65:\"/photonic/include/js/front-end/module/photonic-baguettebox.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:21:\"photonic/photonic.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"936aff7d-a8ac-4473-a7b5-4b1611b6c557\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:6838be282f853f71be282783cb1c162b\";s:5:\"title\";s:13:\"Pixel Caffein\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:33:\"/pixel-caffeine/build/frontend.js\";i:2;s:10:\"aepc_pixel\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:33:\"pixel-caffeine/pixel-caffeine.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"ab3a4ef5-2732-4b46-a7c3-17b4e9405cd1\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:afe0eb7c64d4556a7111c56dd8c4d307\";s:5:\"title\";s:29:\"Pixel Manager for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:41:\"/woocommerce-pixel-manager-pro/js/public/\";i:2;s:3:\"wpm\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:59:\"woocommerce-pixel-manager-pro/woocommerce-pixel-manager.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"2774f964-50b2-425e-8a30-0a02f421b7e4\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:38d4b2986868f543639cd1ebc3e510aa\";s:5:\"title\";s:13:\"Popup Builder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:32:\"/popup-builder/public/js/(.*).js\";i:3;s:57:\"/popupbuilder-exit-intent/public/javascript/ExitIntent.js\";i:4;s:17:\"var sgpbPublicUrl\";i:5;s:17:\"SGPB_POPUP_PARAMS\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"popup-builder/popup-builder.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"82dbb1e5-31f9-43d7-b522-52819aa49ba5\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:786717922362642f34a7ff58e919bd95\";s:5:\"title\";s:11:\"Popup Maker\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:3;s:24:\"/pum/pum-site-scripts.js\";i:4;s:3:\"pum\";i:5;s:42:\"/plugins/popup-maker/assets/js/site.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"popup-maker/popup-maker.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"48e08305-1f1c-4ef4-9f13-24af1b155abc\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:17831cbb64e469c7f66224c8c63d0a58\";s:5:\"title\";s:30:\"PowerPack Addons for Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:59:\"/powerpack-lite-for-elementor/assets/js/min/frontend.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"e037ae2f-e36b-4f1a-ada8-eb8fde6746f2\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:80e1283ea1afead3ca904fad792643c5\";s:5:\"title\";s:14:\"Preloader Plus\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:20:\"/preloader-plus/(.*)\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:33:\"preloader-plus/preloader-plus.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"90fed478-e89a-455c-8371-836bee58fb81\";O:8:\"stdClass\":8:{s:5:\"title\";s:28:\"Premium Addons for Elementor\";s:9:\"condition\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:74:\"/premium-addons-for-elementor/assets/frontend/min-js/premium-addons.min.js\";i:3;s:67:\"/premium-addons-for-elementor/assets/frontend/min-js/isotope.min.js\";i:4;s:49:\"/premium-addons-elementor/pa-frontend-(.*).min.js\";i:5;s:65:\"/premium-addons-for-elementor/assets/frontend/min-js/slick.min.js\";i:6;s:61:\"/premium-addons-pro/assets/frontend/min-js/tooltipster.min.js\";i:7;s:19:\"window.scopes_array\";i:8;s:13:\"lottie.min.js\";i:9;s:76:\"/premium-addons-for-elementor/assets/frontend/min-js/premium-nav-menu.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:debbfbbcbdf9ffb465bbc40008d99f02\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1693315214;}s:36:\"7e43c261-77be-48fc-b25a-8953a654ae85\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:100a0382fcf3d1b6b22da928bce46ea8\";s:5:\"title\";s:13:\"Presto Player\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:54:\"/wp-includes/js/dist/vendor/regenerator-runtime.min.js\";i:1;s:67:\"/presto-player/dist/components/web-components/web-components.esm.js\";i:2;s:42:\"/presto-player/src/player/player-static.js\";i:3;s:10:\"var player\";i:4;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:5;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:6;s:32:\"/wp-includes/js/dist/i18n.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"presto-player/presto-player.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"3d6f509f-d040-4279-9a2f-a4e6eae1e9df\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:c0fce700121492b566517e68301db382\";s:5:\"title\";s:42:\"Price Based on Country for WooCommerce Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:79:\"/woocommerce-product-price-based-on-countries/assets/js/ajax-geolocation.min.js\";i:1;s:77:\"/woocommerce-price-based-country-pro-addon/assets/js/currency-switcher.min.js\";i:2;s:18:\"add-to-cart.min.js\";i:3;s:21:\"cart-fragments.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:87:\"woocommerce-price-based-country-pro-addon/woocommerce-price-based-country-pro-addon.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"b970bc8a-bcbe-4d08-8ac0-a6853ab3f036\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:f1ecfe258440b371124999ca3bfbfff3\";s:5:\"title\";s:12:\"Prime Slider\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:62:\"/plugins/bdthemes-prime-slider-lite/assets/js/bdt-uikit.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:52:\"bdthemes-prime-slider-lite/bdthemes-prime-slider.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"e5458963-f167-4b68-88e4-77dd39af2842\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:29ea8f4dd72f5a5c5927917fb0665a05\";s:5:\"title\";s:12:\"PRO Elements\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/pro-elements/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"pro-elements/pro-elements.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"b119ad72-f498-4576-bb71-9e6d8c37b68f\";O:8:\"stdClass\":8:{s:5:\"title\";s:39:\"Product Filter by WBW (for WooCommerce)\";s:9:\"condition\";s:41:\"woo-product-filter/woo-product-filter.php\";s:10:\"exclusions\";a:6:{i:0;s:55:\"/jquery-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:55:\"/jquery-migrate(.*)(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:2;s:83:\"/wp-content/plugins/woo-product-filter/modules/woofilters/js/frontend.woofilters.js\";i:3;s:38:\"/wp-includes/js/jquery/ui/mouse.min.js\";i:4;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:5;s:39:\"/wp-includes/js/jquery/ui/slider.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e57ad91e0d94fab011353af544873743\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1685686062;}s:36:\"7b779aca-e497-4da3-8e51-fa12837d15ab\";O:8:\"stdClass\":8:{s:5:\"title\";s:31:\"Product Filters for WooCommerce\";s:9:\"condition\";s:59:\"woocommerce-product-filters/woocommerce-product-filters.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/woocommerce-product-filters/\";i:3;s:51:\"/woocommerce/assets/js/accounting/accounting.min.js\";i:4;s:26:\"/wp-includes/js/jquery/ui/\";i:5;s:17:\"wcpf-load-project\";i:6;s:8:\"WCPFData\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:719469f1c977f7109d3d6ee21ecd5a16\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1691235154;}s:36:\"2b2a51f2-bd47-4591-92d8-4a690bce5d99\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:a898898b2b0ea2cd82e20a6d3a3aa47b\";s:5:\"title\";s:38:\"Product Gallery Slider for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/twist/assets/js/slick.min.js\";i:3;s:20:\"wpgs-public-js-after\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:15:\"twist/twist.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"062c5be3-e5ea-4958-9619-44e3410f237e\";O:8:\"stdClass\":8:{s:5:\"title\";s:37:\"Product Video Gallery for Woocommerce\";s:9:\"condition\";s:93:\"product-video-gallery-slider-for-woocommerce/product-video-gallery-slider-for-woocommerce.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:70:\"/product-video-gallery-slider-for-woocommerce/public/js/nickx.front.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:bbc653a91f0635cd2edb0b741aa62b85\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1693512477;}s:36:\"34d225a4-688c-476b-846b-420774160d6b\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:e0b123d324c6fc85b8682660c34f8829\";s:5:\"title\";s:13:\"Rank Math SEO\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:11:\"local_ga_js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:30:\"seo-by-rank-math/rank-math.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"02305ca0-2c2a-4eef-a802-b8a942771ecc\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Retainful\";s:9:\"condition\";s:91:\"retainful-next-order-coupon-for-woocommerce/retainful-next-order-coupon-for-woocommerce.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:83:\"/retainful-next-order-coupon-for-woocommerce/src/premium/assets/js/atc-popup.min.js\";i:3;s:87:\"/retainful-next-order-coupon-for-woocommerce/src/premium/assets/js/exit-intent-popup.js\";i:4;s:13:\"retainful.com\";i:5;s:26:\"rnoc-add-to-cart-js-before\";i:6;s:26:\"rnoc_redirect_coupon_popup\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:f9fdee19ba6aed961d96d86e1521a761\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679331508;}s:36:\"b4055250-5813-400f-b663-d390fee989e4\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:d6a4d07d1b4022d886df52322dcd8a6f\";s:5:\"title\";s:17:\"Revolution Slider\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:28:\"/revslider/public/assets/js/\";i:3;s:22:\"/revslider-(.*)-addon/\";i:4;s:15:\"setREVStartSize\";i:5;s:11:\"rev_slider_\";i:6;s:10:\"revslider_\";i:7;s:17:\"window.RS_MODULES\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:23:\"revslider/revslider.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"0b4e061a-b366-4d5a-a00e-bded4b107133\";O:8:\"stdClass\":8:{s:5:\"title\";s:22:\"Royal Elementor Addons\";s:9:\"condition\";s:37:\"royal-elementor-addons/wpr-addons.php\";s:10:\"exclusions\";a:3:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:49:\"/royal-elementor-addons/assets/js/frontend.min.js\";i:2;s:62:\"/royal-elementor-addons/assets/js/lib/jarallax/jarallax.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:c4b464373716d7ac8e3cfb019aaa6102\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1688124503;}s:36:\"1b19ec89-171a-4f85-8c4b-b1bcfc6b1433\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5e3f85d8c82cc184b945415d1a862601\";s:5:\"title\";s:18:\"Sassy Social Share\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:58:\"/sassy-social-share/public/js/sassy-social-share-public.js\";i:3;s:19:\"heateorSssLoadEvent\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"sassy-social-share/sassy-social-share.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f5899925-2ab7-43b6-abc4-51b76d664ca6\";O:8:\"stdClass\":8:{s:5:\"title\";s:14:\"Scrollsequence\";s:9:\"condition\";s:41:\"scrollsequence-pro/scrollsequence-pro.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:51:\"/scrollsequence-pro/public/js/gsap__premium_only.js\";i:3;s:65:\"/scrollsequence-pro/public/js/gsap-scrolltrigger__premium_only.js\";i:4;s:54:\"/scrollsequence-pro/public/js/ssq-lib__premium_only.js\";i:5;s:27:\"scrollsequence-input-script\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3df51830b6b80668fc342c8dcea495cf\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1678111131;}s:36:\"043827fc-3df8-45d6-9cd2-14fbe962987a\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:9d60b5d2de4d828b78c7b088024377d6\";s:5:\"title\";s:37:\"ShiftNav Pro - Responsive Mobile Menu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:39:\"/shiftnav-pro/assets/js/shiftnav(.*).js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"shiftnav-pro/shiftnav.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"bcbaf240-e76f-4620-b7d5-4852c46d4be7\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:56279bd768c8f27ad1972b6774738bcf\";s:5:\"title\";s:35:\"ShiftNav – Responsive Mobile Menu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/shiftnav-responsive-mobile-menu/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:67:\"shiftnav-responsive-mobile-menu/shiftnav-responsive-mobile-menu.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"bbe0543b-b5af-467b-a90d-e2975d892d8d\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:1bc7ac87d8ab2301a1b904919dc7a798\";s:5:\"title\";s:26:\"Short Pixel Adaptive Image\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:51:\"/shortpixel-adaptive-images/assets/js/ai(.*).min.js\";i:3;s:13:\"spai_settings\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:45:\"shortpixel-adaptive-images/short-pixel-ai.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"543ab43a-6bd3-4948-a09e-3b95e7c9209d\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:ce4dea8ddc3caa8d00e95cec3202d32a\";s:5:\"title\";s:12:\"Showcase IDX\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:4:\"SIDX\";i:3;s:37:\"search.showcaseidx.com/js/app-(.*).js\";i:4;s:17:\"cdn.shortpixel.ai\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:28:\"showcase-idx/showcaseidx.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"a16bcab7-1169-46b9-a425-b091478d8312\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:3ea7d9f75ad03620b0bce2517bd5b8d1\";s:5:\"title\";s:21:\"Side Cart WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:61:\"/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js\";i:3;s:58:\"/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js\";i:4;s:67:\"/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js\";i:5;s:57:\"/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:38:\"side-cart-woocommerce/xoo-wsc-main.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"521f748e-cf09-4019-bd28-b52daef5f16f\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:7843983bf90dbae16c6e889382c71b23\";s:5:\"title\";s:13:\"Simple Banner\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:15:\"/simple-banner/\";i:2;s:24:\"simpleBannerScriptParams\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"simple-banner/simple-banner.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"76026e82-d9cf-482c-b480-55c57693a184\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:b6825f971d35a5515d095564a2e40936\";s:5:\"title\";s:18:\"Site Kit by Google\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:33:\"google-analytics.com/analytics.js\";i:1;s:6:\"ga\\( \'\";i:2;s:5:\"ga\\(\'\";i:3;s:8:\"/gtag/js\";i:4;s:6:\"gtag\\(\";i:5;s:7:\"/gtm.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:35:\"google-site-kit/google-site-kit.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"79c458d7-f7f7-4072-919d-ad337bde6ae3\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5ce5dfecdc9d3292c69a1413bbd17d3c\";s:5:\"title\";s:10:\"Slick Menu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:12:\"/slick-menu/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"slick-menu/slick-menu.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"99cf4942-49ea-4687-b156-405ed1ce1cfa\";O:8:\"stdClass\":8:{s:5:\"title\";s:14:\"Slide Anything\";s:9:\"condition\";s:33:\"slide-anything/slide-anything.php\";s:10:\"exclusions\";a:3:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:48:\"/slide-anything/owl-carousel/owl.carousel.min.js\";i:2;s:16:\"owl_goto.trigger\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:fff874cc48b80940210228c975df395c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1702907355;}s:36:\"dd0ea584-0c99-4c30-b46d-da35b94c9f0a\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:ffb5f8cc0ea17886dbd05f601ca3eec0\";s:5:\"title\";s:19:\"Slider by Soliloquy\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:16:\"soliloquy-min.js\";i:3;s:16:\"soliloquy_slider\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:33:\"soliloquy-lite/soliloquy-lite.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"ecb2fffc-d289-4f68-ae94-71131f17deee\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:2f373822dceb191c31c8ad2183d51869\";s:5:\"title\";s:14:\"Smart Slider 3\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:23:\"/smart-slider-3/(.*).js\";i:3;s:3:\"_N2\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:33:\"smart-slider-3/smart-slider-3.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"284ede43-bf80-419e-8414-46c26cb746f0\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:720ec9fbbd8a52ce525959a68a5310b3\";s:5:\"title\";s:18:\"Smart Slider 3 Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:21:\"/SmartSlider3/(.*).js\";i:3;s:3:\"_N2\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:55:\"nextend-smart-slider3-pro/nextend-smart-slider3-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c3334c29-4160-42df-a1ce-f8aeeaee8668\";O:8:\"stdClass\":8:{s:5:\"title\";s:16:\"Super Socializer\";s:9:\"condition\";s:37:\"super-socializer/super_socializer.php\";s:10:\"exclusions\";a:3:{i:0;s:8:\"theChamp\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:660defe26748470c3a47366cd4012579\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677853633;}s:36:\"f18b4242-fe3f-4e2b-bfc9-ac2fb3939a90\";O:8:\"stdClass\":8:{s:5:\"title\";s:13:\"Superfly Menu\";s:9:\"condition\";s:22:\"superfly-menu/main.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:33:\"/jquery-migrate((.*?)(.min?)?).js\";i:2;s:67:\"/superfly-menu/includes/vendor/looks_awesome/icon_manager/js/md5.js\";i:3;s:68:\"/superfly-menu/includes/vendor/looks_awesome/icon_manager/js/util.js\";i:4;s:31:\"/superfly-menu/js/public.min.js\";i:5;s:20:\"window.SFM_is_mobile\";i:6;s:21:\"var SFM_skew_disabled\";i:7;s:16:\"var SFM_template\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ccb15175093bc6c437b78797f0698a7b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1684301673;}s:36:\"1a05c00a-8562-45bc-80e8-987a4574b1c9\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"Symplr Ads\";s:9:\"condition\";s:28:\"symplr-ads/symplr-plugin.php\";s:10:\"exclusions\";a:2:{i:0;s:12:\"/symplr-ads/\";i:1;s:14:\"cdns.symplr.de\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3b6d39e28a87e86c4659491e2368ff61\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1692199959;}s:36:\"858d2d7f-bdac-4d27-ba26-baa9ace96ba4\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:7d93008296bb5c7c43d4cba185ed2632\";s:5:\"title\";s:21:\"Tabby Responsive Tabs\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:34:\"/tabby-responsive-tabs/js/tabby.js\";i:3;s:12:\"RESPONSIVEUI\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:47:\"tabby-responsive-tabs/tabby-responsive-tabs.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"e44a5c93-bb77-4624-a121-d846905137ea\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:2f563bbb7e92363ec3fb2989a1c7dffe\";s:5:\"title\";s:29:\"The Plus Addons for Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:20:\"/theplus-addons/(.*)\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:70:\"the-plus-addons-for-elementor-page-builder/theplus_elementor_addon.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"2bbac961-b000-4802-ae97-d52472ec6750\";O:8:\"stdClass\":8:{s:5:\"title\";s:37:\"The Plus Addons for Elementor Premium\";s:9:\"condition\";s:51:\"theplus_elementor_addon/theplus_elementor_addon.php\";s:10:\"exclusions\";a:7:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:44:\"/wp-content/plugins/theplus_elementor_addon/\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:6e127deaaeefbe57ff945b1f9e274518\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1688143611;}s:36:\"666b45e8-749c-4140-bd17-e1cd589e03ee\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:b9c418b47c986935a1151ab9b42f8971\";s:5:\"title\";s:15:\"ThemeREX Addons\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:32:\"/trx_addons/js/__scripts-full.js\";i:3;s:67:\"/trx_addons/components/cpt/layouts/shortcodes/menu/superfish.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"trx_addons/trx_addons.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"a750cada-eb58-4df4-9966-21c8a69332ba\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:75af9efe22c5cc776636266feb55adf1\";s:5:\"title\";s:16:\"Thrive Architect\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:45:\"thrive-visual-editor/thrive-visual-editor.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"13714cde-680e-4ca4-8607-c35952d6a5f2\";O:8:\"stdClass\":8:{s:5:\"title\";s:15:\"Thrive Comments\";s:9:\"condition\";s:35:\"thrive-comments/thrive-comments.php\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/thrive-leads/\";i:3;s:15:\"window.TL_Const\";i:4;s:7:\"var ml=\";i:5;s:27:\"/thrive-comments/assets/js/\";i:6;s:14:\"ThriveComments\";i:7;s:33:\"/wp-includes/js/underscore.min.js\";i:8;s:31:\"/wp-includes/js/backbone.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:6a72d06ca2f6a888b0d9d5ea93af2edc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677852974;}s:36:\"aa7ca898-499f-4f04-b419-3de199996969\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:b84d82c02cade64ade00712b9c5652aa\";s:5:\"title\";s:12:\"Thrive Leads\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/thrive-leads/\";i:3;s:15:\"window.TL_Const\";i:4;s:7:\"var ml=\";i:5;s:27:\"/thrive-comments/assets/js/\";i:6;s:14:\"ThriveComments\";i:7;s:33:\"/wp-includes/js/underscore.min.js\";i:8;s:31:\"/wp-includes/js/backbone.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"thrive-leads/thrive-leads.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"9eee297a-8241-4ef2-af97-46074bd0898c\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5bb61b0559b0a3fd578315b553451327\";s:5:\"title\";s:19:\"Thrive Quiz Builder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:43:\"thrive-quiz-builder/thrive-quiz-builder.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c2f3ec2a-5b09-4845-aa95-84841783fbfc\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:a7f3e5206abff19ca7cf142260181738\";s:5:\"title\";s:16:\"Thrive Ultimatum\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:18:\"/thrive-ultimatum/\";i:3;s:12:\"var TVE_Ult_\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:37:\"thrive-ultimatum/thrive-ultimatum.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"d48b8d2f-e071-4a30-840a-306154a115a0\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:f57be2014b6a489d053f8367fa6c0f9f\";s:5:\"title\";s:10:\"Tidio Chat\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:22:\"document.tidioChatCode\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:34:\"tidio-live-chat/tidio-elements.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"cb6d33ed-7eb4-4ff9-9ad0-7fc54fbecf6f\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:c9e0485ec256d4a6a8d92a98c18d76fc\";s:5:\"title\";s:14:\"Toolset Blocks\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:26:\"toolsetCommonEs.fontToHead\";i:3;s:27:\"toolsetCommonEs.styleToHead\";i:4;s:59:\"/toolset-blocks/vendor/toolset/blocks/public/js/frontend.js\";i:5;s:77:\"/toolset-blocks/vendor/toolset/common-es/public/toolset-common-es-frontend.js\";i:6;s:43:\"/toolset-blocks/public/js/views-frontend.js\";i:7;s:33:\"/wp-includes/js/underscore.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"toolset-blocks/wp-views.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"4bac6350-0925-49fb-904a-372f22fd6baf\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:71beda322b37f7fc7d456822493cb972\";s:5:\"title\";s:11:\"Top Bar Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:40:\"/plugins/topbar-pro/js/tpbr_front.min.js\";i:3;s:39:\"/plugins/topbar-pro/js/jquery.cookie.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:25:\"topbar-pro/topbar_pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"033486e7-0ddc-4915-a848-31504d00448e\";O:8:\"stdClass\":8:{s:5:\"title\";s:27:\"Twenty20 Image Before-After\";s:9:\"condition\";s:20:\"twenty20/ttwenty.php\";s:10:\"exclusions\";a:4:{i:0;s:27:\"/twenty20/assets/js/(.*).js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";i:3;s:22:\"twentytwenty-container\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:23441bba9d3602bc932d697c7cb8aa1f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677858089;}s:36:\"7675a34d-006e-4672-99d5-a81e1b8e47f9\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:3d59cc34167a7f8123e66b627148e0b7\";s:5:\"title\";s:8:\"UberMenu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:35:\"/ubermenu/assets/js/ubermenu.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:21:\"ubermenu/ubermenu.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"8233178a-e7b3-43ce-b193-bd0d9c960933\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:86424c46157c1c7e2e1571055813beee\";s:5:\"title\";s:29:\"Ultimate Addons for Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:17:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:49:\"/ultimate-elementor/assets/lib/slick/slick.min.js\";i:3;s:54:\"/ultimate-elementor/assets/min-js/uael-frontend.min.js\";i:4;s:53:\"/ultimate-elementor/assets/lib/isotope/isotope.min.js\";i:5;s:73:\"/ultimate-elementor/assets/lib/jquery-element-resize/jquery_resize.min.js\";i:6;s:62:\"/ultimate-elementor/assets/lib/fancybox/jquery_fancybox.min.js\";i:7;s:71:\"/ultimate-elementor/assets/lib/justifiedgallery/justifiedgallery.min.js\";i:8;s:40:\"/elementor-pro/assets/js/frontend.min.js\";i:9;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:10;s:52:\"/js_composer/assets/js/dist/js_composer_front.min.js\";i:11;s:42:\"/elementor/assets/lib/swiper/swiper.min.js\";i:12;s:44:\"/nasa-core/assets/js/min/jquery.slick.min.js\";i:13;s:11:\"/elementor/\";i:14;s:15:\"/elementor-pro/\";i:15;s:26:\"ElementorProFrontendConfig\";i:16;s:23:\"elementorFrontendConfig\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"8bddf484-6c78-4147-a4e6-d3039904e5f6\";O:8:\"stdClass\":8:{s:5:\"title\";s:43:\"Ultimate Addons for Elementor - Mobile Menu\";s:9:\"condition\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:10:\"exclusions\";a:4:{i:0;s:55:\"/jquery-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:55:\"/jquery-migrate(.*)(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:2;s:46:\"/ultimate-elementor/assets/js/uael-nav-menu.js\";i:3;s:54:\"/ultimate-elementor/assets/min-js/uael-nav-menu.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:70cfade3a7adbb54196f6acccc5a176f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1694771327;}s:36:\"028504f7-b1cd-4318-8a6d-ce186197e89d\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0f0a91f0c454021a5ff9fc25c3ed419f\";s:5:\"title\";s:41:\"Ultimate Addons for WPBakery Page Builder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:27:\"/Ultimate_VC_Addons/assets/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"5754af3d-a6af-49eb-b731-bdd82f26dc4e\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:34db8636812bad84c8aea037c2ddc8c2\";s:5:\"title\";s:32:\"Ultimate Responsive Image Slider\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"sliderPro\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:69:\"ultimate-responsive-image-slider/ultimate-responsive-image-slider.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"78ae882d-ae31-4179-b677-8893814938c7\";O:8:\"stdClass\":8:{s:5:\"title\";s:49:\"Unlimited Elements for Elementor Premium - Slider\";s:9:\"condition\";s:67:\"unlimited-elements-for-elementor-premium/unlimited-elements-pro.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:42:\"/unlimited-elements-for-elementor-premium/\";i:7;s:3:\"uc_\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:17260bc347b8c29bee0010e9ec164184\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1683270377;}s:36:\"051cbfbb-7ad2-4f06-a493-3cf423a80904\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:6717ef5673a956bc08ca4a5117065d53\";s:5:\"title\";s:34:\"Variation Swatches for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/jquery/ui/\";i:3;s:24:\"/woo-variation-swatches/\";i:4;s:28:\"/woo-variation-swatches-pro/\";i:5;s:17:\"underscore.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:49:\"woo-variation-swatches/woo-variation-swatches.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"6879caba-7224-4eca-bcb2-370785b495ea\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:57597b7683e01892932083413f085134\";s:5:\"title\";s:30:\"Web Accessibility By accessiBe\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/accessibe/\";i:3;s:6:\"acsbJS\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:24:\"accessibe/accessiebe.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"bd6732fe-4c2b-40a1-9035-8464057e2da5\";O:8:\"stdClass\":8:{s:5:\"title\";s:28:\"WooCommerce - Cart Fragments\";s:9:\"condition\";s:27:\"woocommerce/woocommerce.php\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:53:\"/woocommerce/assets/js/frontend/cart-fragments.min.js\";i:2;s:49:\"/woocommerce/assets/js/js-cookie/js.cookie.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:201de694c6fc28c8d580a3b2ca484218\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1680937567;}s:36:\"d044900d-07e1-4533-9516-33106efcb259\";O:8:\"stdClass\":8:{s:5:\"title\";s:33:\"WooCommerce - Product description\";s:9:\"condition\";s:27:\"woocommerce/woocommerce.php\";s:10:\"exclusions\";a:3:{i:0;s:61:\"/plugins/woocommerce/assets/js/frontend/single-product.min.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:a82644b4c9417ea3a240939a73344700\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679309756;}s:36:\"bff953b1-2213-4666-8112-76a84a3cc207\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"WooCommerce - Product Gallery\";s:9:\"condition\";s:27:\"woocommerce/woocommerce.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:55:\"/woocommerce/?(.*)/assets/js/zoom/jquery.zoom(.min)?.js\";i:3;s:40:\"/woocommerce/?(.*)/assets/js/photoswipe/\";i:4;s:67:\"/woocommerce/?(.*)/assets/js/flexslider/jquery.flexslider(.min)?.js\";i:5;s:62:\"/woocommerce/?(.*)/assets/js/frontend/single-product(.min)?.js\";i:6;s:24:\"wc_single_product_params\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:7665868ff97c265628f376523a4f9ecc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1686579689;}s:36:\"016e6ddf-c6e7-49ec-bd3f-2585d9e45895\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"WooCommerce - Select2 library\";s:9:\"condition\";s:27:\"woocommerce/woocommerce.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:45:\"/woocommerce/assets/js/select2/select2(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:4bca670bd5d55dd24b17fb0193b0891e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681459540;}s:36:\"b9b2c6d7-944f-4ae3-ae04-c9e2204b9dab\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:9165c768e978d6ad3f696db8c78ccbb2\";s:5:\"title\";s:30:\"WooCommerce Attribute Swatches\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:69:\"/iconic-woo-attribute-swatches-premium/assets/frontend/js/main.min.js\";i:3;s:82:\"/iconic-woo-attribute-swatches-premium/assets/vendor/flickity/flickity.pkgd.min.js\";i:4;s:15:\"iconic_was_vars\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:71:\"iconic-woo-attribute-swatches-premium/iconic-woo-attribute-swatches.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"4506c5e9-7349-44c9-9967-34370c83facb\";O:8:\"stdClass\":8:{s:5:\"title\";s:20:\"WooCommerce Bookings\";s:9:\"condition\";s:45:\"woocommerce-bookings/woocommerce-bookings.php\";s:10:\"exclusions\";a:9:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:38:\"/woocommerce-bookings/dist/frontend.js\";i:3;s:32:\"/wp-includes/js/dist/date.min.js\";i:4;s:41:\"/wp-includes/js/dist/vendor/moment.min.js\";i:5;s:43:\"/wp-includes/js/jquery/ui/datepicker.min.js\";i:6;s:33:\"/wp-includes/js/underscore.min.js\";i:7;s:59:\"/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js\";i:8;s:33:\"/wp-includes/js/dist/hooks.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:14dec6d289b9977fa3a74116feecebcc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1693998405;}s:36:\"fec9cd04-c358-45da-a1a8-1668b964016b\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:456f3b849ba3b6647246aca9d7cdaed5\";s:5:\"title\";s:31:\"WooCommerce Product Reviews Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:22:\"wc_product_reviews_pro\";i:3;s:90:\"/woocommerce-product-reviews-pro/assets/js/frontend/wc-product-reviews-pro-frontend.min.js\";i:4;s:57:\"/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:67:\"woocommerce-product-reviews-pro/woocommerce-product-reviews-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"551a9399-627f-4978-9bae-5cc8e0aefc82\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:c8577e74eef3b082fb6403760d53f68c\";s:5:\"title\";s:36:\"WooCommerce TM Extra Product Options\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:10:{i:0;s:58:\"/woocommerce-tm-extra-product-options/assets/js/epo.min.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";i:3;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:4;s:38:\"/wp-includes/js/jquery/ui/mouse.min.js\";i:5;s:39:\"/wp-includes/js/jquery/ui/slider.min.js\";i:6;s:33:\"/wp-includes/js/underscore.min.js\";i:7;s:30:\"/wp-includes/js/wp-util.min.js\";i:8;s:29:\"/wp-includes/js/dist/hooks.js\";i:9;s:28:\"/wp-includes/js/dist/i18n.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:69:\"woocommerce-tm-extra-product-options/tm-woo-extra-product-options.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"3cac4650-6a52-448e-8e48-e99a772a59a2\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:c6e6cab8c80fa3fe57d609f72d2d5c56\";s:5:\"title\";s:9:\"WooLentor\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:50:\"/woolementor/assets/third-party/slick/slick.min.js\";i:1;s:17:\"/woolentor-addons\";i:2;s:16:\"woolentor_addons\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:47:\"woolentor-addons/woolentor_addons_elementor.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"21af073d-d2ec-4d46-bbda-2c69f87f3f98\";O:8:\"stdClass\":8:{s:5:\"title\";s:31:\"Woolentor - Fix product gallery\";s:9:\"condition\";s:47:\"woolentor-addons/woolentor_addons_elementor.php\";s:10:\"exclusions\";a:4:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:20:\".woolentor-learg-img\";i:2;s:40:\"/woolentor-addons/assets/js/slick.min.js\";i:3;s:48:\"/woolentor-addons-pro/assets/lib/js/tippy.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:c5315e06dfc353cd57f85a60abe4e320\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1700061004;}s:36:\"67aeb4cb-1a00-4d10-a00c-34888b4c0dba\";O:8:\"stdClass\":8:{s:5:\"title\";s:25:\"WooThumbs for WooCommerce\";s:9:\"condition\";s:39:\"woothumbs-premium/woothumbs-premium.php\";s:10:\"exclusions\";a:5:{i:0;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:1;s:33:\"/wp-includes/js/underscore.min.js\";i:2;s:31:\"/wp-includes/js/wp-embed.min.js\";i:3;s:30:\"/wp-includes/js/wp-util.min.js\";i:4;s:23:\"/woothumbs-premium/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b97b1d3f627769e1dd8305aa25af993c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679065404;}s:36:\"c7a14763-88d0-4344-a6af-e0a8dc5fa8d5\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:31b9e812a025e5750a6ef0980ee7d2db\";s:5:\"title\";s:32:\"WordPress Mega Menu – QuadMenu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/quadmenu\";i:3;s:13:\"#private-menu\";i:4;s:12:\"#public-menu\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:21:\"quadmenu/quadmenu.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f699fdbd-84a7-4f24-b729-3e4a4f83a4dd\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:601f8fc7d10cad1c2ec2949c0d9b1651\";s:5:\"title\";s:9:\"WP Armour\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:28:\"/honeypot/includes/js/wpa.js\";i:3;s:39:\"/wp-armour-extended/includes/js/wpae.js\";i:4;s:16:\"wpa_hidden_field\";i:5;s:12:\"wpa_add_test\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"wp-armour-extended/wp-armour-extended.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"6a28aae5-ef91-43fc-8204-92e3a25642b4\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5728f3b9856dfe37a36ab15b0a637198\";s:5:\"title\";s:10:\"WP Go Maps\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"maps.googleapis.com\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"wp-google-maps/wpGoogleMaps.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c9b991d1-a653-404b-be85-e276b1814e7d\";O:8:\"stdClass\":8:{s:5:\"title\";s:17:\"WP Google Map Pro\";s:9:\"condition\";s:41:\"wp-google-map-gold/wp-google-map-gold.php\";s:10:\"exclusions\";a:5:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:27:\"maps.google.com/maps/api/js\";i:3;s:30:\"/wp-includes/js/masonry.min.js\";i:4;s:24:\"/wp-google-map-gold/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:dc12a9b7b9c4c7ce3c532b6b377739f2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677858391;}s:36:\"1f8f9fbf-fbf0-4e3a-b77c-af0fa47e950d\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:87f572f5f0ec143a8fceba77d0616197\";s:5:\"title\";s:18:\"WP Google Maps Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/wp-google-maps(.*)\";i:3;s:19:\"maps.googleapis.com\";i:4;s:4:\"mgl_\";i:5;s:6:\"wpgmza\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"wp-google-maps-pro/wp-google-maps-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"41e4b98c-e63f-4800-a478-02592562322b\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:3735ca768ede98b25795f4cb057ff4ed\";s:5:\"title\";s:20:\"WP iCal Availability\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:41:\"/wp-ical-availability/js/custom-select.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";i:3;s:22:\"/wp-ical-availability/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:45:\"wp-ical-availability/wp-ical-availability.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"2b06c5b8-dc32-4bb0-8504-3a9f1c3a1ec0\";O:8:\"stdClass\":8:{s:5:\"title\";s:8:\"WP MapIt\";s:9:\"condition\";s:21:\"wp-mapit/wp_mapit.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:32:\"/wp-mapit/wp_mapit/js/leaflet.js\";i:3;s:42:\"/wp-mapit/wp_mapit/js/wp_mapit_multipin.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ba8d1c7f294a3f5b593556eb3b0bc7d9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679331261;}s:36:\"2039eafd-1c11-4e21-a61b-30857f291ae3\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:927b8bf7806f2d287559b86a0b455a59\";s:5:\"title\";s:18:\"WP Responsive Menu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:24:\"/wp-responsive-menu/(.*)\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"wp-responsive-menu/wp-responsive-menu.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"e06be942-cccd-4b2d-a268-06dc78f0b820\";O:8:\"stdClass\":8:{s:5:\"title\";s:22:\"WP Search with Algolia\";s:9:\"condition\";s:34:\"wp-search-with-algolia/algolia.php\";s:10:\"exclusions\";a:4:{i:0;s:71:\"/wp-search-with-algolia/js/algoliasearch/dist/algoliasearch-lite.umd.js\";i:1;s:53:\"/wp-search-with-algolia/js/autocomplete-noconflict.js\";i:2;s:67:\"/wp-search-with-algolia/js/autocomplete.js/dist/autocomplete.min.js\";i:3;s:11:\"var algolia\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:43267e659d599fbb6b42c719b49bb7a7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677857180;}s:36:\"4fc2a7ae-b9e6-410e-93cf-e6d1962add6a\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:4fb90fc73fc2b5d1e37ea2dadfd3cef3\";s:5:\"title\";s:18:\"WP Smart Preloader\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:55:\"/wp-smart-preloader/assets/js/wsp-main-script(.min)?.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:35:\"wp-smart-preloader/wp-preloader.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"7ecf40ce-2bcd-412c-bb01-9e71fecf6be8\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:d37bb5054a24471ca1675d9ab49d01b0\";s:5:\"title\";s:16:\"WP Store Locator\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:18:\"/wp-store-locator/\";i:3;s:33:\"/wp-includes/js/underscore.min.js\";i:4;s:15:\"maps.google.com\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:37:\"wp-store-locator/wp-store-locator.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"7a1d19a2-3a48-40ab-8051-f642fc63ce2d\";O:8:\"stdClass\":8:{s:5:\"title\";s:21:\"WP Ultimate Post Grid\";s:9:\"condition\";s:47:\"wp-ultimate-post-grid/wp-ultimate-post-grid.php\";s:10:\"exclusions\";a:4:{i:0;s:67:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:37:\"/wp-ultimate-post-grid/dist/public.js\";i:2;s:53:\"/wp-ultimate-post-grid-premium/dist/public-premium.js\";i:3;s:15:\"wpupg_grid_args\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e24341fef49bd64b89682d583218c108\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1686597940;}s:36:\"76c86163-ddf3-4113-b620-de9d5058f505\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:517d7d24da9a7072ed389d0fb30374a0\";s:5:\"title\";s:21:\"WPBakery Page Builder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:52:\"/js_composer/assets/js/dist/js_composer_front.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"js_composer/js_composer.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"4f5e5b98-c326-4b9f-9ada-3b257862132c\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:1ec7138c950c355e7af60d49c81139fc\";s:5:\"title\";s:12:\"wpDataTables\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/wpdatatables/\";i:3;s:10:\"highcharts\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"wpdatatables/wpdatatables.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"18be1b8c-0bc4-4a01-abc6-a127aff380c6\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:c62ca58ea081c1271de8dadfa7daac69\";s:5:\"title\";s:7:\"WPForms\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:61:\"/wpforms-offline-forms/assets/js/wpforms-offline-forms.min.js\";i:1;s:30:\"wpforms-offline-forms-js-extra\";i:2;s:20:\"wpformsRecaptchaLoad\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:19:\"wpforms/wpforms.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"8a3cacb6-81bd-456a-a1cc-a4025f8e5234\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0992ac952c0a05bb35e18b1d5744d346\";s:5:\"title\";s:12:\"WPForms Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:20:\"wpformsRecaptchaLoad\";i:1;s:61:\"/wpforms-offline-forms/assets/js/wpforms-offline-forms.min.js\";i:2;s:30:\"wpforms-offline-forms-js-extra\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:24:\"wpforms-lite/wpforms.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"98bbd410-5b01-4244-a8eb-715765180328\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"XL WooCommerce Sales Triggers\";s:9:\"condition\";s:63:\"xl-woocommerce-sales-triggers/xl-woocommerce-sales-triggers.php\";s:10:\"exclusions\";a:3:{i:0;s:61:\"/xl-woocommerce-sales-triggers/assets/js/wcst_combined.min.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ba9e526ddb0157e69757530c6b18b714\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677856813;}s:36:\"bf9f9620-dd0e-4e6f-9a45-4eb78a148f42\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:58663fc781232169e865f6fe7cf1afaa\";s:5:\"title\";s:36:\"YITH WooCommerce Ajax Product Filter\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:71:\"/yith-woocommerce-ajax-navigation/assets/js/yith-wcan-shortcodes.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"yith-woocommerce-ajax-navigation/init.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"b053279d-e07c-438c-bb3e-3a1f4f5d7c5e\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:68b637fd247e40c8e135e4771d739b07\";s:5:\"title\";s:44:\"YITH WooCommerce AJAX Product Filter Premium\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:83:\"/yith-woocommerce-ajax-product-filter-premium/assets/js/yith-wcan-shortcodes.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:53:\"yith-woocommerce-ajax-product-filter-premium/init.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"d94dbbf3-bcab-4e47-9fbb-6b3a7cf92787\";O:8:\"stdClass\":8:{s:5:\"title\";s:36:\"Yotpo Social Reviews for Woocommerce\";s:9:\"condition\";s:49:\"yotpo-social-reviews-for-woocommerce/wc_yotpo.php\";s:10:\"exclusions\";a:1:{i:0;s:63:\"/yotpo-social-reviews-for-woocommerce/assets/js/headerScript.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:45ab742b3fccbd04d7bc973c8582be87\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1680686421;}}s:6:\"themes\";O:8:\"stdClass\":115:{s:36:\"9c623554-5834-4669-9e96-1b894c1939b2\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:0193ea55fce2ada93b262f2824008c0f\";s:5:\"title\";s:7:\"Andaman\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/andaman/assets/js/\";i:3;s:41:\"/wp-andaman-plugins/shortcodes/vc_extend/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:7:\"andaman\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"7374c5a5-69f8-460f-b44f-dee884a824cd\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:24cbda63f1b898ade5562ab4ec6d97a5\";s:5:\"title\";s:6:\"Artale\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:40:\"/artale-elementor/assets/js/modulobox.js\";i:1;s:47:\"/artale-elementor/assets/js/artale-elementor.js\";i:2;s:28:\"/artale/js/jquery-stellar.js\";i:3;s:33:\"/artale/js/core/artale-plugins.js\";i:4;s:32:\"/artale/js/core/artale-custom.js\";i:5;s:10:\"var loader\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:6:\"artale\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"03a9cc62-c167-447d-beb2-65c76c96b056\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Astra\";s:9:\"condition\";s:5:\"astra\";s:10:\"exclusions\";a:1:{i:0;s:41:\"/astra/assets/js/minified/frontend.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:3cce5f3eaf76e098ba8e28f7bbba3f92\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1702486947;}s:36:\"2a2b54cb-8e1d-49d2-bfca-93eee231e470\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:72a8d63e59c10bdf512a62b862d143a7\";s:5:\"title\";s:16:\"Astra - Carousel\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:9:\"var astra\";i:1;s:38:\"/astra/assets/js/minified/style.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"astra\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"7783361f-66fc-4d95-a054-4e9545bb5b48\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Auteur\";s:9:\"condition\";s:13:\"g5plus-auteur\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/g5plus-auteur/assets/js/core.min.js\";i:3;s:30:\"/g5plus-auteur/assets/vendors/\";i:4;s:106:\"/auteur-framework/libs/smart-framework/assets/vendors/perfect-scrollbar/js/perfect-scrollbar.jquery.min.js\";i:5;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:6207fe478e269e7547bda70a46607a49\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737107;}s:36:\"4c618038-8fc7-4d48-8d41-a32da14e5c1e\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"AutoTrader\";s:9:\"condition\";s:10:\"autotrader\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/autotrader/(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:046dfeee2b77390c53e0e7f93b6a3792\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679736741;}s:36:\"18f04f23-35a0-4c45-8cb6-a91d57ca1790\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:835da12f43373029659f766920e81b47\";s:5:\"title\";s:44:\"Avada - Animations & mobile-specific actions\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:31:\"/uploads/fusion-scripts/(.*).js\";i:3;s:18:\"window.off_canvas_\";i:4;s:24:\"/plugins/fusion-builder/\";i:5;s:21:\"/plugins/fusion-core/\";i:6;s:16:\"/Avada/includes/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"90135867-1b95-498b-80d6-f5dbf2f6b318\";O:8:\"stdClass\":8:{s:5:\"title\";s:21:\"Avada - FAQ shortcode\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:41:\"/plugins/fusion-core/js/min/avada-faqs.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b084708c80d8582546e5430219aa4670\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1678277160;}s:36:\"d23b5bb1-1d7f-4109-bf69-b20a2be2d337\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:5e7a2248e1a53d9bb27b187deb541248\";s:5:\"title\";s:23:\"Avada - Fusion carousel\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:58:\"/includes/lib/assets/min/js/library/jquery.carouFredSel.js\";i:3;s:54:\"/includes/lib/assets/min/js/general/fusion-carousel.js\";i:4;s:18:\"fusionCarouselVars\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"98dfa8c1-e72a-4cef-a0b2-8f0c322490fc\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:f16fb109027f4994a7649a8b1663e6f7\";s:5:\"title\";s:19:\"Avada - Fusion form\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:52:\"/fusion-builder/assets/js/min/general/fusion-form.js\";i:3;s:59:\"/fusion-builder/assets/js/min/general/fusion-form-logics.js\";i:4;s:44:\"/includes/lib/assets/min/js/library/cssua.js\";i:5;s:45:\"/includes/lib/assets/min/js/general/fusion.js\";i:6;s:48:\"/includes/lib/assets/min/js/library/modernizr.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"026801fa-af67-47ba-b966-347693f0585f\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:33f50696d353d8bd4eb59ff6e8f44c97\";s:5:\"title\";s:27:\"Avada - Fusion grid gallery\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:55:\"/fusion-builder/assets/js/min/general/fusion-gallery.js\";i:3;s:51:\"/includes/lib/assets/min/js/library/imagesLoaded.js\";i:4;s:46:\"/includes/lib/assets/min/js/library/isotope.js\";i:5;s:46:\"/includes/lib/assets/min/js/library/packery.js\";i:6;s:48:\"/includes/lib/assets/min/js/library/lazysizes.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c8349314-15a3-481e-973b-e4d936e4420e\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:56fa9993a573540c83eda9c49fae5e3c\";s:5:\"title\";s:21:\"Avada - Fusion slider\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:42:\"/fusion-core/js/min/avada-fusion-slider.js\";i:3;s:16:\"/Avada/includes/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"7a04bc85-0fec-4487-ae05-bb2e5d8d0420\";O:8:\"stdClass\":8:{s:5:\"title\";s:34:\"Avada - Load Portfolio on pageload\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/library/packery.js\";i:3;s:19:\"/library/isotope.js\";i:4;s:24:\"/library/imagesLoaded.js\";i:5;s:27:\"/general/fusion-lightbox.js\";i:6;s:38:\"/fusion-core/js/min/avada-portfolio.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c3f0ed4d94499b68c77d95db37d1d399\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1696601814;}s:36:\"55bd510c-78aa-49d5-8304-8be2ee2ab0da\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:2189c1c769d65cfc2182e4822847071b\";s:5:\"title\";s:19:\"Avada - Mobile menu\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/assets/min/js/general/avada-menu.js\";i:3;s:48:\"/includes/lib/assets/min/js/library/modernizr.js\";i:4;s:52:\"/includes/lib/assets/min/js/library/jquery.easing.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"ddf00672-c35c-4b68-aeca-925e68bf12b2\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:97a185f08af70c39c7e221faab0f73eb\";s:5:\"title\";s:17:\"Avada - OffCanvas\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:35:\"/uploads/fusion-scripts/(.*).min.js\";i:3;s:18:\"window.off_canvas_\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"17544cc3-9d3a-4611-bc5d-44d04e2786fa\";O:8:\"stdClass\":8:{s:5:\"title\";s:44:\"Avada - Show the Portfolio grid on page load\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:51:\"/includes/lib/assets/min/js/library/imagesLoaded.js\";i:3;s:46:\"/includes/lib/assets/min/js/library/isotope.js\";i:4;s:48:\"/includes/lib/assets/min/js/library/lazysizes.js\";i:5;s:48:\"/includes/lib/assets/min/js/library/modernizr.js\";i:6;s:46:\"/includes/lib/assets/min/js/library/packery.js\";i:7;s:38:\"/fusion-core/js/min/avada-portfolio.js\";i:8;s:18:\"avadaPortfolioVars\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:9d1a9b0c2ca20fca764a82f197b962fd\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1696601823;}s:36:\"c6c3347c-14e0-4766-afa5-df33a47f5a5a\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:3ff44421b404c5efffa25e78e479e4ea\";s:5:\"title\";s:19:\"Avada - Sticky menu\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:42:\"/Avada/assets/min/js/general/avada-menu.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"232596c1-6a6a-4fe8-a5c3-a60fa74a9456\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:0d727d80bb132f17c737e55883fe4be0\";s:5:\"title\";s:35:\"Avada - WooCommerce product gallery\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:50:\"/assets/min/js/general/avada-woo-product-images.js\";i:3;s:56:\"/includes/lib/assets/min/js/library/jquery.flexslider.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"95ece7e4-3b19-45e5-aa28-14f833c9afca\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Avesa\";s:9:\"condition\";s:5:\"avesa\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"/avesa/js/main.js\";i:3;s:20:\"/avesa/js/isotope.js\";i:4;s:24:\"/sw_core/js/slick.min.js\";i:5;s:41:\"/avesa/js/bootstrap-datetimepicker.min.js\";i:6;s:26:\"/avesa/js/bootstrap.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:aad8bfcc594eec02e3b0d635198dee5e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737993;}s:36:\"f2bfe477-4e45-4e52-a7d9-4d0ba3a92258\";O:8:\"stdClass\":8:{s:5:\"title\";s:4:\"Besa\";s:9:\"condition\";s:4:\"besa\";s:10:\"exclusions\";a:2:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:9:\"/besa/js/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c238e89523c46ca28b08e401f42f6ccc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738204;}s:36:\"bd94908c-8138-4995-986b-47ec66494bdd\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"BeTheme\";s:9:\"condition\";s:7:\"betheme\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:9:\"/betheme/\";i:2;s:3:\"mfn\";i:3;s:37:\"/wp-includes/js/jquery/ui/tabs.min.js\";i:4;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b99156eb9eeb357c0a70bd3bda6861cc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738639;}s:36:\"6fb2b9d7-6ecc-4260-999c-938fbebdbf01\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:de8504b73ea228d0ea9bbce69752092e\";s:5:\"title\";s:6:\"Bridge\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:27:\"/bridge-creative/bridge/js/\";i:2;s:16:\"/wp-includes/js/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:6:\"bridge\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"65698b6b-85dd-41ef-8fd7-718f1e983dba\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"Car Dealer\";s:9:\"condition\";s:9:\"cardealer\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:27:\"/wp-includes/js/jquery/(.*)\";i:3;s:18:\"/cardealer/js/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b1111424fff61af8d1e152dcdd6810f6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737517;}s:36:\"3927d724-5a0a-402b-a838-858d30b54ea9\";O:8:\"stdClass\":8:{s:5:\"title\";s:34:\"Cardea - Show Page Content on Load\";s:9:\"condition\";s:9:\"cardea-wp\";s:10:\"exclusions\";a:5:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:28:\"/themes/cardea-wp/js/main.js\";i:2;s:37:\"/themes/cardea-wp/js/jquery.sticky.js\";i:3;s:38:\"/themes/cardea-wp/js/jquery.fitvids.js\";i:4;s:45:\"/themes/cardea-wp/js/jquery.smartmenus.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d65d1a8303b0c7508278884520e4bec7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1698677525;}s:36:\"087fb457-a09d-4140-84bd-c9bc1e8195b7\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"CheerUp\";s:9:\"condition\";s:7:\"cheerup\";s:10:\"exclusions\";a:9:{i:0;s:36:\"/cheerup/js/jquery.sticky-sidebar.js\";i:1;s:32:\"/cheerup/js/object-fit-images.js\";i:2;s:29:\"/cheerup/js/jquery.fitvids.js\";i:3;s:34:\"/cheerup/js/jquery.mfp-lightbox.js\";i:4;s:27:\"/cheerup/js/ie-polyfills.js\";i:5;s:20:\"/cheerup/js/theme.js\";i:6;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:7;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:8;s:36:\"/wp-includes/js/jquery/jquery.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:13bcf562f45afb245dc4f76fecfba6d6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1696429398;}s:36:\"eb86aedb-91e6-480c-b76c-756ac1da41be\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Clover\";s:9:\"condition\";s:12:\"clover-theme\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/clover-theme/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:89372f3d9321ae09c94488592084da29\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738878;}s:36:\"6e90b649-5736-497f-9bc6-515900cfea8a\";O:8:\"stdClass\":8:{s:5:\"title\";s:17:\"Divi - Animations\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:26:\"/Divi/js/custom.unified.js\";i:5;s:21:\"/js/magnific-popup.js\";i:6;s:8:\"var DIVI\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c0abf30dba4ff13db836d1b01685953a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737389;}s:36:\"70916c43-4e02-4932-b6aa-91a1815bc755\";O:8:\"stdClass\":8:{s:5:\"title\";s:23:\"Divi - Background video\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:26:\"/Divi/js/custom.unified.js\";i:3;s:21:\"/js/mediaelement/(.*)\";i:4;s:4:\"mejs\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c7edea41ae6716291e2d32a2ab429209\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738240;}s:36:\"08531785-9818-4e30-903e-564637a2ad7a\";O:8:\"stdClass\":8:{s:5:\"title\";s:21:\"Divi - Counter module\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:26:\"/Divi/js/custom.unified.js\";i:5;s:21:\"/js/magnific-popup.js\";i:6;s:8:\"var DIVI\";i:7;s:71:\"/Divi/includes/builder/feature/dynamic-assets/assets/js/easypiechart.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2c46b9f5a770f260c3f7115bb330b2d5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679736810;}s:36:\"b996762a-84ef-440d-a089-73a187936fbf\";O:8:\"stdClass\":8:{s:5:\"title\";s:18:\"Divi - Mobile menu\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:23:\"/Divi/js/scripts.min.js\";i:3;s:26:\"/Divi/js/custom.unified.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b9116994f4e4b9b9fa574440c00d2f0d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738580;}s:36:\"ae096e1e-9c36-46ad-a3d1-c26ea507276b\";O:8:\"stdClass\":8:{s:5:\"title\";s:22:\"Divi - Sticky elements\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:74:\"/Divi/includes/builder/feature/dynamic-assets/assets/js/sticky-elements.js\";i:5;s:8:\"var DIVI\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:8b62db03c90245f3e690335b079b05dc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737191;}s:36:\"349f31f0-dd10-41d3-b0a4-9c5df64879f8\";O:8:\"stdClass\":8:{s:5:\"title\";s:18:\"Divi - Sticky menu\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:32:\"/js/jquery/jquery-migrate.min.js\";i:2;s:23:\"/Divi/js/scripts.min.js\";i:3;s:73:\"/Divi/includes/builder/feature/dynamic-assets/assets/js/magnific-popup.js\";i:4;s:12:\"jqueryParams\";i:5;s:11:\"firstHeader\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b7b84aca0f0dc6a1ced31d38626c50ea\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738821;}s:36:\"59563458-5f04-4959-b3e2-53e49e169d67\";O:8:\"stdClass\":8:{s:5:\"title\";s:40:\"Divi - WooCommerce Single Product Images\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:1:{i:0;s:23:\"/Divi/js/scripts.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:f9c5bdba8b39fc877b41dea00fa756f9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1684342262;}s:36:\"6426539e-4e43-4fef-ab5a-3eb7b2a8b057\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Eikra\";s:9:\"condition\";s:5:\"eikra\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:17:\"/eikra/assets/js/\";i:3;s:8:\"EikraObj\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:55d2581ad975eb6325bc97fc3d3b0cb8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738450;}s:36:\"59020bd6-069f-4f2d-afa2-fbdefa03211c\";O:8:\"stdClass\":8:{s:5:\"title\";s:4:\"Ekko\";s:9:\"condition\";s:4:\"ekko\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:6:\"/ekko/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2c06f4a1949f8ba4e77042a47674fd9e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737803;}s:36:\"d82f5cdd-c5d3-4596-94dc-1e25aaff2083\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Elessi\";s:9:\"condition\";s:12:\"elessi-theme\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:44:\"/elessi-theme/assets/js/min/functions.min.js\";i:3;s:39:\"/elessi-theme/assets/js/min/main.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d5d2b7fda7b8a2b5b91d430f7602e230\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737773;}s:36:\"f0587c21-54d0-429d-8efe-18a93dacb18d\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:5fc04cc678cb54567aedb51027933002\";s:5:\"title\";s:6:\"Enfold\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:41:\"/dynamic_avia/avia-footer-scripts-(.*).js\";i:3;s:18:\"var avia_is_mobile\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:6:\"enfold\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"cc0550cb-918e-419d-b4f2-1809cf666dbb\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:eb759a03d0ca292c948f09d004a2963f\";s:5:\"title\";s:20:\"Enfold - LayerSlider\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"layerslider\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:6:\"enfold\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"ec883654-4f63-4fae-a3ef-923dcbc2426d\";O:8:\"stdClass\":8:{s:5:\"title\";s:19:\"Enfold - Shortcodes\";s:9:\"condition\";s:6:\"enfold\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:18:\"/enfold/js/avia.js\";i:3;s:24:\"/enfold/js/shortcodes.js\";i:4;s:47:\"/enfold/config-templatebuilder/avia-shortcodes/\";i:5;s:25:\"/enfold/js/avia-compat.js\";i:6;s:37:\"/enfold/js/waypoints/waypoints.min.js\";i:7;s:31:\"/enfold/js/avia-snippet-(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:072fc4077d7071791d774d6ddbf5dc2a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1684519716;}s:36:\"fe3546f0-be3e-4173-8992-a7f6f203b82f\";O:8:\"stdClass\":8:{s:5:\"title\";s:8:\"Envision\";s:9:\"condition\";s:8:\"envision\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:27:\"/envision/lib/js/app.min.js\";i:3;s:13:\"var CloudFwOp\";}s:10:\"is_default\";i:1;s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:fc5f7d69b646ed95835badc0fc23bc11\";s:10:\"created_at\";i:1679737494;}s:36:\"d997b942-19de-4710-9c81-79d3c65cbd76\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:047f009f2a1f4cdf2088c46be47e385b\";s:5:\"title\";s:6:\"Ewebot\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"/gt3-themes-core/\";i:3;s:27:\"/uploads/gt3-assets/js/(.*)\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:6:\"ewebot\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"53d29aec-8ae4-4273-b748-f5bd52dfe177\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Farvis\";s:9:\"condition\";s:6:\"farvis\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:8:\"/farvis/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:26bff2f3a6ff6347d35edf5c77a35687\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737972;}s:36:\"fb01246b-a5f8-4021-b514-c02cf55e80bd\";O:8:\"stdClass\":8:{s:5:\"title\";s:8:\"Flatsome\";s:9:\"condition\";s:8:\"flatsome\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:31:\"/flatsome/assets/js/flatsome.js\";i:3;s:41:\"/flatsome/assets/libs/packery.pkgd.min.js\";i:4;s:34:\"/flatsome/assets/js/woocommerce.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:26fb1cf80f074ca199d8a7e94c5fc796\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738732;}s:36:\"4d65dc12-9ce7-4171-94a7-9821fd95240e\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:28a6f8b3319c107a34603be0f01a4bcf\";s:5:\"title\";s:21:\"Flatsome - Google map\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"maps.googleapis.com\";i:3;s:18:\"google.maps.LatLng\";i:4;s:34:\"/wp-includes/js/hoverIntent.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:8:\"flatsome\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"890e15b6-c66b-4a9e-9b7d-55417df94916\";O:8:\"stdClass\":8:{s:5:\"title\";s:17:\"Flatsome - Images\";s:9:\"condition\";s:8:\"flatsome\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:58:\"/flatsome/inc/integrations/wp-rocket/flatsome-wp-rocket.js\";i:3;s:31:\"/flatsome/assets/js/flatsome.js\";i:4;s:65:\"/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:f2d60aad9f2f5395e3e145cf8f8ab165\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737691;}s:36:\"cb54d070-8ee0-4c35-9fa9-b2bac73ccf39\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Frida\";s:9:\"condition\";s:5:\"frida\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:7:\"/frida/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:109ddf56796a5133e12279f3daa5ff62\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738013;}s:36:\"9e78539a-03d9-442b-ab94-dd3b7a9658e4\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:80a330247d61d729fcd78dc01de6ed2f\";s:5:\"title\";s:27:\"GeneratePress - Mobile menu\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/generatepress/assets/js/menu.min.js\";i:1;s:17:\"generatepressMenu\";i:2;s:49:\"/gp-premium/menu-plus/functions/js/offside.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:13:\"generatepress\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"6373bbb2-877c-4075-b6e4-7c58d686b25c\";O:8:\"stdClass\":8:{s:5:\"title\";s:36:\"HealthFirst - Prevent console errors\";s:9:\"condition\";s:11:\"healthfirst\";s:10:\"exclusions\";a:7:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:34:\"/wp-includes/js/hoverIntent.min.js\";i:2;s:70:\"/wp-content/plugins/healthfirst-core/assets/js/healthfirst-core.min.js\";i:3;s:74:\"/wp-content/plugins/healthfirst-core/assets/plugins/modernizr/modernizr.js\";i:4;s:101:\"/wp-content/plugins/healthfirst-core/assets/plugins/perfect-scrollbar/perfect-scrollbar.jquery.min.js\";i:5;s:52:\"/wp-content/themes/healthfirst/assets/js/main.min.js\";i:6;s:83:\"/wp-content/themes/healthfirst/assets/plugins/waitforimages/jquery.waitforimages.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d244b3c692f8d023048207dbe9eb84da\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1699370973;}s:36:\"2c72e7e6-cb77-44e9-af87-d5c42ae6db52\";O:8:\"stdClass\":8:{s:5:\"title\";s:20:\"Honor - WPBakery fix\";s:9:\"condition\";s:5:\"honor\";s:10:\"exclusions\";a:3:{i:0;s:22:\"/honor/js/__scripts.js\";i:1;s:13:\"HONOR_STORAGE\";i:2;s:13:\"/js_composer/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:9f228373ff4d172655dbf5cb3b1bc23a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679736895;}s:36:\"9309d1d3-1035-4a2c-8ced-075bc3ff9957\";O:8:\"stdClass\":8:{s:5:\"title\";s:11:\"HotelMaster\";s:9:\"condition\";s:11:\"hotelmaster\";s:10:\"exclusions\";a:7:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:38:\"/hotelmaster/javascript/gdlr-script.js\";i:3;s:48:\"/hotelmaster/plugins/dl-menu/modernizr.custom.js\";i:4;s:45:\"/hotelmaster/plugins/dl-menu/jquery.dlmenu.js\";i:5;s:46:\"/hotelmaster/plugins/superfish/js/superfish.js\";i:6;s:37:\"/hotelmaster/plugins/jquery.easing.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:978eaddad3b1047e479407b6d92197aa\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738595;}s:36:\"4a09f745-cbb1-47c8-b50a-c8014d5d1335\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:e813a548bceac6765a1cdf2316f1a6ab\";s:5:\"title\";s:18:\"HotelMaster - Blog\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:30:\"/wp-includes/js/masonry.min.js\";i:1;s:44:\"/gp-premium/blog/functions/js/scripts.min.js\";i:2;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:11:\"hotelmaster\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f2d8f704-ec68-4278-9ca2-885daa0c1ce5\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:398a264e302e42640553681e8759cd07\";s:5:\"title\";s:21:\"HotelMaster - Masonry\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:49:\"/gp-premium/menu-plus/functions/js/offside.min.js\";i:1;s:7:\"offSide\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:11:\"hotelmaster\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"92b2e258-1f44-41c1-b1bd-f117f61ee49d\";O:8:\"stdClass\":8:{s:5:\"title\";s:31:\"Jannah Theme - Fix masonry grid\";s:9:\"condition\";s:6:\"jannah\";s:10:\"exclusions\";a:4:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:30:\"/wp-includes/js/masonry.min.js\";i:2;s:44:\"/wp-includes/js/jquery/jquery.masonry.min.js\";i:3;s:4:\"tie-\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:35f7f183089309f52046377ca65e905a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1699642920;}s:36:\"df52436c-53d6-461a-b81a-cd0b21680524\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"JNews\";s:9:\"condition\";s:5:\"jnews\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:17:\"/jnews/assets/js/\";i:3;s:5:\"jnews\";i:4;s:4:\"jfla\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:5d90e451984f9d894b1aabb0d00f30a2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738860;}s:36:\"87ed69a2-3295-4fad-a82e-eeb02925a5dc\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Jobify\";s:9:\"condition\";s:6:\"jobify\";s:10:\"exclusions\";a:4:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:24:\"/jobify/js/jobify.min.js\";i:3;s:30:\"/jobify/js/select2.full.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:592006aa4562a6915e344e5e2a09e5ee\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1686856948;}s:36:\"28a0b1ea-8d2f-4931-a48a-166b8df8a773\";O:8:\"stdClass\":8:{s:5:\"title\";s:4:\"JOYN\";s:9:\"condition\";s:4:\"joyn\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:81:\"/swift-framework/includes/page-builder/frontend-assets/js/lib/modernizr-custom.js\";i:3;s:78:\"/swift-framework/includes/page-builder/frontend-assets/js/spb-functions.min.js\";i:4;s:68:\"/swift-framework/includes/swift-slider/assets/js/swift-slider.min.js\";i:5;s:55:\"/swift-framework/public/js/lib/imagesloaded.pkgd.min.js\";i:6;s:28:\"/joyn/js/owl.carousel.min.js\";i:7;s:25:\"/joyn/js/theme-scripts.js\";i:8;s:21:\"/joyn/js/functions.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c395470ad2d4d681836cd942bbb03120\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738527;}s:36:\"542be60a-2346-4740-9a41-8a580c4f013c\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Juno Toys\";s:9:\"condition\";s:8:\"junotoys\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:28:\"/junotoys/fw/js/core.init.js\";i:3;s:29:\"/junotoys/fw/js/core.utils.js\";i:4;s:28:\"/junotoys/fw/js/superfish.js\";i:5;s:32:\"/junotoys/fw/js/swiper/swiper.js\";i:6;s:41:\"/trx_utils/shortcodes/theme.shortcodes.js\";i:7;s:30:\"/wp-includes/js/jquery/ui/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2acab38e8356d36355bb81d931e7fba4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737788;}s:36:\"06167710-10c7-446e-a08b-ce676e444102\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"Jupiter\";s:9:\"condition\";s:7:\"jupiter\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/jupiter/\";i:3;s:33:\"/wp-includes/js/underscore.min.js\";i:4;s:12:\"WebFont.load\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:89c5c30498c2989611f9044be006197c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738430;}s:36:\"5d042e1f-7e62-4ec4-ba31-30d396004522\";O:8:\"stdClass\":8:{s:5:\"title\";s:8:\"JupiterX\";s:9:\"condition\";s:8:\"jupiterx\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"/jupiterx/(.*).js\";i:3;s:33:\"/wp-includes/js/underscore.min.js\";i:4;s:12:\"WebFont.load\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b06632962a4948d4944fd8d79ffbfceb\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737312;}s:36:\"c4b030ea-66a1-4729-85bf-a484e373a316\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"Kadence\";s:9:\"condition\";s:7:\"kadence\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/kadence/assets/js/navigation.min.js\";i:1;s:23:\"mobile_menu_breakpoint \";i:2;s:13:\"kadenceConfig\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:4b7907ee68218db279648da9bf7102d1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737958;}s:36:\"20c605b4-3e3a-4bb0-a5e5-a08e2cb0f31f\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Kalium\";s:9:\"condition\";s:6:\"kalium\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/kalium/assets/js/main.min.js\";i:3;s:22:\"mobile_menu_breakpoint\";i:4;s:6:\"var _k\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:1fcb99a1ab06e1e36635365ed3e59ce5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737406;}s:36:\"e1e04a7d-635a-4e28-83d9-e345ce40e354\";O:8:\"stdClass\":8:{s:5:\"title\";s:4:\"Kava\";s:9:\"condition\";s:4:\"kava\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:31:\"/kava/assets/js/theme-script.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:359d67efbf530c998245225dd3245a88\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738609;}s:36:\"e833c36e-ee89-4924-b608-3f28327c2f85\";O:8:\"stdClass\":8:{s:5:\"title\";s:3:\"Lay\";s:9:\"condition\";s:3:\"lay\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:31:\"/wp-includes/js/backbone.min.js\";i:2;s:33:\"/wp-includes/js/underscore.min.js\";i:3;s:5:\"/lay/\";i:4;s:19:\"/laytheme-carousel/\";i:5;s:15:\"window.laytheme\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:7c718c6da874ea6e4b27c6d70bc4e7e8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737453;}s:36:\"2df2ef47-a833-4711-ba54-48dc62586f37\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:85d9922ac61ed833fd047a67029df8e5\";s:5:\"title\";s:8:\"LazaNews\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"/jquery.custom.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:8:\"lazanews\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"9443304a-34e9-4700-a03a-5f8f62f83ed1\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Listeo\";s:9:\"condition\";s:6:\"listeo\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/listeo/js/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:db7da585545001f5ae614a2810f08f3a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737244;}s:36:\"77afa73c-c4a8-42a8-aaee-43f6a761364e\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"ListingPro\";s:9:\"condition\";s:10:\"listingpro\";s:10:\"exclusions\";a:13:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:62:\"/listingpro/assets/lib/jquerym.menu/js/jquery.mmenu.min.all.js\";i:3;s:73:\"/listingpro/assets/lib/Magnific-Popup-master/jquery.magnific-popup.min.js\";i:4;s:41:\"/listingpro/assets/js/select2.full.min.js\";i:5;s:49:\"/listingpro/assets/js/jquery.city-autocomplete.js\";i:6;s:42:\"/listingpro/assets/js/chosen.jquery.min.js\";i:7;s:55:\"/listingpro/assets/lib/bootstrap/js/bootstrap-slider.js\";i:8;s:34:\"/listingpro/assets/js/jquery-ui.js\";i:9;s:31:\"/listingpro/assets/js/mapbox.js\";i:10;s:29:\"/listingpro/assets/js/main.js\";i:11;s:46:\"/listingpro/assets/js/leaflet.markercluster.js\";i:12;s:4:\"maps\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:0b365e43dfc65d2b1b70fac6510c7c9c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737938;}s:36:\"01b369b5-b578-4314-8e95-40b67a41d75a\";O:8:\"stdClass\":8:{s:5:\"title\";s:12:\"Master Study\";s:9:\"condition\";s:11:\"masterstudy\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/masterstudy/assets/js/custom.js \";i:3;s:51:\"/masterstudy/assets/vendors/jquery.fancybox.min.js \";i:4;s:42:\"/masterstudy/assets/js/select2.full.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:0ee224c20e4ef7d546733d933db598f2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737878;}s:36:\"6b000cc7-d33b-4109-9c39-6119a5d81cde\";O:8:\"stdClass\":8:{s:5:\"title\";s:4:\"Maya\";s:9:\"condition\";s:4:\"maya\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/maya/js/jquery.mobilemenu.js\";i:3;s:25:\"/maya/js/jquery.custom.js\";i:4;s:38:\"/maya/core/includes/js/jquery.tipsy.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:719fe28004fcdd81a820602924aa8074\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737916;}s:36:\"ef3c76d6-1041-473d-81ea-a5a6e8c86735\";O:8:\"stdClass\":8:{s:5:\"title\";s:11:\"MH Magazine\";s:9:\"condition\";s:11:\"mh-magazine\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:13:\"/mh-magazine/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2a0cd6efc2f46be69de61712729a2ec9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737743;}s:36:\"9cbb2777-5524-43b8-af36-692b27452c0d\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"Minimog\";s:9:\"condition\";s:7:\"minimog\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/minimog/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:61c0c235042359ee7d2a9035e79a7da2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738135;}s:36:\"7eb81c74-8062-4a6c-bf66-b7c5bc160141\";O:8:\"stdClass\":8:{s:5:\"title\";s:15:\"Moozo Elementor\";s:9:\"condition\";s:15:\"moozo-elementor\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:39:\"/moozo-elementor/assets/js/countdown.js\";i:3;s:57:\"/moozo-elementor/assets/vendor/countdown/countdown.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2ddb538c8e6b6c766fffd0d5c861fd82\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738623;}s:36:\"e90b7bfa-9ff6-4e1a-bf29-6207d55fdd39\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Motor\";s:9:\"condition\";s:5:\"motor\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:10:\"/motor/js/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b33538179f5661a86cbe327a1793e199\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1683973354;}s:36:\"445e625a-f955-41fa-84de-65d9ea19be07\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"My Listing\";s:9:\"condition\";s:10:\"my-listing\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/my-listing/assets/\";i:3;s:41:\"/wp-includes/js/dist/vendor/moment.min.js\";i:4;s:19:\"maps.googleapis.com\";i:5;s:9:\"MyListing\";i:6;s:17:\"_Explore_Settings\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:afacb777229ddf5cabceacc64948057d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737725;}s:36:\"00b8cd2d-2781-4fbb-ac5d-00750ba94ac9\";O:8:\"stdClass\":8:{s:5:\"title\";s:18:\"Neve - Mobile menu\";s:9:\"condition\";s:4:\"neve\";s:10:\"exclusions\";a:1:{i:0;s:40:\"/neve/assets/js/build/modern/frontend.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:5ae731cc06dd9284f8172675a6fe81ab\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738714;}s:36:\"483abc54-f1fc-47dc-bfc1-a269c7d1c849\";O:8:\"stdClass\":8:{s:5:\"title\";s:18:\"Newspaper - Images\";s:9:\"condition\";s:9:\"Newspaper\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"tagdiv_theme.min.js\";i:3;s:13:\"tdBlocksArray\";i:4;s:33:\"/wp-includes/js/underscore.min.js\";i:5;s:28:\"/td-cloud-library/assets/js/\";i:6;s:44:\"/npm/slick-carousel@1.8.1/slick/slick.min.js\";i:7;s:16:\"tdb-gallery-wrap\";i:8;s:13:\"tdBlocksArray\";i:9;s:4:\"tdb_\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:649ff22527bac2b1c8e0115cd3851d53\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1695805761;}s:36:\"50db8d14-d421-4237-be14-a6f7b5c11ec5\";O:8:\"stdClass\":8:{s:5:\"title\";s:28:\"Newspaper - Slider & YouTube\";s:9:\"condition\";s:9:\"Newspaper\";s:10:\"exclusions\";a:14:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"tagdiv_theme.min.js\";i:3;s:13:\"tdBlocksArray\";i:4;s:11:\"tdb_globals\";i:5;s:19:\"td_youtube_list_ids\";i:6;s:9:\"iosSlider\";i:7;s:53:\"/td-cloud-library/assets/js/js_files_for_front.min.js\";i:8;s:33:\"/wp-includes/js/underscore.min.js\";i:9;s:28:\"/td-cloud-library/assets/js/\";i:10;s:44:\"/npm/slick-carousel@1.8.1/slick/slick.min.js\";i:11;s:16:\"tdb-gallery-wrap\";i:12;s:13:\"tdBlocksArray\";i:13;s:4:\"tdb_\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:7e2eeee57ae458c5959342eda6526bf1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1695805747;}s:36:\"514f4c30-2b67-4648-960e-dfe1cc401ca5\";O:8:\"stdClass\":8:{s:5:\"title\";s:4:\"Niva\";s:9:\"condition\";s:4:\"niva\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/niva/js/\";i:3;s:26:\"/sweetthemes-framework/js/\";i:4;s:8:\"mt_typed\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c4838f73a344b829ed626635e210dcf4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738256;}s:36:\"e67ee504-c3b1-455e-88ab-1fae8c830652\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"OceanWP\";s:9:\"condition\";s:7:\"oceanwp\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/oceanwp/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:db37af4b7d12695d37d9256313a5f37a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737552;}s:36:\"e44e240a-8765-4f4f-b67e-d54e4b727506\";O:8:\"stdClass\":8:{s:5:\"title\";s:21:\"OceanWP - Mobile menu\";s:9:\"condition\";s:7:\"oceanwp\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:45:\"/ocean-side-panel/assets/js/side-panel.min.js\";i:3;s:39:\"/oceanwp/assets/js/theme.vanilla.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:9babbcd52b2ce558d299a06cd1130a11\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738463;}s:36:\"897b0100-958d-4a02-b6b2-1e753e9869f4\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"PenNews\";s:9:\"condition\";s:7:\"pennews\";s:10:\"exclusions\";a:4:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:25:\"/pennews/js/script.min.js\";i:3;s:29:\"/pennews/js/script.lib.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:02811fa00bc1471bb5be0457ce0ee005\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737471;}s:36:\"edd3ba03-e0fd-4b6e-911b-60b29f3471bf\";O:8:\"stdClass\":8:{s:5:\"title\";s:15:\"Pharmacy Mentor\";s:9:\"condition\";s:14:\"pharmacymentor\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:16:\"/pharmacymentor/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:3188aaf1ef2c39937450f2a14ebb1174\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738214;}s:36:\"725415ff-cc76-45cc-a131-3170e5aa30fc\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Porto\";s:9:\"condition\";s:5:\"porto\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:26:\"/wp-includes/js/jquery/ui/\";i:3;s:18:\"/porto/js/theme.js\";i:4;s:22:\"/porto/js/theme.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:8493f398f200c8dffe60d46439dd3360\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737758;}s:36:\"2c19bcec-f3ff-4873-bfd7-db6bc0f6433c\";O:8:\"stdClass\":8:{s:5:\"title\";s:20:\"Porto - Owl Carousel\";s:9:\"condition\";s:5:\"porto\";s:10:\"exclusions\";a:6:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:26:\"/wp-includes/js/jquery/ui/\";i:2;s:25:\"/porto/js/theme(|.min).js\";i:3;s:37:\"/porto/js/libs/owl.carousel(|.min).js\";i:4;s:31:\"/porto/js/theme-async(|.min).js\";i:5;s:41:\"/prettyPhoto/jquery.prettyPhoto(|.min).js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:f34f5199fb7fca78852cd3fb7758f178\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1687527252;}s:36:\"31347ccb-f69e-4cd3-bd47-b80ce14ac76e\";O:8:\"stdClass\":8:{s:5:\"title\";s:8:\"ProPhoto\";s:9:\"condition\";s:9:\"prophoto7\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:29:\"/prophoto7/js/bundle.front.js\";i:2;s:33:\"/wp-includes/js/underscore.min.js\";i:3;s:8:\"PROPHOTO\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:a5836a56c4472fade4dc6ebfe2281554\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737425;}s:36:\"a8208c04-865c-49aa-ab96-41e378d391c8\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Publisher\";s:9:\"condition\";s:9:\"publisher\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:14:\"/publisher/js/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:32c73be0cb175da278c8e2af0811b0d1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738169;}s:36:\"a0d69f3d-1356-4a1d-a600-2f2f788b8a9a\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"REHub\";s:9:\"condition\";s:11:\"rehub-theme\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/rehub-theme/js/custom_floatpanel.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:321af1febb74f488cf911380893739b2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738502;}s:36:\"8b74bbe5-7f32-42df-908f-78c99a8cad82\";O:8:\"stdClass\":8:{s:5:\"title\";s:3:\"Rey\";s:9:\"condition\";s:3:\"rey\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:20:\"/rey/scripts-(.*).js\";i:3;s:20:\"/rey-core/assets/js/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:e46567cd0f3ec9b37e7230dc87eac367\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737011;}s:36:\"5c9115d3-bcbd-49d6-8feb-4880d2b82bfe\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Rife Free\";s:9:\"condition\";s:9:\"rife-free\";s:10:\"exclusions\";a:5:{i:0;s:27:\"/rife-free/js/script.min.js\";i:1;s:33:\"/rife-free/js/isotope.pkgd.min.js\";i:2;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:3;s:25:\"/jquery-migrate(.min)?.js\";i:4;s:8:\"var reJS\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:74a449954de79625eccc6750e87af8f6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738107;}s:36:\"6542b2fd-1f91-4862-aa18-11eecc02faaf\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Roisin\";s:9:\"condition\";s:6:\"roisin\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/themes/roisin/assets/js/main.min.js\";i:3;s:49:\"/plugins/roisin-core/assets/js/roisin-core.min.js\";i:4;s:34:\"/wp-includes/js/hoverIntent.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:8f38fe58034772931110930b91cb6797\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1685964523;}s:36:\"5a192ad9-d150-4aa0-8efc-d68131cb7a37\";O:8:\"stdClass\":8:{s:5:\"title\";s:20:\"Sahifa - Mobile Menu\";s:9:\"condition\";s:6:\"sahifa\";s:10:\"exclusions\";a:3:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:37:\"/themes/sahifa/js/ilightbox.packed.js\";i:2;s:23:\"/translate_a/element.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:06ebe49f4c1e5b04cece831f8bb198a3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1687540363;}s:36:\"7ae9d978-d63c-4a58-beb3-418bebb5b23c\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"Salient\";s:9:\"condition\";s:7:\"salient\";s:10:\"exclusions\";a:4:{i:0;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/salient/\";i:3;s:12:\"winW > bodyW\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b3e12d57ac23897be1bb2c673e3fc761\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679736950;}s:36:\"35aaa6c5-4a37-4161-b504-fb3ebc4b1148\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:d612db1dd8dc76faa6a36a9ebfd336dc\";s:5:\"title\";s:23:\"Salient - Nectar slider\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:42:\"/salient-nectar-slider/js/nectar-slider.js\";i:1;s:46:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js \";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:7:\"salient\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"84c95206-3e59-4eb3-a0c9-e2231a1c0a48\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"SEO Lounge\";s:9:\"condition\";s:9:\"seolounge\";s:10:\"exclusions\";a:4:{i:0;s:67:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:52:\"/js_composer/assets/js/dist/js_composer_front.min.js\";i:2;s:37:\"/seolounge/js/radiantthemes-custom.js\";i:3;s:39:\"/seolounge/js/radiantthemes-core.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:3d72b779d9c4ba6b51cc5b245b141433\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1691695809;}s:36:\"cd44aa56-088a-40dd-bf1e-f835efa68626\";O:8:\"stdClass\":8:{s:5:\"title\";s:11:\"Shoptimizer\";s:9:\"condition\";s:11:\"shoptimizer\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:37:\"/shoptimizer/assets/js/lazyload-bg.js\";i:3;s:34:\"/shoptimizer/assets/js/main.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:6c32b43f4da639e5901574fac6b7d387\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737143;}s:36:\"d2c48a48-430a-4eea-bc05-99b66f1f6a7b\";O:8:\"stdClass\":8:{s:5:\"title\";s:8:\"SmartMag\";s:9:\"condition\";s:9:\"smart-mag\";s:10:\"exclusions\";a:1:{i:0;s:25:\"/smart-mag/js/lazyload.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:23d6b7878bd0087addb067db3fa39864\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738490;}s:36:\"dd0d9133-ef17-4dac-b174-9f25d535838f\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"Soledad\";s:9:\"condition\";s:7:\"soledad\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/soledad/js/main.js\";i:3;s:24:\"/soledad/js/more-post.js\";i:4;s:30:\"/soledad/js/libs-script.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d3f78b26c2d11c99230171cc6378d06e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737664;}s:36:\"3b85dd6e-9534-477e-9b15-940d0e155c8d\";O:8:\"stdClass\":8:{s:5:\"title\";s:22:\"Spacious - Mobile Menu\";s:9:\"condition\";s:8:\"spacious\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:26:\"/spacious/js/navigation.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d423c1f002b10b8682ee24d616b19c9c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1703192854;}s:36:\"d657dc56-5c04-439a-8987-401f89a65bf9\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Stockholm\";s:9:\"condition\";s:9:\"stockholm\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/stockholm/js/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:fcfff492e00727b63cf5dff9f59bc2a4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738378;}s:36:\"121f9b1b-d3cd-4dde-915e-0b348abf6687\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"Storefront\";s:9:\"condition\";s:10:\"storefront\";s:10:\"exclusions\";a:1:{i:0;s:39:\"/storefront/assets/js/navigation.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:f0dca7e4eaedf573d4664be249845942\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738793;}s:36:\"41cfc83f-ff02-4a35-a3b7-e92db213b224\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"StreamTube\";s:9:\"condition\";s:10:\"streamtube\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:12:\"/streamtube/\";i:3;s:17:\"/streamtube-core/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:9772ccddd470688f6bc6aee86e34d29b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679331431;}s:36:\"aec0a548-4c6b-400a-80ed-19a49e0faef0\";O:8:\"stdClass\":8:{s:5:\"title\";s:4:\"The7\";s:9:\"condition\";s:7:\"dt-the7\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:14:\"loader-removed\";i:3;s:34:\"/Ultimate_VC_Addons/assets/min-js/\";i:4;s:9:\"/dt-the7/\";i:5;s:13:\"/js_composer/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:7934c689fd20e30b6bfc69bb9d46cb63\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737892;}s:36:\"538354ff-d69f-40be-b0cc-df3790599dd2\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"TheGem\";s:9:\"condition\";s:6:\"thegem\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/thegem/js/\";i:3;s:11:\"gemSettings\";i:4;s:15:\"thegemSlideshow\";i:5;s:19:\"tgpLazyItemsOptions\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:153c54fe73897da838ce39152b1db5a8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738477;}s:36:\"84d95a79-270c-4223-b459-bb49c6acfaf1\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"Theme Electiman - Mobile Menu\";s:9:\"condition\";s:9:\"electiman\";s:10:\"exclusions\";a:8:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:41:\"/themes/electiman/assets/js/navigation.js\";i:2;s:45:\"/themes/electiman/assets/js/theme-pluginjs.js\";i:3;s:36:\"/themes/electiman/assets/js/theme.js\";i:4;s:40:\"/themes/electiman/assets/js/slick.min.js\";i:5;s:40:\"/themes/electiman/venobox/venobox.min.js\";i:6;s:47:\"/themes/electiman/assets/js/owl.carousel.min.js\";i:7;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:a59c888391c869ed4f3417c02d71fe15\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1702923332;}s:36:\"68f2de3b-e2b8-4edf-b82f-93fd7834c65f\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Total\";s:9:\"condition\";s:5:\"Total\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/Total/assets/js/total.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:96b0141273eabab320119c467cdcaf17\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737571;}s:36:\"6dc1cb35-6b50-4da0-9834-dddf169edaa6\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:7c37c885d7fecf788f635734f99e8610\";s:5:\"title\";s:7:\"Townhub\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:31:\"/townhub-add-ons/assets/js/(.*)\";i:3;s:36:\"/wp-includes/js/dist/vendor/react.js\";i:4;s:40:\"/wp-includes/js/dist/vendor/react-dom.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:7:\"townhub\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f484f86b-e316-4871-9322-dee3925349fe\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"Travel Monster - Owl Carousel\";s:9:\"condition\";s:14:\"travel-monster\";s:10:\"exclusions\";a:3:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:87:\"/wp-content/plugins/wp-travel-engine/assets/lib/owl-carousel(.*)/owl.carousel(|.min).js\";i:2;s:9:\"var isRtl\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d3e8da87b3affd399205438fbc8a4f05\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1690822771;}s:36:\"3ec96c3f-a6bf-4748-9b7e-78864bd24add\";O:8:\"stdClass\":8:{s:5:\"title\";s:21:\"uDesign - Mobile Menu\";s:9:\"condition\";s:8:\"u-design\";s:10:\"exclusions\";a:4:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:50:\"/wp-content/themes/u-design/assets/js/theme.min.js\";i:2;s:64:\"/wp-content/themes/u-design/framework/assets/js/framework.min.js\";i:3;s:70:\"/wp-content/themes/u-design/framework/assets/js/framework-async.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:31ce70b0a02f8720a86d993816676943\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1699292981;}s:36:\"cb523239-27cc-461e-973d-c984a83223ac\";O:8:\"stdClass\":8:{s:5:\"title\";s:35:\"uDesign - Show Page Content on Load\";s:9:\"condition\";s:8:\"u-design\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:50:\"/wp-content/themes/u-design/assets/js/theme.min.js\";i:2;s:64:\"/wp-content/themes/u-design/framework/assets/js/framework.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c55edd40ad3f9321da577dad70bb130c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1698778683;}s:36:\"14cb0a85-8bee-491e-99d7-5f20a07f4bdd\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Uncode\";s:9:\"condition\";s:6:\"uncode\";s:10:\"exclusions\";a:11:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/uncode/library/js/init(.min)?.js\";i:3;s:36:\"/uncode/library/js/plugins(.min)?.js\";i:4;s:32:\"/uncode/library/js/app(.min)?.js\";i:5;s:47:\"/uncode/library/js/woocommerce-uncode(.min)?.js\";i:6;s:59:\"/wp-includes/js/mediaelement/mediaelement-and-player.min.js\";i:7;s:10:\"initHeader\";i:8;s:7:\"initBox\";i:9;s:13:\"fixMenuHeight\";i:10;s:7:\"initRow\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:18ba19b98aefbb6c0fde6c6bf92e9cfc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738154;}s:36:\"88e96479-1aa2-4adc-8f07-20bc0368a63f\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Werkstatt\";s:9:\"condition\";s:9:\"werkstatt\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:21:\"/js/underscore.min.js\";i:3;s:34:\"/werkstatt/assets/js/vendor.min.js\";i:4;s:38:\"/werkstatt/assets/js/fullscreen.min.js\";i:5;s:31:\"/werkstatt/assets/js/app.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:38faa29db5a07b8fef6aee9cc11cafec\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737639;}s:36:\"60c4110b-a960-4d44-b619-6d79514dbf75\";O:8:\"stdClass\":8:{s:5:\"title\";s:8:\"Woodmart\";s:9:\"condition\";s:8:\"woodmart\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:3;s:24:\"/woodmart/js/scripts/wc/\";i:4;s:28:\"/woodmart/js/scripts/global/\";i:5;s:37:\"/woodmart/js/libs/owl.carousel.min.js\";i:6;s:33:\"/woodmart/js/libs/owl.carousel.js\";i:7;s:26:\"/woodmart/js/libs/slick.js\";i:8;s:37:\"/woodmart/js/libs/autocomplete.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:06338f13cb89e5309ad2eb7e4d457be4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1695633901;}s:36:\"a4547b5b-10ab-407c-969c-269fddec07b8\";O:8:\"stdClass\":8:{s:5:\"title\";s:25:\"Woodmart - Cart Fragments\";s:9:\"condition\";s:8:\"woodmart\";s:10:\"exclusions\";a:4:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:53:\"/woocommerce/assets/js/frontend/cart-fragments.min.js\";i:2;s:49:\"/woocommerce/assets/js/js-cookie/js.cookie.min.js\";i:3;s:49:\"/woodmart/js/scripts/wc/updateCartFragmentsFix.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:591f4f1b2e86b1e987cd8789df3ffce3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1700584689;}s:36:\"119ebd1c-6b46-4f07-8d6a-3498d9c8814f\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"XStore\";s:9:\"condition\";s:6:\"xstore\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/xstore/js/\";i:3;s:66:\"/et-core-plugin/packages/st-woo-swatches/public/js/frontend.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:3de9d9ba385200548f177d9c704ae92a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738190;}s:36:\"9a7a548c-07a1-4dff-93fc-6e8230b67853\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:119d329456073aa10969d7cbd9760f28\";s:5:\"title\";s:12:\"YOOtheme Pro\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:12:\"uikit.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:8:\"yootheme\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f74c499e-b7d9-4590-8671-379f51f468c8\";O:8:\"stdClass\":8:{s:5:\"title\";s:4:\"Zeen\";s:9:\"condition\";s:4:\"zeen\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:16:\"/zeen/assets/js/\";i:3;s:17:\"/js.cookie.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:acb52844f996627788836366404a3245\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737859;}}s:7:\"scripts\";O:8:\"stdClass\":15:{s:36:\"dd0c5a5b-ec56-49f9-9aa4-89e1e3a6a28a\";O:8:\"stdClass\":7:{s:5:\"title\";s:10:\"Amazon Ads\";s:10:\"exclusions\";a:1:{i:0;s:19:\"amazon-adsystem.com\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:b82a5936d8ea0745016caeb71629ae5d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681390276;}s:36:\"980edf32-c64b-4370-bf23-c62b079e71c3\";O:8:\"stdClass\":7:{s:5:\"title\";s:14:\"Google AdSense\";s:10:\"exclusions\";a:1:{i:0;s:11:\"adsbygoogle\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:0206e6040c8ff64b8d6ee5fef2ce1c90\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681377840;}s:36:\"2499bb90-0753-4b2b-9bd4-1525f94c7437\";O:8:\"stdClass\":7:{s:5:\"title\";s:16:\"Google Analytics\";s:10:\"exclusions\";a:3:{i:0;s:33:\"google-analytics.com/analytics.js\";i:1;s:6:\"ga\\( \'\";i:2;s:5:\"ga\\(\'\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:d86cf69a8b82547a94ca3f6a307cf9a6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681388311;}s:36:\"6f460036-3106-4b8c-9951-d32de9b1258f\";O:8:\"stdClass\":7:{s:5:\"title\";s:11:\"Google Maps\";s:10:\"exclusions\";a:2:{i:0;s:19:\"maps.googleapis.com\";i:1;s:15:\"maps.google.com\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:4d60ab2c6d11d753267484006c23e54c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681390259;}s:36:\"ac2d5720-9418-468c-80a0-3874ee743c0f\";O:8:\"stdClass\":7:{s:5:\"title\";s:15:\"Google Optimize\";s:10:\"exclusions\";a:3:{i:0;s:17:\"a,s,y,n,c,h,i,d,e\";i:1;s:30:\"googleoptimize.com/optimize.js\";i:2;s:10:\"async-hide\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:031a0cece38c4739df67f910dcabf1bd\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681390261;}s:36:\"122e6ebb-51fd-477f-97fb-559593f1a48b\";O:8:\"stdClass\":7:{s:5:\"title\";s:16:\"Google Recaptcha\";s:10:\"exclusions\";a:1:{i:0;s:9:\"recaptcha\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:032cb16577cbf07bc7c02bac83bd936d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681390264;}s:36:\"219277ae-b2ac-4d42-913d-eaea40985295\";O:8:\"stdClass\":7:{s:5:\"title\";s:18:\"Google Tag Manager\";s:10:\"exclusions\";a:4:{i:0;s:8:\"/gtag/js\";i:1;s:6:\"gtag\\(\";i:2;s:7:\"/gtm.js\";i:3;s:10:\"async-hide\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:1d3c65b2b03ef35e14df6b163ea3a1f6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681390266;}s:36:\"f632e3f4-20e6-471e-a78d-86afbea63586\";O:8:\"stdClass\":7:{s:5:\"title\";s:7:\"HubSpot\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"js.hsforms.net\";i:3;s:18:\"hbspt.forms.create\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:de4bd8ef4675ebb85a055955de76d0ee\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679331623;}s:36:\"5d606add-ffb8-4a06-b295-5f722710fbfd\";O:8:\"stdClass\":7:{s:5:\"title\";s:6:\"Refari\";s:10:\"exclusions\";a:2:{i:0;s:16:\"widget.refari.co\";i:1;s:6:\"refari\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:a705e197b13b47e72a105c923e044358\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1683797056;}s:36:\"742ec14a-27a1-4789-b9c8-a9c3a3cf7042\";O:8:\"stdClass\":7:{s:5:\"title\";s:10:\"Reviews.io\";s:10:\"exclusions\";a:2:{i:0;s:35:\"/carousel-inline-iframeless/dist.js\";i:1;s:20:\"carouselInlineWidget\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:4df445c576f45889506ba175a4c39fdc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1684389426;}s:36:\"05d3eb78-f574-49be-95e1-3f11714005d1\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"script:ce7566d1d08cc094b74cf283cf9c56a5\";s:5:\"title\";s:6:\"Stripe\";s:4:\"type\";s:6:\"script\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:13:\"js.stripe.com\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:0:\"\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"b56bf06c-2f8c-4757-b536-a689fb0e75f9\";O:8:\"stdClass\":7:{s:5:\"title\";s:7:\"Typekit\";s:10:\"exclusions\";a:1:{i:0;s:7:\"typekit\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:7815e38b93e3b500a632681bd594bd61\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681390268;}s:36:\"49c38c0a-43b9-4237-88cb-57ddd519f0ad\";O:8:\"stdClass\":7:{s:5:\"title\";s:13:\"Venatus Media\";s:10:\"exclusions\";a:2:{i:0;s:18:\"/ad-manager.min.js\";i:1;s:8:\"__vm_add\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:abe11528732aed9a19a97e73b242faa5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681390272;}s:36:\"2c1d0998-8ab5-478c-8eb9-9e375b46363e\";O:8:\"stdClass\":7:{s:5:\"title\";s:6:\"Wistia\";s:10:\"exclusions\";a:1:{i:0;s:15:\"fast.wistia.com\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:2:\"id\";s:39:\"script:9a0111f8c3186c1cb3113587c660c041\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681390274;}s:36:\"0627fe24-7e9d-400f-b064-d98bec2ba85e\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"script:dbd1875130c71eb4b2ef768ad18d820c\";s:5:\"title\";s:10:\"Yandex Ads\";s:4:\"type\";s:6:\"script\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:9:\"yandex.ru\";i:1;s:18:\"window.yaContextCb\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:0:\"\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}}}','no'),(300169,'action_scheduler_migration_status','complete','yes'),(300277,'_site_transient_timeout_mainwp_update_plugins_cached','1704391168','no'),(300278,'_site_transient_mainwp_update_plugins_cached','a:1:{s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";O:8:\"stdClass\":18:{s:20:\"WC requires at least\";s:0:\"\";s:15:\"WC tested up to\";s:0:\"\";s:3:\"Woo\";s:0:\"\";s:4:\"Name\";s:57:\"Media File Renamer: Rename Files (Manual, Auto, AI) (Pro)\";s:9:\"PluginURI\";s:20:\"https://meowapps.com\";s:7:\"Version\";s:5:\"5.7.6\";s:11:\"Description\";s:188:\"Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life.\";s:6:\"Author\";s:10:\"Jordy Meow\";s:9:\"AuthorURI\";s:20:\"https://meowapps.com\";s:10:\"TextDomain\";s:18:\"media-file-renamer\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:57:\"Media File Renamer: Rename Files (Manual, Auto, AI) (Pro)\";s:10:\"AuthorName\";s:10:\"Jordy Meow\";s:6:\"update\";O:8:\"stdClass\":22:{s:11:\"new_version\";s:5:\"5.8.0\";s:14:\"stable_version\";s:5:\"5.8.0\";s:4:\"name\";s:22:\"Media File Renamer Pro\";s:4:\"slug\";s:22:\"media-file-renamer-pro\";s:3:\"url\";s:65:\"https://meowapps.com/products/media-file-renamer-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2024-01-03 14:23:53\";s:8:\"homepage\";s:20:\"https://meowapps.com\";s:7:\"package\";s:0:\"\";s:13:\"download_link\";s:0:\"\";s:8:\"sections\";O:8:\"stdClass\":2:{s:11:\"description\";s:3920:\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\"https://meowapps.com/media-file-renamer/\">Media File Renamer</a>.</p>\n<h3>HOW IT WORKS</h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \n\n[youtube https://youtu.be/XPbKE8pq0i0]\n\nPlease have a look at the [tutorial](https://meowapps.com/media-file-renamer/tutorial/).<h3>COMPATIBILITY</h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\n\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION</h3>In the [Pro Version](https://meowapps.com/media-file-renamer/), you\'ll find many exciting features.\n\n- Automatically rename files based on attached posts, products, or ALT texts\n- AI Suggestions (via AI Engine and OpenAI)\n- Anonymize your files with anonymous filenames\n- Move files to different directories in bulk\n- Sync metadata like ALT texts and titles\n- Number your files to allow for similar filenames\n- Attach media entries to the posts or pages they\'re used in\n- Use the Force Rename feature to re-link broken media entries to your files\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT</h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\n\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https://meowapps.com/media-file-renamer/issues/).<h3>FOR DEVELOPERS</h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https://meowapps.com/media-file-renamer/issues/).<h3>A SIMPLER PLUGIN</h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https://wordpress.org/plugins/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\";s:9:\"changelog\";s:12868:\"<h4> 5.8.0 (2024/01/01) </h4>\n<ul>\n<li>Fix: Issue with mfrh_media_renamed.</li>\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.</li>\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.</li>\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.</li>\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.</li>\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.</li>\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.</li>\n<li>&#x1f4ab; Happy New Year!</li>\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\"https://discord.gg/bHDGh38\">Discord Channel</a>.</li>\n<li>&#x1f334; Please share some love <a href=\"https://wordpress.org/support/plugin/media-file-renamer/reviews/?rate=5#new-post\">here</a>. Thank you!</li>\n</ul>\n<h4> 5.7.8 (2023/12/25) </h4>\n<ul>\n<li>Update: Tools related to AI got better.</li>\n<li>Fix: Little fixes and enhancements for some users.</li>\n<li>&#x1f384; Merry Christmas!</li>\n</ul>\n<h4> 5.7.7 (2023/12/05) </h4>\n<ul>\n<li>Update: Enhanced UI, clarified options, unified things.</li>\n<li>Add: Bulk Rename using AI Vision.</li>\n<li>Add: AI Vision on Upload.</li>\n<li>Add: Not Renamed filter in Dashboard.</li>\n</ul>\n<h4> 5.7.4 (2023/11/25) </h4>\n<ul>\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.</li>\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.</li>\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.</li>\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.</li>\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.</li>\n<li>Fix: Resolved an undefined function call issue in the API.</li>\n</ul>\n<h4> 5.7.3 (2023/11/20) </h4>\n<ul>\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.</li>\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.</li>\n<li>Fix: Adjusted the default behavior of sync functionality.</li>\n</ul>\n<h4> 5.7.2 (2023/11/17) </h4>\n<ul>\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.</li>\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.</li>\n<li>Add: Magic Wand for Metadata Fields.</li>\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.</li>\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.</li>\n<li>Update: Conducted various non-code related updates for improved performance.</li>\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.</li>\n</ul>\n<h4> 5.7.1 (2023/10/19) </h4>\n<ul>\n<li>Fix: The action_update_postmeta filter was not working properly.</li>\n<li>Fix: Missing buttons in the modals.</li>\n</ul>\n<h4> 5.7.0 (2023/10/10) </h4>\n<ul>\n<li>Update: For better confidentiality, the logs file is now randomly generated.</li>\n<li>Fix: Support of Windows servers.</li>\n</ul>\n<h4> 5.6.9 (2023/09/21) </h4>\n<ul>\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.</li>\n</ul>\n<h4> 5.6.8 (2023/09/14) </h4>\n<ul>\n<li>Add: Auto-Attach feature now use the data from <a href=\"https://wordpress.org/plugins/media-cleaner/\">Media Cleaner</a> (if available), which is extremely accurate!</li>\n<li>Fix: Random issues related to metadata not existing.</li>\n<li>Fix: Optimize the way the move feature works.</li>\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.</li>\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.</li>\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.</li>\n</ul>\n<h4> 5.6.6 (2023/07/21) </h4>\n<ul>\n<li>Fix: Avoid warnings when the metadata isn\'t found.</li>\n<li>Fix: Better handling of metadata synchronization.</li>\n<li>Update: Enhanced the UI of the Renamer Field.</li>\n</ul>\n<h4> 5.6.5 (2023/06/21) </h4>\n<ul>\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.</li>\n<li>Update: Latest version of the UI.</li>\n</ul>\n<h4> 5.6.4 (2023/06/02) </h4>\n<ul>\n<li>Fix: Removed a few warnings.</li>\n<li>Fix: The paging issue.</li>\n</ul>\n<h4> 5.6.3 (2023/05/30) </h4>\n<ul>\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.</li>\n<li>Fix: There were a few warning issues.</li>\n<li>Fix: There were some inconsistencies in the UI.</li>\n</ul>\n<h4> 5.6.2 (2023/05/13) </h4>\n<ul>\n<li>Add: Some issues with spacing in some buttons.</li>\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\"https://wordpress.org/support/plugin/media-file-renamer/\">Support Forums</a>.</li>\n</ul>\n<h4> 5.6.1 (2023/05/06) </h4>\n<ul>\n<li>Add: We can now edit the ALT Text.</li>\n</ul>\n<h4> 5.6.0 (2023/05/02) </h4>\n<ul>\n<li>Add: \'Attached To\' column is now hideable.</li>\n<li>Add: \'ALT Text\' data now available if enabled in the options.</li>\n<li>Update: Minimized the size of the bundle.</li>\n</ul>\n<h4> 5.5.9 (2023/03/18) </h4>\n<ul>\n<li>Fix: Various fixes in the UI.</li>\n<li>Update: Latest UI framework.</li>\n</ul>\n<h4> 5.5.8 (2023/03/13) </h4>\n<ul>\n<li>Add: AI filename suggestions.</li>\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.</li>\n</ul>\n<h4> 5.5.7 (2023/02/09) </h4>\n<ul>\n<li>Add: New option to disable the Dashboard.</li>\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback/issues to fix them all at once in a good way. Thank you for your patience!</li>\n</ul>\n<h4> 5.5.5 (2023/02/01) </h4>\n<ul>\n<li>Update: Clean the dashboard a bit, depending on the options.</li>\n<li>Fix: Issue in the Media Library with the Renamer field.</li>\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.</li>\n</ul>\n<h4> 5.5.4 (2023/01/29) </h4>\n<ul>\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.</li>\n</ul>\n<h4> 5.5.3 (2023/01/27) </h4>\n<ul>\n<li>Update: Better move features and cleaner UI.</li>\n</ul>\n<h4> 5.5.2 (2023/01/06) </h4>\n<ul>\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.</li>\n</ul>\n<h4> 5.5.1 (2022/12/24) </h4>\n<ul>\n<li>Update: Enhanced the hooks (filters).</li>\n</ul>\n<h4> 5.5.0 (2022/11/12) </h4>\n<ul>\n<li>Fix: Enhanced the behavior of the UI.\n= 5.4.9 (2022/10/30) =</li>\n<li>Fix: The link to the Dashboard was broken.</li>\n</ul>\n<h4> 5.4.8 (2022/10/24) </h4>\n<ul>\n<li>Fix: There was an issue with WP-CLI in the latest versions.</li>\n</ul>\n<h4> 5.4.7 (2022/10/12) </h4>\n<ul>\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).</li>\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.</li>\n<li>Update: Optimized the way options are updated and retrieved.</li>\n<li>Update: Some refactoring to simplify the code.</li>\n</ul>\n<h4> 5.4.5 (2022/09/27) </h4>\n<ul>\n<li>Add: Auto-retry on failure, up to 10 times.</li>\n<li>Fix: Typos.</li>\n</ul>\n<h4> 5.4.3 (2022/08/11) </h4>\n<ul>\n<li>Add: Handle errors gracefully (with retry, skip or cancel).</li>\n</ul>\n<h4> 5.4.1 (2022/08/03) </h4>\n<ul>\n<li>Fix: Tiny UI bug in Safari.</li>\n</ul>\n<h4> 5.4.0 (2022/07/05) </h4>\n<ul>\n<li>Add: Support for Elementor (update the metadata and CSS).</li>\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.</li>\n</ul>\n<h4> 5.3.9 (2022/06/16) </h4>\n<ul>\n<li>Fix: The WebP files weren\'t not renamed perfectly.</li>\n</ul>\n<h4> 5.3.8 (2022/03/29) </h4>\n<ul>\n<li>Fix: Support for WebP.</li>\n<li>Fix: Anonymize (MD5) on upload now works fine.</li>\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.</li>\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.</li>\n</ul>\n<h4> 5.3.6 (2022/02/01) </h4>\n<ul>\n<li>Update: Fresh build and support for WordPress 5.9.</li>\n</ul>\n<h4> 5.3.5 (2021/11/10) </h4>\n<ul>\n<li>Fix: Renaming of WebP uploaded directly to WordPress.</li>\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.</li>\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.</li>\n</ul>\n<h4> 5.3.3 (2021/11/09) </h4>\n<ul>\n<li>Fix: Avoid renaming when the URLs (before/after) are empty.</li>\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).</li>\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).</li>\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.</li>\n<li>Update: Optimized queries.</li>\n<li>Add: We can change the page (in the dashboard) by typing it.</li>\n</ul>\n<h4> 5.3.2 (2021/10/16) </h4>\n<ul>\n<li>Add: AVIF support.</li>\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.</li>\n</ul>\n<h4> 5.3.0 (2021/10/09) </h4>\n<ul>\n<li>Add: Better Force Rename.</li>\n<li>Add: Featured Images Only option.</li>\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.</li>\n</ul>\n<h4> 5.2.9 (2021/09/23) </h4>\n<ul>\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.</li>\n</ul>\n<h4> 5.2.8 (2021/09/07) </h4>\n<ul>\n<li>Add: Option to clean the plugin data on uninstall.</li>\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.</li>\n</ul>\n<h4> 5.2.7 (2021/09/03) </h4>\n<ul>\n<li>Fix: Security update: access controls to the REST API and the options enforced.</li>\n<li>Updated: Dependencies update.</li>\n</ul>\n<h4> 5.2.5 (2021/08/25) </h4>\n<ul>\n<li>Fix: Search feature was not always working well.</li>\n<li>Update: Better technical architecture.</li>\n</ul>\n<h4> 5.2.4 (2021/06/13) </h4>\n<ul>\n<li>Add: Remember the number of entries per page (dashboard).</li>\n<li>Fix: Limit the length of the manual filename.</li>\n</ul>\n<h4> 5.2.3 (2021/05/29) </h4>\n<ul>\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).</li>\n</ul>\n<h4> 5.2.2 (2021/05/18) </h4>\n<ul>\n<li>Fix: Better Windows support.</li>\n</ul>\n<h4> 5.2.0 (2021/05/15) </h4>\n<ul>\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).</li>\n<li>Add: Images Only option.</li>\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.</li>\n</ul>\n<h4> 5.1.9 (2021/04/09) </h4>\n<ul>\n<li>Fix: The Synchronize Alt option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.8 (2021/03/04) </h4>\n<ul>\n<li>Add: Search.</li>\n<li>Add: Quick rename the title from the dashboard.</li>\n</ul>\n<h4> 5.1.7 (2021/02/21) </h4>\n<ul>\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.6 (2021/02/12) </h4>\n<ul>\n<li>Fix: References for moved files were not updated.</li>\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.</li>\n</ul>\n<h4> 5.1.3 (2021/02/06)  </h4>\n<ul>\n<li>Add: Greek support.</li>\n<li>Fix: Better sensitive file check.</li>\n<li>Fix: Manual rename with WP CLI.</li>\n</ul>\n<h4> 5.1.2 (2021/01/10) </h4>\n<ul>\n<li>Add: Auto attach feature.</li>\n<li>Add: Added Locked in the filters.</li>\n<li>Update: Icons position.</li>\n</ul>\n<h4> 5.1.1 (2021/01/05) </h4>\n<ul>\n<li>Fix: Issue with roles overriding and WP-CLI.</li>\n<li>Fix: Issue with REST in the Common Dashboard.</li>\n</ul>\n<h4> 5.1.0 (2021/01/01) </h4>\n<ul>\n<li>Add: Support overriding roles.</li>\n<li>Fix: The layout of the dashboard was broken by WPBakery.</li>\n</ul>\";}s:7:\"banners\";O:8:\"stdClass\":2:{s:4:\"high\";s:82:\"https://meowapps.com/wp-content/uploads/edd/media-file-renamer-banner-1544x500.png\";s:3:\"low\";s:81:\"https://meowapps.com/wp-content/uploads/edd/media-file-renamer-banner-772x250.png\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:49:\"https://meowapps.com/wp-content/uploads/Brush.png\";s:2:\"2x\";s:49:\"https://meowapps.com/wp-content/uploads/Brush.png\";}s:3:\"msg\";s:33:\"No license key has been provided.\";s:12:\"contributors\";O:8:\"stdClass\":1:{s:10:\"TigrouMeow\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"TigrouMeow\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/TigrouMeow\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=TigrouMeow\";}}s:10:\"stable_tag\";s:5:\"5.8.0\";s:11:\"donate_link\";s:30:\"https://meowapps.com/donation/\";s:6:\"tested\";s:3:\"6.4\";s:5:\"added\";s:10:\"2022-09-01\";s:11:\"description\";a:1:{i:0;s:3920:\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\"https://meowapps.com/media-file-renamer/\">Media File Renamer</a>.</p>\n<h3>HOW IT WORKS</h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \n\n[youtube https://youtu.be/XPbKE8pq0i0]\n\nPlease have a look at the [tutorial](https://meowapps.com/media-file-renamer/tutorial/).<h3>COMPATIBILITY</h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\n\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION</h3>In the [Pro Version](https://meowapps.com/media-file-renamer/), you\'ll find many exciting features.\n\n- Automatically rename files based on attached posts, products, or ALT texts\n- AI Suggestions (via AI Engine and OpenAI)\n- Anonymize your files with anonymous filenames\n- Move files to different directories in bulk\n- Sync metadata like ALT texts and titles\n- Number your files to allow for similar filenames\n- Attach media entries to the posts or pages they\'re used in\n- Use the Force Rename feature to re-link broken media entries to your files\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT</h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\n\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https://meowapps.com/media-file-renamer/issues/).<h3>FOR DEVELOPERS</h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https://meowapps.com/media-file-renamer/issues/).<h3>A SIMPLER PLUGIN</h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https://wordpress.org/plugins/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\";}s:9:\"changelog\";a:1:{i:0;s:12868:\"<h4> 5.8.0 (2024/01/01) </h4>\n<ul>\n<li>Fix: Issue with mfrh_media_renamed.</li>\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.</li>\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.</li>\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.</li>\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.</li>\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.</li>\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.</li>\n<li>&#x1f4ab; Happy New Year!</li>\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\"https://discord.gg/bHDGh38\">Discord Channel</a>.</li>\n<li>&#x1f334; Please share some love <a href=\"https://wordpress.org/support/plugin/media-file-renamer/reviews/?rate=5#new-post\">here</a>. Thank you!</li>\n</ul>\n<h4> 5.7.8 (2023/12/25) </h4>\n<ul>\n<li>Update: Tools related to AI got better.</li>\n<li>Fix: Little fixes and enhancements for some users.</li>\n<li>&#x1f384; Merry Christmas!</li>\n</ul>\n<h4> 5.7.7 (2023/12/05) </h4>\n<ul>\n<li>Update: Enhanced UI, clarified options, unified things.</li>\n<li>Add: Bulk Rename using AI Vision.</li>\n<li>Add: AI Vision on Upload.</li>\n<li>Add: Not Renamed filter in Dashboard.</li>\n</ul>\n<h4> 5.7.4 (2023/11/25) </h4>\n<ul>\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.</li>\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.</li>\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.</li>\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.</li>\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.</li>\n<li>Fix: Resolved an undefined function call issue in the API.</li>\n</ul>\n<h4> 5.7.3 (2023/11/20) </h4>\n<ul>\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.</li>\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.</li>\n<li>Fix: Adjusted the default behavior of sync functionality.</li>\n</ul>\n<h4> 5.7.2 (2023/11/17) </h4>\n<ul>\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.</li>\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.</li>\n<li>Add: Magic Wand for Metadata Fields.</li>\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.</li>\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.</li>\n<li>Update: Conducted various non-code related updates for improved performance.</li>\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.</li>\n</ul>\n<h4> 5.7.1 (2023/10/19) </h4>\n<ul>\n<li>Fix: The action_update_postmeta filter was not working properly.</li>\n<li>Fix: Missing buttons in the modals.</li>\n</ul>\n<h4> 5.7.0 (2023/10/10) </h4>\n<ul>\n<li>Update: For better confidentiality, the logs file is now randomly generated.</li>\n<li>Fix: Support of Windows servers.</li>\n</ul>\n<h4> 5.6.9 (2023/09/21) </h4>\n<ul>\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.</li>\n</ul>\n<h4> 5.6.8 (2023/09/14) </h4>\n<ul>\n<li>Add: Auto-Attach feature now use the data from <a href=\"https://wordpress.org/plugins/media-cleaner/\">Media Cleaner</a> (if available), which is extremely accurate!</li>\n<li>Fix: Random issues related to metadata not existing.</li>\n<li>Fix: Optimize the way the move feature works.</li>\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.</li>\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.</li>\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.</li>\n</ul>\n<h4> 5.6.6 (2023/07/21) </h4>\n<ul>\n<li>Fix: Avoid warnings when the metadata isn\'t found.</li>\n<li>Fix: Better handling of metadata synchronization.</li>\n<li>Update: Enhanced the UI of the Renamer Field.</li>\n</ul>\n<h4> 5.6.5 (2023/06/21) </h4>\n<ul>\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.</li>\n<li>Update: Latest version of the UI.</li>\n</ul>\n<h4> 5.6.4 (2023/06/02) </h4>\n<ul>\n<li>Fix: Removed a few warnings.</li>\n<li>Fix: The paging issue.</li>\n</ul>\n<h4> 5.6.3 (2023/05/30) </h4>\n<ul>\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.</li>\n<li>Fix: There were a few warning issues.</li>\n<li>Fix: There were some inconsistencies in the UI.</li>\n</ul>\n<h4> 5.6.2 (2023/05/13) </h4>\n<ul>\n<li>Add: Some issues with spacing in some buttons.</li>\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\"https://wordpress.org/support/plugin/media-file-renamer/\">Support Forums</a>.</li>\n</ul>\n<h4> 5.6.1 (2023/05/06) </h4>\n<ul>\n<li>Add: We can now edit the ALT Text.</li>\n</ul>\n<h4> 5.6.0 (2023/05/02) </h4>\n<ul>\n<li>Add: \'Attached To\' column is now hideable.</li>\n<li>Add: \'ALT Text\' data now available if enabled in the options.</li>\n<li>Update: Minimized the size of the bundle.</li>\n</ul>\n<h4> 5.5.9 (2023/03/18) </h4>\n<ul>\n<li>Fix: Various fixes in the UI.</li>\n<li>Update: Latest UI framework.</li>\n</ul>\n<h4> 5.5.8 (2023/03/13) </h4>\n<ul>\n<li>Add: AI filename suggestions.</li>\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.</li>\n</ul>\n<h4> 5.5.7 (2023/02/09) </h4>\n<ul>\n<li>Add: New option to disable the Dashboard.</li>\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback/issues to fix them all at once in a good way. Thank you for your patience!</li>\n</ul>\n<h4> 5.5.5 (2023/02/01) </h4>\n<ul>\n<li>Update: Clean the dashboard a bit, depending on the options.</li>\n<li>Fix: Issue in the Media Library with the Renamer field.</li>\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.</li>\n</ul>\n<h4> 5.5.4 (2023/01/29) </h4>\n<ul>\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.</li>\n</ul>\n<h4> 5.5.3 (2023/01/27) </h4>\n<ul>\n<li>Update: Better move features and cleaner UI.</li>\n</ul>\n<h4> 5.5.2 (2023/01/06) </h4>\n<ul>\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.</li>\n</ul>\n<h4> 5.5.1 (2022/12/24) </h4>\n<ul>\n<li>Update: Enhanced the hooks (filters).</li>\n</ul>\n<h4> 5.5.0 (2022/11/12) </h4>\n<ul>\n<li>Fix: Enhanced the behavior of the UI.\n= 5.4.9 (2022/10/30) =</li>\n<li>Fix: The link to the Dashboard was broken.</li>\n</ul>\n<h4> 5.4.8 (2022/10/24) </h4>\n<ul>\n<li>Fix: There was an issue with WP-CLI in the latest versions.</li>\n</ul>\n<h4> 5.4.7 (2022/10/12) </h4>\n<ul>\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).</li>\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.</li>\n<li>Update: Optimized the way options are updated and retrieved.</li>\n<li>Update: Some refactoring to simplify the code.</li>\n</ul>\n<h4> 5.4.5 (2022/09/27) </h4>\n<ul>\n<li>Add: Auto-retry on failure, up to 10 times.</li>\n<li>Fix: Typos.</li>\n</ul>\n<h4> 5.4.3 (2022/08/11) </h4>\n<ul>\n<li>Add: Handle errors gracefully (with retry, skip or cancel).</li>\n</ul>\n<h4> 5.4.1 (2022/08/03) </h4>\n<ul>\n<li>Fix: Tiny UI bug in Safari.</li>\n</ul>\n<h4> 5.4.0 (2022/07/05) </h4>\n<ul>\n<li>Add: Support for Elementor (update the metadata and CSS).</li>\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.</li>\n</ul>\n<h4> 5.3.9 (2022/06/16) </h4>\n<ul>\n<li>Fix: The WebP files weren\'t not renamed perfectly.</li>\n</ul>\n<h4> 5.3.8 (2022/03/29) </h4>\n<ul>\n<li>Fix: Support for WebP.</li>\n<li>Fix: Anonymize (MD5) on upload now works fine.</li>\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.</li>\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.</li>\n</ul>\n<h4> 5.3.6 (2022/02/01) </h4>\n<ul>\n<li>Update: Fresh build and support for WordPress 5.9.</li>\n</ul>\n<h4> 5.3.5 (2021/11/10) </h4>\n<ul>\n<li>Fix: Renaming of WebP uploaded directly to WordPress.</li>\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.</li>\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.</li>\n</ul>\n<h4> 5.3.3 (2021/11/09) </h4>\n<ul>\n<li>Fix: Avoid renaming when the URLs (before/after) are empty.</li>\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).</li>\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).</li>\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.</li>\n<li>Update: Optimized queries.</li>\n<li>Add: We can change the page (in the dashboard) by typing it.</li>\n</ul>\n<h4> 5.3.2 (2021/10/16) </h4>\n<ul>\n<li>Add: AVIF support.</li>\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.</li>\n</ul>\n<h4> 5.3.0 (2021/10/09) </h4>\n<ul>\n<li>Add: Better Force Rename.</li>\n<li>Add: Featured Images Only option.</li>\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.</li>\n</ul>\n<h4> 5.2.9 (2021/09/23) </h4>\n<ul>\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.</li>\n</ul>\n<h4> 5.2.8 (2021/09/07) </h4>\n<ul>\n<li>Add: Option to clean the plugin data on uninstall.</li>\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.</li>\n</ul>\n<h4> 5.2.7 (2021/09/03) </h4>\n<ul>\n<li>Fix: Security update: access controls to the REST API and the options enforced.</li>\n<li>Updated: Dependencies update.</li>\n</ul>\n<h4> 5.2.5 (2021/08/25) </h4>\n<ul>\n<li>Fix: Search feature was not always working well.</li>\n<li>Update: Better technical architecture.</li>\n</ul>\n<h4> 5.2.4 (2021/06/13) </h4>\n<ul>\n<li>Add: Remember the number of entries per page (dashboard).</li>\n<li>Fix: Limit the length of the manual filename.</li>\n</ul>\n<h4> 5.2.3 (2021/05/29) </h4>\n<ul>\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).</li>\n</ul>\n<h4> 5.2.2 (2021/05/18) </h4>\n<ul>\n<li>Fix: Better Windows support.</li>\n</ul>\n<h4> 5.2.0 (2021/05/15) </h4>\n<ul>\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).</li>\n<li>Add: Images Only option.</li>\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.</li>\n</ul>\n<h4> 5.1.9 (2021/04/09) </h4>\n<ul>\n<li>Fix: The Synchronize Alt option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.8 (2021/03/04) </h4>\n<ul>\n<li>Add: Search.</li>\n<li>Add: Quick rename the title from the dashboard.</li>\n</ul>\n<h4> 5.1.7 (2021/02/21) </h4>\n<ul>\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.6 (2021/02/12) </h4>\n<ul>\n<li>Fix: References for moved files were not updated.</li>\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.</li>\n</ul>\n<h4> 5.1.3 (2021/02/06)  </h4>\n<ul>\n<li>Add: Greek support.</li>\n<li>Fix: Better sensitive file check.</li>\n<li>Fix: Manual rename with WP CLI.</li>\n</ul>\n<h4> 5.1.2 (2021/01/10) </h4>\n<ul>\n<li>Add: Auto attach feature.</li>\n<li>Add: Added Locked in the filters.</li>\n<li>Update: Icons position.</li>\n</ul>\n<h4> 5.1.1 (2021/01/05) </h4>\n<ul>\n<li>Fix: Issue with roles overriding and WP-CLI.</li>\n<li>Fix: Issue with REST in the Common Dashboard.</li>\n</ul>\n<h4> 5.1.0 (2021/01/01) </h4>\n<ul>\n<li>Add: Support overriding roles.</li>\n<li>Fix: The layout of the dashboard was broken by WPBakery.</li>\n</ul>\";}s:6:\"plugin\";s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";s:2:\"id\";s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";}}}','no'),(300279,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/nl_NL/wordpress-6.4.2.zip\";s:6:\"locale\";s:5:\"nl_NL\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/nl_NL/wordpress-6.4.2.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.2\";s:7:\"version\";s:5:\"6.4.2\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1704388907;s:15:\"version_checked\";s:5:\"6.4.2\";s:12:\"translations\";a:0:{}}','no'),(300281,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1704385489;s:7:\"checked\";a:2:{s:14:\"flatsome-child\";s:3:\"3.0\";s:8:\"flatsome\";s:6:\"3.18.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:8:\"flatsome\";a:4:{s:5:\"theme\";s:8:\"flatsome\";s:11:\"new_version\";s:6:\"3.18.1\";s:3:\"url\";s:94:\"https://www.nl.ecom-expansion.com/wp-admin/admin.php?page=flatsome-version-info&version=3.18.1\";s:7:\"package\";s:116:\"https://www.nl.ecom-expansion.com/wp-admin/admin.php?page=flatsome-panel&flatsome_version=3.18.1&flatsome_download=1\";}}s:12:\"translations\";a:0:{}}','no'),(300300,'_transient_timeout_f785ac59d20d5526fed60adae4ec312e','1704412827','no'),(300301,'_transient_f785ac59d20d5526fed60adae4ec312e','O:8:\"stdClass\":19:{s:11:\"new_version\";s:5:\"1.0.5\";s:14:\"stable_version\";s:5:\"1.0.5\";s:4:\"name\";s:21:\"ACF Export Add-On Pro\";s:4:\"slug\";s:15:\"wpae-acf-add-on\";s:3:\"url\";s:72:\"https://www.wpallimport.com/downloads/acf-export-add-on-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-11-09 20:49:16\";s:8:\"homepage\";s:60:\"https://www.wpallimport.com/downloads/acf-export-add-on-pro/\";s:8:\"sections\";a:2:{s:11:\"description\";s:132:\"<p>Learn more at <a href=\"http://www.wpallimport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/</a></p>\";s:9:\"changelog\";s:835:\"<h4>1.0.5</h4><ul>\r\n<li>improvement: add support for locally defined ACF Blocks</li>\r\n<li>bug fix: resolve issue when exporting ACF Blocks</li>\r\n<li>bug fix: resolve issue when exporting ACF multiple select fields</li>\r\n<li>bug fix: PHP 8 error with Flexible Content Fields</li>\r\n<li>bug fix: resolve issue with changelog showing incorrect information</li>\r\n</ul><h4>1.0.4</h4><ul>\r\n<li>bug fix: ACF link field isn\'t exported correctly if \'Link URL\' is set as the return value</li>\r\n</ul><h4>1.0.3</h4>\r\n<ul>\r\n 	<li>improvement: decrease frequency of plugin update checks</li>\r\n 	<li>improvement: initial PHP 8 support</li>\r\n</ul>\r\n<h4>1.0.2</h4>\r\n<ul>\r\n 	<li>cleanup: remove plugins page notice</li>\r\n</ul>\r\n<h4>1.0.1</h4>\r\n<ul>\r\n 	<li>improvement: enable sslverify</li>\r\n</ul>\r\n<h4>1.0.0</h4>\r\n<ul>\r\n 	<li>Initial release</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:8:\"Success.\";s:7:\"package\";s:87:\"https://update.wpallimport.com/serve_package?package_id=4203451&version=1.0.5&license=0\";s:13:\"download_link\";s:87:\"https://update.wpallimport.com/serve_package?package_id=4203451&version=1.0.5&license=0\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}','no'),(300302,'_transient_timeout_48036350658a9195879855e81fdcfbb8','1704412827','no'),(300303,'_transient_48036350658a9195879855e81fdcfbb8','O:8:\"stdClass\":19:{s:11:\"new_version\";s:5:\"1.0.9\";s:14:\"stable_version\";s:5:\"1.0.9\";s:4:\"name\";s:29:\"WooCommerce Export Add-On Pro\";s:4:\"slug\";s:23:\"wpae-woocommerce-add-on\";s:3:\"url\";s:76:\"https://www.wpallimport.com/downloads/woocommerce-export-add-on/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-11-08 16:27:29\";s:8:\"homepage\";s:64:\"https://www.wpallimport.com/downloads/woocommerce-export-add-on/\";s:8:\"sections\";a:2:{s:11:\"description\";s:132:\"<p>Learn more at <a href=\"http://www.wpallimport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/</a></p>\";s:9:\"changelog\";s:1687:\"<h4>1.0.9</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>bug fix: functions using Order ID are called twice</li>\r\n</ul><h4>1.0.8</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: exporting orders requires WP All Export 1.8.5+</li>\r\n<li>improvement: initial HPOS support</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n</ul><h4>1.0.7</h4><ul>\r\n<li>bug fix: resolve multiple PHP 8 errors related to mismatched operand types occurring in limited cases</li>\r\n</ul><h4>1.0.6</h4><ul>\r\n<li>bug fix: error when exporting reviews under PHP 8</li>\r\n<li>bug fix: show Product Tags in Taxonomies section when configuring an export</li>\r\n<li>bug fix: error when generating WP All Import templates in limited cases</li>\r\n<li>bug fix: changelog showing incorrect information</li>\r\n</ul><h4>1.0.5</h4><ul>\r\n<li>improvement: don\'t include non-category terms in the Taxonomies section for Product exports</li>\r\n<li>bug fix: fatal error when exporting Orders with PHP 8 and WooCommerce 6.5</li>\r\n</ul><h4>1.0.4</h4><ul>\r\n<li>improvement: allow all valid characters from XML 1.0 Fifth Edition specification</li>\r\n</ul><h4>1.0.3</h4>\r\n<ul>\r\n 	<li>improvement: reduce frequency of plugin update checks</li>\r\n 	<li>improvement: initial PHP 8 support</li>\r\n 	<li>bug fix: rare fatal error when exporting to XML</li>\r\n</ul>\r\n<h4>1.0.2</h4>\r\n<ul>\r\n 	<li>cleanup: remove plugins page notice</li>\r\n 	<li>bugfix: show WooCommerce Order fields without requiring the ACF Export Add-On</li>\r\n</ul>\r\n<h4>1.0.1</h4>\r\n<ul>\r\n 	<li>improvement: enable sslverify</li>\r\n</ul>\r\n<h4>1.0.0</h4>\r\n<ul>\r\n 	<li>Initial release</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:8:\"Success.\";s:7:\"package\";s:77:\"https://update.wpallimport.com/serve_package?package_id=4203456&version=1.0.9\";s:13:\"download_link\";s:77:\"https://update.wpallimport.com/serve_package?package_id=4203456&version=1.0.9\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}','no'),(300304,'_transient_timeout_cba1aab7f90f99256d9103976aa701d5','1704412829','no'),(300305,'_transient_cba1aab7f90f99256d9103976aa701d5','O:8:\"stdClass\":19:{s:11:\"new_version\";s:5:\"3.3.8\";s:14:\"stable_version\";s:5:\"3.3.8\";s:4:\"name\";s:10:\"ACF Add-On\";s:4:\"slug\";s:15:\"wpai-acf-add-on\";s:3:\"url\";s:68:\"https://www.wpallimport.com/downloads/acf-import-add-on/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-10-30 11:47:02\";s:8:\"homepage\";s:56:\"https://www.wpallimport.com/downloads/acf-import-add-on/\";s:8:\"sections\";a:2:{s:11:\"description\";s:132:\"<p>Learn more at <a href=\"http://www.wpallimport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/</a></p>\";s:9:\"changelog\";s:12081:\"<h4>3.3.8</h4><ul>\r\n    <li>bug fix: flexible content field not recognized</li>\r\n    <li>bug fix: clone field not recognized</li>\r\n    <li>bugfix: images and files downloaded twice in some cases</li>\r\n    <li>improvement: added \\\'wp_all_import_is_import_empty_acf_fields\\\' filter</li>\r\n    <li>improvement: resolve notices related to repeater fields</li>\r\n    <li>improvement: include subfields in the \\\'Choose which data to update\\\' selection dropdowns when using ACF v5</li>\r\n</ul><h4>3.3.7</h4>\r\n<ul>\r\n<li>bug fix: errors with repeater fields on PHP 8</li>\r\n<li>bug fix: gallery image names not properly parsed</li>\r\n<li>improvement: better autoloading of plugin files</li>\r\n</ul>\r\n<h4>3.3.6</h4>\r\n<ul>\r\n    <li>improvement: PHP 8 compatibility</li>\r\n    <li>bugfix: unable to import mapped ACF groups in some cases</li>\r\n    <li>bugfix: unable to import table field in fixed mode</li>\r\n    <li>bugfix: clone field not rendering correctly</li>\r\n    <li>bugfix: ACF fields not instantiated during cron import</li>\r\n</ul>\r\n<h4>3.3.5</h4>\r\n<ul>\r\n 	<li>bugfix: search for existing files didn\\\'t work in some cases</li>\r\n 	<li>bugfix: import gallery inside fixed repeater didn\\\'t work</li>\r\n 	<li>bugfix: ACF fields were loaded too early, some functions weren\\\'t available in the filters</li>\r\n 	<li>bugfix: local ACF groups weren\\\'t saved in import template</li>\r\n</ul>\r\n<h4>3.3.4</h4>\r\n<ul>\r\n 	<li>bugfix: ACF field groups not found in some cases</li>\r\n</ul>\r\n<h4>3.3.3</h4>\r\n<ul>\r\n 	<li>bugfix: ACF Repeater subfields not shown when configuring import</li>\r\n</ul>\r\n<h4>3.3.2</h4>\r\n<ul>\r\n 	<li>bug fix: acf groups visibility didn\\\'t work properly in some cases</li>\r\n 	<li>improvement: use acf built-in functions to get list of fields</li>\r\n</ul>\r\n<h4>3.3.1</h4>\r\n<ul>\r\n 	<li>improvement: enable ACF field developers to add support for WPAI to their field types</li>\r\n 	<li>bug fix: import repeater field generated with PHP didn\\\'t work</li>\r\n 	<li>bug fix: import ACF local fields didn\\\'t work in some cases</li>\r\n</ul>\r\n<h4>3.3.0</h4>\r\n<ul>\r\n 	<li>bug fix: Date picker used wrong format</li>\r\n 	<li>bug fix: Import template showing empty values for repeater fields</li>\r\n 	<li>bug fix: Link field inside fixed repeater field was not imported correctly</li>\r\n 	<li>bug fix: Nested taxonomy fields were not rendered correctly in import template</li>\r\n 	<li>bug fix: the ACF Field groups weren\\\'t chosen correctly when import bundle from WP All Export</li>\r\n</ul>\r\n<h4>3.2.9</h4>\r\n<ul>\r\n 	<li>improvement: add support for table field</li>\r\n 	<li>improvement: check post types when searching by ID for relationship fields</li>\r\n 	<li>bug fix: UI broken for True False field</li>\r\n 	<li>bug fix: \\\'Select value for all records\\\' not working for \\\'Taxonomy\\\' fields</li>\r\n</ul>\r\n<h4>3.2.8</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with WordPress 5.5</li>\r\n 	<li>bug fix: import taxonomies inside repeater doesn\\\'t work in same cases</li>\r\n 	<li>bug fix: WYSIWYG field data prefixed with space</li>\r\n</ul>\r\n<h4>3.2.7</h4>\r\n<ul>\r\n 	<li>bug fix: Multiple Select field not imported correctly</li>\r\n</ul>\r\n<h4>3.2.6</h4>\r\n<ul>\r\n 	<li>improvement: add default zoom value for Google Maps field</li>\r\n 	<li>API: apply pmxi_acf_custom_field filter to taxonomy terms meta</li>\r\n 	<li>bug fix: unable to double click to insert XPath in some cases</li>\r\n 	<li>bug fix: unable to import WooCommerce customer ACF fields</li>\r\n 	<li>bug fix: select field with stylized UI not rendered properly</li>\r\n 	<li>bug fix: empty layouts for Flexible Content fields improperly imported</li>\r\n</ul>\r\n<h4>3.2.5</h4>\r\n<ul>\r\n 	<li>improvement: extend Google Maps field options</li>\r\n 	<li>improvement: save custom choice for radio button field</li>\r\n 	<li>bug fix: Google Maps field UI does not render properly</li>\r\n 	<li>bug fix: unable to import country field with multiple values</li>\r\n</ul>\r\n<h4>3.2.4</h4>\r\n<ul>\r\n 	<li>improvement: add support for Image Aspect Ratio Crop field</li>\r\n 	<li>bug fix: unable to add new images to gallery field</li>\r\n 	<li>bug fix: unable to add link field inside repeater</li>\r\n 	<li>bug fix: group field not rendering properly</li>\r\n</ul>\r\n<h4>3.2.3</h4>\r\n<ul>\r\n 	<li>bug fix: import gallery field inside repeater produced set of duplicate rows</li>\r\n 	<li>bug fix: import ACF field key was populated with field name instead of field key</li>\r\n</ul>\r\n<h4>3.2.2</h4>\r\n- Fixed import repeater field\r\n<h4>3.2.1</h4>\r\n<ul>\r\n 	<li>improvement: add support for country field - https://github.com/nlemoine/acf-country</li>\r\n 	<li>improvement: apply ACF filters when importing field values</li>\r\n 	<li>bug fix:search existing images by filename doesn\\\'t work correctly with galleries</li>\r\n 	<li>bug fix: $articleData argument missing in wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: taxonomy field for users not importing properly</li>\r\n</ul>\r\n<h4>3.2.0</h4>\r\n<ul>\r\n 	<li>improvement: added support for new ACF field: Star Rating</li>\r\n 	<li>bug fix: compatibility with ACF v5.7.11</li>\r\n 	<li>bug fix: compatibility with ACF v4.4.12</li>\r\n 	<li>bug fix: rendering select field choices</li>\r\n 	<li>bug fix: search for existing images option</li>\r\n 	<li>bug fix: rendering ACF groups</li>\r\n 	<li>bug fix: Google Map field - save lat and long as string instead of decimal value</li>\r\n 	<li>bug fix: import taxonomy field inside repeater in fixed mode</li>\r\n 	<li>bug fix: import empty checkbox field</li>\r\n 	<li>bug fix: import repeater in XML mode</li>\r\n</ul>\r\n<h4>3.1.9</h4>\r\n<ul>\r\n 	<li>bug fix: ACF groups visibility on import template screen</li>\r\n</ul>\r\n<h4>3.1.8</h4>\r\n<ul>\r\n 	<li>improvement: render only visible ACF field groups on import template screen</li>\r\n 	<li>improvement: added new field support - image_crop</li>\r\n 	<li>bug fix: import Relationship field</li>\r\n 	<li>bug fix: import taxonomy hierarchy inside Repeater</li>\r\n 	<li>bug fix: ignore empty rows for Repeater in csv mode</li>\r\n 	<li>bug fix: import checkbox using XPath</li>\r\n 	<li>bug fix: import post object field with multiple selection</li>\r\n 	<li>bug fix: import Repeater inside Repeater in csv mode</li>\r\n 	<li>bug fix: ignore empty rows option</li>\r\n 	<li>bug fix: detecting google map api key</li>\r\n 	<li>bug fix: date format for date picker field ACF 4.x</li>\r\n 	<li>bug fix: update only these fields for ACF 4.x</li>\r\n 	<li>bug fix: rendering local ACF fields defined in ACF 4.x syntax</li>\r\n</ul>\r\n<h4>3.1.7</h4>\r\n<ul>\r\n 	<li>bug fix: import nested repeaters in XML mode</li>\r\n 	<li>bug fix: \\\'Ignore empty rows\\\' doesn\\\'t ignore empty rows</li>\r\n 	<li>bug fix: repeater sub fields not saved in ACF 4.x</li>\r\n 	<li>bug fix: unable to set relationship fields when post type is not defined for related content</li>\r\n 	<li>bug fix: unable to import taxonomy fields inside repeater fields</li>\r\n</ul>\r\n<h4>3.1.6</h4>\r\n<ul>\r\n 	<li>improvement: added support for link field</li>\r\n 	<li>improvement: added support for Font Awesome Icon field</li>\r\n 	<li>improvement: added support for range field</li>\r\n 	<li>improvement: added support for button_group field</li>\r\n 	<li>improvement: render acf groups alphabetically</li>\r\n 	<li>bug fix: import post object filed based on acf post type settings</li>\r\n 	<li>bug fix: updating acf when update option disabled</li>\r\n 	<li>bug fix: added wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: rendering ACF local fields</li>\r\n 	<li>bug fix: import relationship field based on custom types in field settings</li>\r\n</ul>\r\n<h4>3.1.5</h4>\r\n<ul>\r\n 	<li>bug fix: import post object field</li>\r\n 	<li>bug fix: matching relationship posts</li>\r\n 	<li>bug fix: using google maps api key</li>\r\n 	<li>bug fix: import clone group field</li>\r\n 	<li>bug fix: date time picker format</li>\r\n 	<li>bug fix: import empty image field in repeater</li>\r\n</ul>\r\n<h4>3.1.4</h4>\r\n<ul>\r\n 	<li>improvement: performance optimization</li>\r\n 	<li>improvement: added support for Vimeo field type</li>\r\n 	<li>bug fix: search for existing files</li>\r\n 	<li>bug fix: import images into File field</li>\r\n 	<li>bug fix: import relationship inside repeater</li>\r\n</ul>\r\n<h4>3.1.3</h4>\r\n<ul>\r\n 	<li>improvement: added support for new ACF field \\\'Google Map Extended\\\'</li>\r\n 	<li>bug fix: import ACF repeater in fixed mode</li>\r\n 	<li>bug fix: saving ACF taxonomy import template</li>\r\n 	<li>bug fix: leave these ACF fields alone, update all other ACF fields</li>\r\n 	<li>bug fix: import ACF to taxonomies</li>\r\n 	<li>bug fix: saving ACF select field</li>\r\n</ul>\r\n<h4>3.1.2</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with PHP 7.x</li>\r\n 	<li>improvement: new field type \\\'time picker\\\'</li>\r\n 	<li>improvement: new delimiter option for relationship fields</li>\r\n 	<li>bug fix: rendering repeater field inside flexible field in case when ACF configuration presented in functions.php file</li>\r\n 	<li>bug fix: import 0 value for number field inside repeater</li>\r\n</ul>\r\n<h4>3.1.1</h4>\r\n<ul>\r\n 	<li>improvement: support for clone field</li>\r\n 	<li>improvement: new option \\\'only append new images to the gallery\\\'</li>\r\n 	<li>improvement: new filter pmxi_acf_custom_field</li>\r\n 	<li>bug fix: flexible field JS conflict</li>\r\n 	<li>bug fix: search for existing image in media gallery</li>\r\n 	<li>bug fix: import ACF taxonomies to users</li>\r\n 	<li>bug fix: conflict between updating custom fields and ACF</li>\r\n 	<li>bug fix: acf grops duplicates</li>\r\n 	<li>bug fix: compatibility with php 7</li>\r\n 	<li>bug fix: import repeater in repeater for CSV mode</li>\r\n</ul>\r\n<h4>3.1.0</h4>\r\n<ul>\r\n 	<li>fixed ignore blank rows for fixed repeater mode</li>\r\n 	<li>fixed import taxonomy field</li>\r\n 	<li>fixed import multiple checkbox field in csv repeater mode</li>\r\n 	<li>added a \\\'Search through Media Library\\\' checkbox for each image field</li>\r\n 	<li>added geocode API settings to map field</li>\r\n</ul>\r\n<h4>3.0.9</h4>\r\n<ul>\r\n 	<li>fixed repeater field ( Variable mode XML )</li>\r\n</ul>\r\n<h4>3.0.8</h4>\r\n<ul>\r\n 	<li>fixed import taxonomy field</li>\r\n 	<li>fixed search for existing images is case when there are a few files with the same name in database</li>\r\n</ul>\r\n<h4>3.0.7</h4>\r\n<ul>\r\n 	<li>fixed import empty gallery field</li>\r\n</ul>\r\n<h4>3.0.6</h4>\r\n<ul>\r\n 	<li>added a separator option for gallery field</li>\r\n 	<li>fixed excessive update requests</li>\r\n</ul>\r\n<h4>3.0.5</h4>\r\n<ul>\r\n 	<li>fixed import field type file</li>\r\n 	<li>fixed loading import template</li>\r\n 	<li>fixed link to repeater field documentation</li>\r\n 	<li>fixed import relationship fields</li>\r\n</ul>\r\n<h4>3.0.4</h4>\r\n<ul>\r\n 	<li>fixed import mapped acf for 5.x version</li>\r\n 	<li>improved security</li>\r\n</ul>\r\n<h4>3.0.3</h4>\r\n<ul>\r\n 	<li>fixed import ACF for users</li>\r\n 	<li>fixed import image &amp; file fields ( searching image in attachments before download )</li>\r\n 	<li>added flexible content field</li>\r\n</ul>\r\n<h4>3.0.2</h4>\r\n<ul>\r\n 	<li>fixed conflict between repeater and taxonomy</li>\r\n 	<li>added support validated_field type</li>\r\n</ul>\r\n<h4>3.0.1</h4>\r\n<ul>\r\n 	<li>fixed call to non existing object property php error</li>\r\n 	<li>changed main plugin file name</li>\r\n</ul>\r\n<h4>3.0.0</h4>\r\n<ul>\r\n 	<li>New Advanced Custom Fields Add-On for WP All Import 4.0. Works with both ACF4 and ACF5/Pro. Learn more about WP All Import 4.0 at http://www.wpallimport.com/2014/11/introducing-wp-all-import-4-0/</li>\r\n</ul>\r\n<h4>2.0.1</h4>\r\n<ul>\r\n 	<li>Compatibility with ACF 5.0.0</li>\r\n</ul>\r\n<h4>1.0.0</h4>\r\n<ul>\r\n 	<li>fixed import images</li>\r\n 	<li>fixed session issue</li>\r\n 	<li>fixed data picker</li>\r\n</ul>\r\n<h4>0.9.7</h4>\r\n<ul>\r\n 	<li>fixed: php notices</li>\r\n 	<li>fixed: import taxonomies field</li>\r\n 	<li>fixed: import file field</li>\r\n 	<li>added: new option \\\"update only mapped ACF\\\"</li>\r\n 	<li>added: possibility to update repeater sub fields in re-import section</li>\r\n</ul>\r\n<h4>0.9.6</h4>\r\n<ul>\r\n 	<li>fixed: sanitizing file names</li>\r\n 	<li>fixed: load options template</li>\r\n 	<li>fixed: php warnings</li>\r\n</ul>\r\n<h4>0.9.5</h4>\r\n<ul>\r\n 	<li>fixed: php notices</li>\r\n 	<li>fixed: import repeater field</li>\r\n 	<li>fixed: js errors in taxonomies field</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:8:\"Success.\";s:7:\"package\";s:87:\"https://update.wpallimport.com/serve_package?package_id=2707178&version=3.3.8&license=0\";s:13:\"download_link\";s:87:\"https://update.wpallimport.com/serve_package?package_id=2707178&version=3.3.8&license=0\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}','no'),(300311,'_transient_timeout_villatheme_call','1704412836','no'),(300312,'_transient_villatheme_call','product-size-chart-for-woo','no'),(300334,'_transient_timeout__woocommerce_helper_updates','1704395153','no'),(300335,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"5ee7a3b6723ea6e143a2250895453a7e\";s:7:\"updated\";i:1704351953;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(300340,'_site_transient_timeout_kirki_googlefonts_cache','1704449215','no');
INSERT INTO `wpj7_options` VALUES (300341,'_site_transient_kirki_googlefonts_cache','a:1539:{s:7:\"ABeeZee\";a:3:{s:5:\"label\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Abel\";a:3:{s:5:\"label\";s:4:\"Abel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Abhaya Libre\";a:3:{s:5:\"label\";s:12:\"Abhaya Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Aboreto\";a:3:{s:5:\"label\";s:7:\"Aboreto\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Abril Fatface\";a:3:{s:5:\"label\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Abyssinica SIL\";a:3:{s:5:\"label\";s:14:\"Abyssinica SIL\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Aclonica\";a:3:{s:5:\"label\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Acme\";a:3:{s:5:\"label\";s:4:\"Acme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Actor\";a:3:{s:5:\"label\";s:5:\"Actor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Adamina\";a:3:{s:5:\"label\";s:7:\"Adamina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Advent Pro\";a:3:{s:5:\"label\";s:10:\"Advent Pro\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Aguafina Script\";a:3:{s:5:\"label\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Akaya Kanadaka\";a:3:{s:5:\"label\";s:14:\"Akaya Kanadaka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Akaya Telivigala\";a:3:{s:5:\"label\";s:16:\"Akaya Telivigala\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Akronim\";a:3:{s:5:\"label\";s:7:\"Akronim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Akshar\";a:3:{s:5:\"label\";s:6:\"Akshar\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Aladin\";a:3:{s:5:\"label\";s:6:\"Aladin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Alata\";a:3:{s:5:\"label\";s:5:\"Alata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Alatsi\";a:3:{s:5:\"label\";s:6:\"Alatsi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Albert Sans\";a:3:{s:5:\"label\";s:11:\"Albert Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Aldrich\";a:3:{s:5:\"label\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Alef\";a:3:{s:5:\"label\";s:4:\"Alef\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Alegreya\";a:3:{s:5:\"label\";s:8:\"Alegreya\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alegreya SC\";a:3:{s:5:\"label\";s:11:\"Alegreya SC\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alegreya Sans\";a:3:{s:5:\"label\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Alegreya Sans SC\";a:3:{s:5:\"label\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Aleo\";a:3:{s:5:\"label\";s:4:\"Aleo\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Alex Brush\";a:3:{s:5:\"label\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Alexandria\";a:3:{s:5:\"label\";s:10:\"Alexandria\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Alfa Slab One\";a:3:{s:5:\"label\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Alice\";a:3:{s:5:\"label\";s:5:\"Alice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Alike\";a:3:{s:5:\"label\";s:5:\"Alike\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alike Angular\";a:3:{s:5:\"label\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Alkalami\";a:3:{s:5:\"label\";s:8:\"Alkalami\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Alkatra\";a:3:{s:5:\"label\";s:7:\"Alkatra\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Allan\";a:3:{s:5:\"label\";s:5:\"Allan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Allerta\";a:3:{s:5:\"label\";s:7:\"Allerta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Allerta Stencil\";a:3:{s:5:\"label\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Allison\";a:3:{s:5:\"label\";s:7:\"Allison\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Allura\";a:3:{s:5:\"label\";s:6:\"Allura\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Almarai\";a:3:{s:5:\"label\";s:7:\"Almarai\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Almendra\";a:3:{s:5:\"label\";s:8:\"Almendra\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Almendra Display\";a:3:{s:5:\"label\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Almendra SC\";a:3:{s:5:\"label\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alumni Sans\";a:3:{s:5:\"label\";s:11:\"Alumni Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Alumni Sans Collegiate One\";a:3:{s:5:\"label\";s:26:\"Alumni Sans Collegiate One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Alumni Sans Inline One\";a:3:{s:5:\"label\";s:22:\"Alumni Sans Inline One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Alumni Sans Pinstripe\";a:3:{s:5:\"label\";s:21:\"Alumni Sans Pinstripe\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Amarante\";a:3:{s:5:\"label\";s:8:\"Amarante\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Amaranth\";a:3:{s:5:\"label\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Amatic SC\";a:3:{s:5:\"label\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Amethysta\";a:3:{s:5:\"label\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amiko\";a:3:{s:5:\"label\";s:5:\"Amiko\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Amiri\";a:3:{s:5:\"label\";s:5:\"Amiri\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Amiri Quran\";a:3:{s:5:\"label\";s:11:\"Amiri Quran\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amita\";a:3:{s:5:\"label\";s:5:\"Amita\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Anaheim\";a:3:{s:5:\"label\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Andada Pro\";a:3:{s:5:\"label\";s:10:\"Andada Pro\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Andika\";a:3:{s:5:\"label\";s:6:\"Andika\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Anek Bangla\";a:3:{s:5:\"label\";s:11:\"Anek Bangla\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Anek Devanagari\";a:3:{s:5:\"label\";s:15:\"Anek Devanagari\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Anek Gujarati\";a:3:{s:5:\"label\";s:13:\"Anek Gujarati\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Anek Gurmukhi\";a:3:{s:5:\"label\";s:13:\"Anek Gurmukhi\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Anek Kannada\";a:3:{s:5:\"label\";s:12:\"Anek Kannada\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Anek Latin\";a:3:{s:5:\"label\";s:10:\"Anek Latin\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Anek Malayalam\";a:3:{s:5:\"label\";s:14:\"Anek Malayalam\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Anek Odia\";a:3:{s:5:\"label\";s:9:\"Anek Odia\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Anek Tamil\";a:3:{s:5:\"label\";s:10:\"Anek Tamil\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Anek Telugu\";a:3:{s:5:\"label\";s:11:\"Anek Telugu\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Angkor\";a:3:{s:5:\"label\";s:6:\"Angkor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Annie Use Your Telescope\";a:3:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Anonymous Pro\";a:3:{s:5:\"label\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Antic\";a:3:{s:5:\"label\";s:5:\"Antic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Antic Didone\";a:3:{s:5:\"label\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Antic Slab\";a:3:{s:5:\"label\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Anton\";a:3:{s:5:\"label\";s:5:\"Anton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Antonio\";a:3:{s:5:\"label\";s:7:\"Antonio\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Anuphan\";a:3:{s:5:\"label\";s:7:\"Anuphan\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Anybody\";a:3:{s:5:\"label\";s:7:\"Anybody\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Aoboshi One\";a:3:{s:5:\"label\";s:11:\"Aoboshi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Arapey\";a:3:{s:5:\"label\";s:6:\"Arapey\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Arbutus\";a:3:{s:5:\"label\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Arbutus Slab\";a:3:{s:5:\"label\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Architects Daughter\";a:3:{s:5:\"label\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Archivo\";a:3:{s:5:\"label\";s:7:\"Archivo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Archivo Black\";a:3:{s:5:\"label\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Archivo Narrow\";a:3:{s:5:\"label\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Are You Serious\";a:3:{s:5:\"label\";s:15:\"Are You Serious\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Aref Ruqaa\";a:3:{s:5:\"label\";s:10:\"Aref Ruqaa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Aref Ruqaa Ink\";a:3:{s:5:\"label\";s:14:\"Aref Ruqaa Ink\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Arima\";a:3:{s:5:\"label\";s:5:\"Arima\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Arimo\";a:3:{s:5:\"label\";s:5:\"Arimo\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Arizonia\";a:3:{s:5:\"label\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Armata\";a:3:{s:5:\"label\";s:6:\"Armata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Arsenal\";a:3:{s:5:\"label\";s:7:\"Arsenal\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Artifika\";a:3:{s:5:\"label\";s:8:\"Artifika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arvo\";a:3:{s:5:\"label\";s:4:\"Arvo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arya\";a:3:{s:5:\"label\";s:4:\"Arya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asap\";a:3:{s:5:\"label\";s:4:\"Asap\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Asap Condensed\";a:3:{s:5:\"label\";s:14:\"Asap Condensed\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asar\";a:3:{s:5:\"label\";s:4:\"Asar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Asset\";a:3:{s:5:\"label\";s:5:\"Asset\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Assistant\";a:3:{s:5:\"label\";s:9:\"Assistant\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Astloch\";a:3:{s:5:\"label\";s:7:\"Astloch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Asul\";a:3:{s:5:\"label\";s:4:\"Asul\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Athiti\";a:3:{s:5:\"label\";s:6:\"Athiti\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Atkinson Hyperlegible\";a:3:{s:5:\"label\";s:21:\"Atkinson Hyperlegible\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Atma\";a:3:{s:5:\"label\";s:4:\"Atma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Atomic Age\";a:3:{s:5:\"label\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aubrey\";a:3:{s:5:\"label\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Audiowide\";a:3:{s:5:\"label\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Autour One\";a:3:{s:5:\"label\";s:10:\"Autour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Average\";a:3:{s:5:\"label\";s:7:\"Average\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Average Sans\";a:3:{s:5:\"label\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Averia Gruesa Libre\";a:3:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Averia Libre\";a:3:{s:5:\"label\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Averia Sans Libre\";a:3:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Averia Serif Libre\";a:3:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Azeret Mono\";a:3:{s:5:\"label\";s:11:\"Azeret Mono\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"B612\";a:3:{s:5:\"label\";s:4:\"B612\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"B612 Mono\";a:3:{s:5:\"label\";s:9:\"B612 Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"BIZ UDGothic\";a:3:{s:5:\"label\";s:12:\"BIZ UDGothic\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"BIZ UDMincho\";a:3:{s:5:\"label\";s:12:\"BIZ UDMincho\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"BIZ UDPGothic\";a:3:{s:5:\"label\";s:13:\"BIZ UDPGothic\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"BIZ UDPMincho\";a:3:{s:5:\"label\";s:13:\"BIZ UDPMincho\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Babylonica\";a:3:{s:5:\"label\";s:10:\"Babylonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Bad Script\";a:3:{s:5:\"label\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Bagel Fat One\";a:3:{s:5:\"label\";s:13:\"Bagel Fat One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Bahiana\";a:3:{s:5:\"label\";s:7:\"Bahiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bahianita\";a:3:{s:5:\"label\";s:9:\"Bahianita\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bai Jamjuree\";a:3:{s:5:\"label\";s:12:\"Bai Jamjuree\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Bakbak One\";a:3:{s:5:\"label\";s:10:\"Bakbak One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Ballet\";a:3:{s:5:\"label\";s:6:\"Ballet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Baloo 2\";a:3:{s:5:\"label\";s:7:\"Baloo 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Baloo Bhai 2\";a:3:{s:5:\"label\";s:12:\"Baloo Bhai 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Baloo Bhaijaan 2\";a:3:{s:5:\"label\";s:16:\"Baloo Bhaijaan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Bhaina 2\";a:3:{s:5:\"label\";s:14:\"Baloo Bhaina 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Chettan 2\";a:3:{s:5:\"label\";s:15:\"Baloo Chettan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Baloo Da 2\";a:3:{s:5:\"label\";s:10:\"Baloo Da 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Paaji 2\";a:3:{s:5:\"label\";s:13:\"Baloo Paaji 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Tamma 2\";a:3:{s:5:\"label\";s:13:\"Baloo Tamma 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Tammudu 2\";a:3:{s:5:\"label\";s:15:\"Baloo Tammudu 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Thambi 2\";a:3:{s:5:\"label\";s:14:\"Baloo Thambi 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Balsamiq Sans\";a:3:{s:5:\"label\";s:13:\"Balsamiq Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Balthazar\";a:3:{s:5:\"label\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bangers\";a:3:{s:5:\"label\";s:7:\"Bangers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barlow\";a:3:{s:5:\"label\";s:6:\"Barlow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Barlow Condensed\";a:3:{s:5:\"label\";s:16:\"Barlow Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Barlow Semi Condensed\";a:3:{s:5:\"label\";s:21:\"Barlow Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Barriecito\";a:3:{s:5:\"label\";s:10:\"Barriecito\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barrio\";a:3:{s:5:\"label\";s:6:\"Barrio\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Basic\";a:3:{s:5:\"label\";s:5:\"Basic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Baskervville\";a:3:{s:5:\"label\";s:12:\"Baskervville\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Battambang\";a:3:{s:5:\"label\";s:10:\"Battambang\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Baumans\";a:3:{s:5:\"label\";s:7:\"Baumans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bayon\";a:3:{s:5:\"label\";s:5:\"Bayon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Be Vietnam Pro\";a:3:{s:5:\"label\";s:14:\"Be Vietnam Pro\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Beau Rivage\";a:3:{s:5:\"label\";s:11:\"Beau Rivage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Bebas Neue\";a:3:{s:5:\"label\";s:10:\"Bebas Neue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Belgrano\";a:3:{s:5:\"label\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bellefair\";a:3:{s:5:\"label\";s:9:\"Bellefair\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Belleza\";a:3:{s:5:\"label\";s:7:\"Belleza\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Bellota\";a:3:{s:5:\"label\";s:7:\"Bellota\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bellota Text\";a:3:{s:5:\"label\";s:12:\"Bellota Text\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"BenchNine\";a:3:{s:5:\"label\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Benne\";a:3:{s:5:\"label\";s:5:\"Benne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bentham\";a:3:{s:5:\"label\";s:7:\"Bentham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Berkshire Swash\";a:3:{s:5:\"label\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Besley\";a:3:{s:5:\"label\";s:6:\"Besley\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Beth Ellen\";a:3:{s:5:\"label\";s:10:\"Beth Ellen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Bevan\";a:3:{s:5:\"label\";s:5:\"Bevan\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"BhuTuka Expanded One\";a:3:{s:5:\"label\";s:20:\"BhuTuka Expanded One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Big Shoulders Display\";a:3:{s:5:\"label\";s:21:\"Big Shoulders Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:28:\"Big Shoulders Inline Display\";a:3:{s:5:\"label\";s:28:\"Big Shoulders Inline Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Big Shoulders Inline Text\";a:3:{s:5:\"label\";s:25:\"Big Shoulders Inline Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:29:\"Big Shoulders Stencil Display\";a:3:{s:5:\"label\";s:29:\"Big Shoulders Stencil Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:26:\"Big Shoulders Stencil Text\";a:3:{s:5:\"label\";s:26:\"Big Shoulders Stencil Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Big Shoulders Text\";a:3:{s:5:\"label\";s:18:\"Big Shoulders Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bigelow Rules\";a:3:{s:5:\"label\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bigshot One\";a:3:{s:5:\"label\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bilbo\";a:3:{s:5:\"label\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Bilbo Swash Caps\";a:3:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"BioRhyme\";a:3:{s:5:\"label\";s:8:\"BioRhyme\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"BioRhyme Expanded\";a:3:{s:5:\"label\";s:17:\"BioRhyme Expanded\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Birthstone\";a:3:{s:5:\"label\";s:10:\"Birthstone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Birthstone Bounce\";a:3:{s:5:\"label\";s:17:\"Birthstone Bounce\";s:8:\"variants\";a:2:{i:0;s:3:\"500\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Biryani\";a:3:{s:5:\"label\";s:7:\"Biryani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Bitter\";a:3:{s:5:\"label\";s:6:\"Bitter\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Black And White Picture\";a:3:{s:5:\"label\";s:23:\"Black And White Picture\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Black Han Sans\";a:3:{s:5:\"label\";s:14:\"Black Han Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Black Ops One\";a:3:{s:5:\"label\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Blaka\";a:3:{s:5:\"label\";s:5:\"Blaka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Blaka Hollow\";a:3:{s:5:\"label\";s:12:\"Blaka Hollow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Blaka Ink\";a:3:{s:5:\"label\";s:9:\"Blaka Ink\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Blinker\";a:3:{s:5:\"label\";s:7:\"Blinker\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Bodoni Moda\";a:3:{s:5:\"label\";s:11:\"Bodoni Moda\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Bokor\";a:3:{s:5:\"label\";s:5:\"Bokor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bona Nova\";a:3:{s:5:\"label\";s:9:\"Bona Nova\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bonbon\";a:3:{s:5:\"label\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Bonheur Royale\";a:3:{s:5:\"label\";s:14:\"Bonheur Royale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Boogaloo\";a:3:{s:5:\"label\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Bowlby One\";a:3:{s:5:\"label\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bowlby One SC\";a:3:{s:5:\"label\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Braah One\";a:3:{s:5:\"label\";s:9:\"Braah One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Brawler\";a:3:{s:5:\"label\";s:7:\"Brawler\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Bree Serif\";a:3:{s:5:\"label\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bruno Ace\";a:3:{s:5:\"label\";s:9:\"Bruno Ace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bruno Ace SC\";a:3:{s:5:\"label\";s:12:\"Bruno Ace SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Brygada 1918\";a:3:{s:5:\"label\";s:12:\"Brygada 1918\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Bubblegum Sans\";a:3:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bubbler One\";a:3:{s:5:\"label\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Buda\";a:3:{s:5:\"label\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:0;s:3:\"300\";}s:8:\"category\";s:7:\"display\";}s:7:\"Buenard\";a:3:{s:5:\"label\";s:7:\"Buenard\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bungee\";a:3:{s:5:\"label\";s:6:\"Bungee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Bungee Hairline\";a:3:{s:5:\"label\";s:15:\"Bungee Hairline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bungee Inline\";a:3:{s:5:\"label\";s:13:\"Bungee Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Bungee Outline\";a:3:{s:5:\"label\";s:14:\"Bungee Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Shade\";a:3:{s:5:\"label\";s:12:\"Bungee Shade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Spice\";a:3:{s:5:\"label\";s:12:\"Bungee Spice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Butcherman\";a:3:{s:5:\"label\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Butterfly Kids\";a:3:{s:5:\"label\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cabin\";a:3:{s:5:\"label\";s:5:\"Cabin\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Cabin Condensed\";a:3:{s:5:\"label\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Cabin Sketch\";a:3:{s:5:\"label\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Caesar Dressing\";a:3:{s:5:\"label\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Cagliostro\";a:3:{s:5:\"label\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cairo\";a:3:{s:5:\"label\";s:5:\"Cairo\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Cairo Play\";a:3:{s:5:\"label\";s:10:\"Cairo Play\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caladea\";a:3:{s:5:\"label\";s:7:\"Caladea\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Calistoga\";a:3:{s:5:\"label\";s:9:\"Calistoga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Calligraffitti\";a:3:{s:5:\"label\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Cambay\";a:3:{s:5:\"label\";s:6:\"Cambay\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cambo\";a:3:{s:5:\"label\";s:5:\"Cambo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Candal\";a:3:{s:5:\"label\";s:6:\"Candal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cantarell\";a:3:{s:5:\"label\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Cantata One\";a:3:{s:5:\"label\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cantora One\";a:3:{s:5:\"label\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Capriola\";a:3:{s:5:\"label\";s:8:\"Capriola\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caramel\";a:3:{s:5:\"label\";s:7:\"Caramel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Carattere\";a:3:{s:5:\"label\";s:9:\"Carattere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cardo\";a:3:{s:5:\"label\";s:5:\"Cardo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Carlito\";a:3:{s:5:\"label\";s:7:\"Carlito\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Carme\";a:3:{s:5:\"label\";s:5:\"Carme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Carrois Gothic\";a:3:{s:5:\"label\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Carrois Gothic SC\";a:3:{s:5:\"label\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Carter One\";a:3:{s:5:\"label\";s:10:\"Carter One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Castoro\";a:3:{s:5:\"label\";s:7:\"Castoro\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Castoro Titling\";a:3:{s:5:\"label\";s:15:\"Castoro Titling\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Catamaran\";a:3:{s:5:\"label\";s:9:\"Catamaran\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Caudex\";a:3:{s:5:\"label\";s:6:\"Caudex\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Caveat\";a:3:{s:5:\"label\";s:6:\"Caveat\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Caveat Brush\";a:3:{s:5:\"label\";s:12:\"Caveat Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Cedarville Cursive\";a:3:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Ceviche One\";a:3:{s:5:\"label\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Chakra Petch\";a:3:{s:5:\"label\";s:12:\"Chakra Petch\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Changa\";a:3:{s:5:\"label\";s:6:\"Changa\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Changa One\";a:3:{s:5:\"label\";s:10:\"Changa One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chango\";a:3:{s:5:\"label\";s:6:\"Chango\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Charis SIL\";a:3:{s:5:\"label\";s:10:\"Charis SIL\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Charm\";a:3:{s:5:\"label\";s:5:\"Charm\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Charmonman\";a:3:{s:5:\"label\";s:10:\"Charmonman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Chathura\";a:3:{s:5:\"label\";s:8:\"Chathura\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Chau Philomene One\";a:3:{s:5:\"label\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Chela One\";a:3:{s:5:\"label\";s:9:\"Chela One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Chelsea Market\";a:3:{s:5:\"label\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chenla\";a:3:{s:5:\"label\";s:6:\"Chenla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Cherish\";a:3:{s:5:\"label\";s:7:\"Cherish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Cherry Bomb One\";a:3:{s:5:\"label\";s:15:\"Cherry Bomb One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Cherry Cream Soda\";a:3:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Cherry Swash\";a:3:{s:5:\"label\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Chewy\";a:3:{s:5:\"label\";s:5:\"Chewy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chicle\";a:3:{s:5:\"label\";s:6:\"Chicle\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Chilanka\";a:3:{s:5:\"label\";s:8:\"Chilanka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Chivo\";a:3:{s:5:\"label\";s:5:\"Chivo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Chivo Mono\";a:3:{s:5:\"label\";s:10:\"Chivo Mono\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Chokokutai\";a:3:{s:5:\"label\";s:10:\"Chokokutai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Chonburi\";a:3:{s:5:\"label\";s:8:\"Chonburi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cinzel\";a:3:{s:5:\"label\";s:6:\"Cinzel\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cinzel Decorative\";a:3:{s:5:\"label\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Clicker Script\";a:3:{s:5:\"label\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Climate Crisis\";a:3:{s:5:\"label\";s:14:\"Climate Crisis\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Coda\";a:3:{s:5:\"label\";s:4:\"Coda\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Codystar\";a:3:{s:5:\"label\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Coiny\";a:3:{s:5:\"label\";s:5:\"Coiny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Combo\";a:3:{s:5:\"label\";s:5:\"Combo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comfortaa\";a:3:{s:5:\"label\";s:9:\"Comfortaa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comforter\";a:3:{s:5:\"label\";s:9:\"Comforter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Comforter Brush\";a:3:{s:5:\"label\";s:15:\"Comforter Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Comic Neue\";a:3:{s:5:\"label\";s:10:\"Comic Neue\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Coming Soon\";a:3:{s:5:\"label\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Comme\";a:3:{s:5:\"label\";s:5:\"Comme\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Commissioner\";a:3:{s:5:\"label\";s:12:\"Commissioner\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Concert One\";a:3:{s:5:\"label\";s:11:\"Concert One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Condiment\";a:3:{s:5:\"label\";s:9:\"Condiment\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Content\";a:3:{s:5:\"label\";s:7:\"Content\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Contrail One\";a:3:{s:5:\"label\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Convergence\";a:3:{s:5:\"label\";s:11:\"Convergence\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Cookie\";a:3:{s:5:\"label\";s:6:\"Cookie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Copse\";a:3:{s:5:\"label\";s:5:\"Copse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Corben\";a:3:{s:5:\"label\";s:6:\"Corben\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Corinthia\";a:3:{s:5:\"label\";s:9:\"Corinthia\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Cormorant\";a:3:{s:5:\"label\";s:9:\"Cormorant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Cormorant Garamond\";a:3:{s:5:\"label\";s:18:\"Cormorant Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Cormorant Infant\";a:3:{s:5:\"label\";s:16:\"Cormorant Infant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Cormorant SC\";a:3:{s:5:\"label\";s:12:\"Cormorant SC\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Unicase\";a:3:{s:5:\"label\";s:17:\"Cormorant Unicase\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Upright\";a:3:{s:5:\"label\";s:17:\"Cormorant Upright\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Courgette\";a:3:{s:5:\"label\";s:9:\"Courgette\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Courier Prime\";a:3:{s:5:\"label\";s:13:\"Courier Prime\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Cousine\";a:3:{s:5:\"label\";s:7:\"Cousine\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:8:\"Coustard\";a:3:{s:5:\"label\";s:8:\"Coustard\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Covered By Your Grace\";a:3:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Crafty Girls\";a:3:{s:5:\"label\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Creepster\";a:3:{s:5:\"label\";s:9:\"Creepster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Crete Round\";a:3:{s:5:\"label\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Crimson Pro\";a:3:{s:5:\"label\";s:11:\"Crimson Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Crimson Text\";a:3:{s:5:\"label\";s:12:\"Crimson Text\";s:8:\"variants\";a:6:{i:0;s:3:\"600\";i:1;s:9:\"600italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Croissant One\";a:3:{s:5:\"label\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Crushed\";a:3:{s:5:\"label\";s:7:\"Crushed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cuprum\";a:3:{s:5:\"label\";s:6:\"Cuprum\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cute Font\";a:3:{s:5:\"label\";s:9:\"Cute Font\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cutive\";a:3:{s:5:\"label\";s:6:\"Cutive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cutive Mono\";a:3:{s:5:\"label\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Mono\";a:3:{s:5:\"label\";s:7:\"DM Mono\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Sans\";a:3:{s:5:\"label\";s:7:\"DM Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"DM Serif Display\";a:3:{s:5:\"label\";s:16:\"DM Serif Display\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"DM Serif Text\";a:3:{s:5:\"label\";s:13:\"DM Serif Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Damion\";a:3:{s:5:\"label\";s:6:\"Damion\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Dancing Script\";a:3:{s:5:\"label\";s:14:\"Dancing Script\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Dangrek\";a:3:{s:5:\"label\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Darker Grotesque\";a:3:{s:5:\"label\";s:16:\"Darker Grotesque\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Darumadrop One\";a:3:{s:5:\"label\";s:14:\"Darumadrop One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"David Libre\";a:3:{s:5:\"label\";s:11:\"David Libre\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Dawning of a New Day\";a:3:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Days One\";a:3:{s:5:\"label\";s:8:\"Days One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dekko\";a:3:{s:5:\"label\";s:5:\"Dekko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Dela Gothic One\";a:3:{s:5:\"label\";s:15:\"Dela Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Delicious Handrawn\";a:3:{s:5:\"label\";s:18:\"Delicious Handrawn\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Delius\";a:3:{s:5:\"label\";s:6:\"Delius\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Delius Swash Caps\";a:3:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Delius Unicase\";a:3:{s:5:\"label\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Della Respira\";a:3:{s:5:\"label\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Denk One\";a:3:{s:5:\"label\";s:8:\"Denk One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Devonshire\";a:3:{s:5:\"label\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Dhurjati\";a:3:{s:5:\"label\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Didact Gothic\";a:3:{s:5:\"label\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Diphylleia\";a:3:{s:5:\"label\";s:10:\"Diphylleia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Diplomata\";a:3:{s:5:\"label\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Diplomata SC\";a:3:{s:5:\"label\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Do Hyeon\";a:3:{s:5:\"label\";s:8:\"Do Hyeon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dokdo\";a:3:{s:5:\"label\";s:5:\"Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Domine\";a:3:{s:5:\"label\";s:6:\"Domine\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Donegal One\";a:3:{s:5:\"label\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Dongle\";a:3:{s:5:\"label\";s:6:\"Dongle\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Doppio One\";a:3:{s:5:\"label\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dorsa\";a:3:{s:5:\"label\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dosis\";a:3:{s:5:\"label\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"DotGothic16\";a:3:{s:5:\"label\";s:11:\"DotGothic16\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Dr Sugiyama\";a:3:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Duru Sans\";a:3:{s:5:\"label\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"DynaPuff\";a:3:{s:5:\"label\";s:8:\"DynaPuff\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Dynalight\";a:3:{s:5:\"label\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"EB Garamond\";a:3:{s:5:\"label\";s:11:\"EB Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Eagle Lake\";a:3:{s:5:\"label\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"East Sea Dokdo\";a:3:{s:5:\"label\";s:14:\"East Sea Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Eater\";a:3:{s:5:\"label\";s:5:\"Eater\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Economica\";a:3:{s:5:\"label\";s:9:\"Economica\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Eczar\";a:3:{s:5:\"label\";s:5:\"Eczar\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"Edu NSW ACT Foundation\";a:3:{s:5:\"label\";s:22:\"Edu NSW ACT Foundation\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Edu QLD Beginner\";a:3:{s:5:\"label\";s:16:\"Edu QLD Beginner\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Edu SA Beginner\";a:3:{s:5:\"label\";s:15:\"Edu SA Beginner\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Edu TAS Beginner\";a:3:{s:5:\"label\";s:16:\"Edu TAS Beginner\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Edu VIC WA NT Beginner\";a:3:{s:5:\"label\";s:22:\"Edu VIC WA NT Beginner\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"El Messiri\";a:3:{s:5:\"label\";s:10:\"El Messiri\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Electrolize\";a:3:{s:5:\"label\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Elsie\";a:3:{s:5:\"label\";s:5:\"Elsie\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Elsie Swash Caps\";a:3:{s:5:\"label\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Emblema One\";a:3:{s:5:\"label\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Emilys Candy\";a:3:{s:5:\"label\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Encode Sans\";a:3:{s:5:\"label\";s:11:\"Encode Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Encode Sans Condensed\";a:3:{s:5:\"label\";s:21:\"Encode Sans Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Encode Sans Expanded\";a:3:{s:5:\"label\";s:20:\"Encode Sans Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Encode Sans SC\";a:3:{s:5:\"label\";s:14:\"Encode Sans SC\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Encode Sans Semi Condensed\";a:3:{s:5:\"label\";s:26:\"Encode Sans Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Encode Sans Semi Expanded\";a:3:{s:5:\"label\";s:25:\"Encode Sans Semi Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Engagement\";a:3:{s:5:\"label\";s:10:\"Engagement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Englebert\";a:3:{s:5:\"label\";s:9:\"Englebert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Enriqueta\";a:3:{s:5:\"label\";s:9:\"Enriqueta\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Ephesis\";a:3:{s:5:\"label\";s:7:\"Ephesis\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Epilogue\";a:3:{s:5:\"label\";s:8:\"Epilogue\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Erica One\";a:3:{s:5:\"label\";s:9:\"Erica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Esteban\";a:3:{s:5:\"label\";s:7:\"Esteban\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Estonia\";a:3:{s:5:\"label\";s:7:\"Estonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Euphoria Script\";a:3:{s:5:\"label\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ewert\";a:3:{s:5:\"label\";s:5:\"Ewert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Exo\";a:3:{s:5:\"label\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Exo 2\";a:3:{s:5:\"label\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Expletus Sans\";a:3:{s:5:\"label\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Explora\";a:3:{s:5:\"label\";s:7:\"Explora\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Fahkwang\";a:3:{s:5:\"label\";s:8:\"Fahkwang\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Familjen Grotesk\";a:3:{s:5:\"label\";s:16:\"Familjen Grotesk\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Fanwood Text\";a:3:{s:5:\"label\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Farro\";a:3:{s:5:\"label\";s:5:\"Farro\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Farsan\";a:3:{s:5:\"label\";s:6:\"Farsan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fascinate\";a:3:{s:5:\"label\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Fascinate Inline\";a:3:{s:5:\"label\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Faster One\";a:3:{s:5:\"label\";s:10:\"Faster One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fasthand\";a:3:{s:5:\"label\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fauna One\";a:3:{s:5:\"label\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Faustina\";a:3:{s:5:\"label\";s:8:\"Faustina\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Federant\";a:3:{s:5:\"label\";s:8:\"Federant\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Federo\";a:3:{s:5:\"label\";s:6:\"Federo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Felipa\";a:3:{s:5:\"label\";s:6:\"Felipa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Fenix\";a:3:{s:5:\"label\";s:5:\"Fenix\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Festive\";a:3:{s:5:\"label\";s:7:\"Festive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Figtree\";a:3:{s:5:\"label\";s:7:\"Figtree\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Finger Paint\";a:3:{s:5:\"label\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Finlandica\";a:3:{s:5:\"label\";s:10:\"Finlandica\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fira Code\";a:3:{s:5:\"label\";s:9:\"Fira Code\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Mono\";a:3:{s:5:\"label\";s:9:\"Fira Mono\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Sans\";a:3:{s:5:\"label\";s:9:\"Fira Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Fira Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Fira Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Fira Sans Extra Condensed\";a:3:{s:5:\"label\";s:25:\"Fira Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Fjalla One\";a:3:{s:5:\"label\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fjord One\";a:3:{s:5:\"label\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Flamenco\";a:3:{s:5:\"label\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Flavors\";a:3:{s:5:\"label\";s:7:\"Flavors\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Fleur De Leah\";a:3:{s:5:\"label\";s:13:\"Fleur De Leah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Flow Block\";a:3:{s:5:\"label\";s:10:\"Flow Block\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Flow Circular\";a:3:{s:5:\"label\";s:13:\"Flow Circular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Flow Rounded\";a:3:{s:5:\"label\";s:12:\"Flow Rounded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Foldit\";a:3:{s:5:\"label\";s:6:\"Foldit\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Fondamento\";a:3:{s:5:\"label\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Fontdiner Swanky\";a:3:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Forum\";a:3:{s:5:\"label\";s:5:\"Forum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Fragment Mono\";a:3:{s:5:\"label\";s:13:\"Fragment Mono\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Francois One\";a:3:{s:5:\"label\";s:12:\"Francois One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Frank Ruhl Libre\";a:3:{s:5:\"label\";s:16:\"Frank Ruhl Libre\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Fraunces\";a:3:{s:5:\"label\";s:8:\"Fraunces\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Freckle Face\";a:3:{s:5:\"label\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Fredericka the Great\";a:3:{s:5:\"label\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fredoka\";a:3:{s:5:\"label\";s:7:\"Fredoka\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Freehand\";a:3:{s:5:\"label\";s:8:\"Freehand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Fresca\";a:3:{s:5:\"label\";s:6:\"Fresca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Frijole\";a:3:{s:5:\"label\";s:7:\"Frijole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fruktur\";a:3:{s:5:\"label\";s:7:\"Fruktur\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fugaz One\";a:3:{s:5:\"label\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fuggles\";a:3:{s:5:\"label\";s:7:\"Fuggles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Fuzzy Bubbles\";a:3:{s:5:\"label\";s:13:\"Fuzzy Bubbles\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"GFS Didot\";a:3:{s:5:\"label\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"GFS Neohellenic\";a:3:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gabriela\";a:3:{s:5:\"label\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Gaegu\";a:3:{s:5:\"label\";s:5:\"Gaegu\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Gafata\";a:3:{s:5:\"label\";s:6:\"Gafata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Gajraj One\";a:3:{s:5:\"label\";s:10:\"Gajraj One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Galada\";a:3:{s:5:\"label\";s:6:\"Galada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Galdeano\";a:3:{s:5:\"label\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Galindo\";a:3:{s:5:\"label\";s:7:\"Galindo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gamja Flower\";a:3:{s:5:\"label\";s:12:\"Gamja Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Gantari\";a:3:{s:5:\"label\";s:7:\"Gantari\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Gasoek One\";a:3:{s:5:\"label\";s:10:\"Gasoek One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gayathri\";a:3:{s:5:\"label\";s:8:\"Gayathri\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Gelasio\";a:3:{s:5:\"label\";s:7:\"Gelasio\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gemunu Libre\";a:3:{s:5:\"label\";s:12:\"Gemunu Libre\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Genos\";a:3:{s:5:\"label\";s:5:\"Genos\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Gentium Book Plus\";a:3:{s:5:\"label\";s:17:\"Gentium Book Plus\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gentium Plus\";a:3:{s:5:\"label\";s:12:\"Gentium Plus\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:3:\"Geo\";a:3:{s:5:\"label\";s:3:\"Geo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Geologica\";a:3:{s:5:\"label\";s:9:\"Geologica\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Georama\";a:3:{s:5:\"label\";s:7:\"Georama\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Geostar\";a:3:{s:5:\"label\";s:7:\"Geostar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Geostar Fill\";a:3:{s:5:\"label\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Germania One\";a:3:{s:5:\"label\";s:12:\"Germania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gideon Roman\";a:3:{s:5:\"label\";s:12:\"Gideon Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gidugu\";a:3:{s:5:\"label\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gilda Display\";a:3:{s:5:\"label\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Girassol\";a:3:{s:5:\"label\";s:8:\"Girassol\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Give You Glory\";a:3:{s:5:\"label\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Glass Antiqua\";a:3:{s:5:\"label\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Glegoo\";a:3:{s:5:\"label\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Gloock\";a:3:{s:5:\"label\";s:6:\"Gloock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Gloria Hallelujah\";a:3:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Glory\";a:3:{s:5:\"label\";s:5:\"Glory\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Gluten\";a:3:{s:5:\"label\";s:6:\"Gluten\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Goblin One\";a:3:{s:5:\"label\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Gochi Hand\";a:3:{s:5:\"label\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Goldman\";a:3:{s:5:\"label\";s:7:\"Goldman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Golos Text\";a:3:{s:5:\"label\";s:10:\"Golos Text\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gorditas\";a:3:{s:5:\"label\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Gothic A1\";a:3:{s:5:\"label\";s:9:\"Gothic A1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gotu\";a:3:{s:5:\"label\";s:4:\"Gotu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Goudy Bookletter 1911\";a:3:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gowun Batang\";a:3:{s:5:\"label\";s:12:\"Gowun Batang\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Gowun Dodum\";a:3:{s:5:\"label\";s:11:\"Gowun Dodum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Graduate\";a:3:{s:5:\"label\";s:8:\"Graduate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Grand Hotel\";a:3:{s:5:\"label\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Grandiflora One\";a:3:{s:5:\"label\";s:15:\"Grandiflora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Grandstander\";a:3:{s:5:\"label\";s:12:\"Grandstander\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Grape Nuts\";a:3:{s:5:\"label\";s:10:\"Grape Nuts\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Gravitas One\";a:3:{s:5:\"label\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Great Vibes\";a:3:{s:5:\"label\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Grechen Fuemen\";a:3:{s:5:\"label\";s:14:\"Grechen Fuemen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Grenze\";a:3:{s:5:\"label\";s:6:\"Grenze\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Grenze Gotisch\";a:3:{s:5:\"label\";s:14:\"Grenze Gotisch\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Grey Qo\";a:3:{s:5:\"label\";s:7:\"Grey Qo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Griffy\";a:3:{s:5:\"label\";s:6:\"Griffy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gruppo\";a:3:{s:5:\"label\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Gudea\";a:3:{s:5:\"label\";s:5:\"Gudea\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gugi\";a:3:{s:5:\"label\";s:4:\"Gugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gulzar\";a:3:{s:5:\"label\";s:6:\"Gulzar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Gupter\";a:3:{s:5:\"label\";s:6:\"Gupter\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Gurajada\";a:3:{s:5:\"label\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Gwendolyn\";a:3:{s:5:\"label\";s:9:\"Gwendolyn\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Habibi\";a:3:{s:5:\"label\";s:6:\"Habibi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Hachi Maru Pop\";a:3:{s:5:\"label\";s:14:\"Hachi Maru Pop\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hahmlet\";a:3:{s:5:\"label\";s:7:\"Hahmlet\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Halant\";a:3:{s:5:\"label\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Hammersmith One\";a:3:{s:5:\"label\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanalei\";a:3:{s:5:\"label\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Hanalei Fill\";a:3:{s:5:\"label\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Handlee\";a:3:{s:5:\"label\";s:7:\"Handlee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Hanken Grotesk\";a:3:{s:5:\"label\";s:14:\"Hanken Grotesk\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanuman\";a:3:{s:5:\"label\";s:7:\"Hanuman\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Happy Monkey\";a:3:{s:5:\"label\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Harmattan\";a:3:{s:5:\"label\";s:9:\"Harmattan\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Headland One\";a:3:{s:5:\"label\";s:12:\"Headland One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Heebo\";a:3:{s:5:\"label\";s:5:\"Heebo\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Henny Penny\";a:3:{s:5:\"label\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Hepta Slab\";a:3:{s:5:\"label\";s:10:\"Hepta Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Herr Von Muellerhoff\";a:3:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Hi Melody\";a:3:{s:5:\"label\";s:9:\"Hi Melody\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Hina Mincho\";a:3:{s:5:\"label\";s:11:\"Hina Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Hind\";a:3:{s:5:\"label\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Hind Guntur\";a:3:{s:5:\"label\";s:11:\"Hind Guntur\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Hind Madurai\";a:3:{s:5:\"label\";s:12:\"Hind Madurai\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Siliguri\";a:3:{s:5:\"label\";s:13:\"Hind Siliguri\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Vadodara\";a:3:{s:5:\"label\";s:13:\"Hind Vadodara\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Holtwood One SC\";a:3:{s:5:\"label\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Homemade Apple\";a:3:{s:5:\"label\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Homenaje\";a:3:{s:5:\"label\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Hubballi\";a:3:{s:5:\"label\";s:8:\"Hubballi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Hurricane\";a:3:{s:5:\"label\";s:9:\"Hurricane\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"IBM Plex Mono\";a:3:{s:5:\"label\";s:13:\"IBM Plex Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"IBM Plex Sans\";a:3:{s:5:\"label\";s:13:\"IBM Plex Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"IBM Plex Sans Arabic\";a:3:{s:5:\"label\";s:20:\"IBM Plex Sans Arabic\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"IBM Plex Sans Condensed\";a:3:{s:5:\"label\";s:23:\"IBM Plex Sans Condensed\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"IBM Plex Sans Devanagari\";a:3:{s:5:\"label\";s:24:\"IBM Plex Sans Devanagari\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"IBM Plex Sans Hebrew\";a:3:{s:5:\"label\";s:20:\"IBM Plex Sans Hebrew\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"IBM Plex Sans JP\";a:3:{s:5:\"label\";s:16:\"IBM Plex Sans JP\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"IBM Plex Sans KR\";a:3:{s:5:\"label\";s:16:\"IBM Plex Sans KR\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"IBM Plex Sans Thai\";a:3:{s:5:\"label\";s:18:\"IBM Plex Sans Thai\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"IBM Plex Sans Thai Looped\";a:3:{s:5:\"label\";s:25:\"IBM Plex Sans Thai Looped\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"IBM Plex Serif\";a:3:{s:5:\"label\";s:14:\"IBM Plex Serif\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell DW Pica\";a:3:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell DW Pica SC\";a:3:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"IM Fell Double Pica\";a:3:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"IM Fell Double Pica SC\";a:3:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell English\";a:3:{s:5:\"label\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell English SC\";a:3:{s:5:\"label\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell French Canon\";a:3:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell French Canon SC\";a:3:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell Great Primer\";a:3:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell Great Primer SC\";a:3:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Ibarra Real Nova\";a:3:{s:5:\"label\";s:16:\"Ibarra Real Nova\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Iceberg\";a:3:{s:5:\"label\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Iceland\";a:3:{s:5:\"label\";s:7:\"Iceland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Imbue\";a:3:{s:5:\"label\";s:5:\"Imbue\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Imperial Script\";a:3:{s:5:\"label\";s:15:\"Imperial Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Imprima\";a:3:{s:5:\"label\";s:7:\"Imprima\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inconsolata\";a:3:{s:5:\"label\";s:11:\"Inconsolata\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Inder\";a:3:{s:5:\"label\";s:5:\"Inder\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Indie Flower\";a:3:{s:5:\"label\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Ingrid Darling\";a:3:{s:5:\"label\";s:14:\"Ingrid Darling\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inika\";a:3:{s:5:\"label\";s:5:\"Inika\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Inknut Antiqua\";a:3:{s:5:\"label\";s:14:\"Inknut Antiqua\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Inria Sans\";a:3:{s:5:\"label\";s:10:\"Inria Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inria Serif\";a:3:{s:5:\"label\";s:11:\"Inria Serif\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Inspiration\";a:3:{s:5:\"label\";s:11:\"Inspiration\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Instrument Sans\";a:3:{s:5:\"label\";s:15:\"Instrument Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Instrument Serif\";a:3:{s:5:\"label\";s:16:\"Instrument Serif\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Inter\";a:3:{s:5:\"label\";s:5:\"Inter\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inter Tight\";a:3:{s:5:\"label\";s:11:\"Inter Tight\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Irish Grover\";a:3:{s:5:\"label\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Island Moments\";a:3:{s:5:\"label\";s:14:\"Island Moments\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Istok Web\";a:3:{s:5:\"label\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Italiana\";a:3:{s:5:\"label\";s:8:\"Italiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Italianno\";a:3:{s:5:\"label\";s:9:\"Italianno\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Itim\";a:3:{s:5:\"label\";s:4:\"Itim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Jacques Francois\";a:3:{s:5:\"label\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Jacques Francois Shadow\";a:3:{s:5:\"label\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Jaldi\";a:3:{s:5:\"label\";s:5:\"Jaldi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"JetBrains Mono\";a:3:{s:5:\"label\";s:14:\"JetBrains Mono\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Jim Nightshade\";a:3:{s:5:\"label\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Joan\";a:3:{s:5:\"label\";s:4:\"Joan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Jockey One\";a:3:{s:5:\"label\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Jolly Lodger\";a:3:{s:5:\"label\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Jomhuria\";a:3:{s:5:\"label\";s:8:\"Jomhuria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Jomolhari\";a:3:{s:5:\"label\";s:9:\"Jomolhari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Josefin Sans\";a:3:{s:5:\"label\";s:12:\"Josefin Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Josefin Slab\";a:3:{s:5:\"label\";s:12:\"Josefin Slab\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jost\";a:3:{s:5:\"label\";s:4:\"Jost\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Joti One\";a:3:{s:5:\"label\";s:8:\"Joti One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Jua\";a:3:{s:5:\"label\";s:3:\"Jua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Judson\";a:3:{s:5:\"label\";s:6:\"Judson\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Julee\";a:3:{s:5:\"label\";s:5:\"Julee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Julius Sans One\";a:3:{s:5:\"label\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Junge\";a:3:{s:5:\"label\";s:5:\"Junge\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jura\";a:3:{s:5:\"label\";s:4:\"Jura\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Just Another Hand\";a:3:{s:5:\"label\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Just Me Again Down Here\";a:3:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"K2D\";a:3:{s:5:\"label\";s:3:\"K2D\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Kablammo\";a:3:{s:5:\"label\";s:8:\"Kablammo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kadwa\";a:3:{s:5:\"label\";s:5:\"Kadwa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Kaisei Decol\";a:3:{s:5:\"label\";s:12:\"Kaisei Decol\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Kaisei HarunoUmi\";a:3:{s:5:\"label\";s:16:\"Kaisei HarunoUmi\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Kaisei Opti\";a:3:{s:5:\"label\";s:11:\"Kaisei Opti\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Kaisei Tokumin\";a:3:{s:5:\"label\";s:14:\"Kaisei Tokumin\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kalam\";a:3:{s:5:\"label\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Kameron\";a:3:{s:5:\"label\";s:7:\"Kameron\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kanit\";a:3:{s:5:\"label\";s:5:\"Kanit\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Kantumruy Pro\";a:3:{s:5:\"label\";s:13:\"Kantumruy Pro\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Karantina\";a:3:{s:5:\"label\";s:9:\"Karantina\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Karla\";a:3:{s:5:\"label\";s:5:\"Karla\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karma\";a:3:{s:5:\"label\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Katibeh\";a:3:{s:5:\"label\";s:7:\"Katibeh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kaushan Script\";a:3:{s:5:\"label\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Kavivanar\";a:3:{s:5:\"label\";s:9:\"Kavivanar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kavoon\";a:3:{s:5:\"label\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kdam Thmor Pro\";a:3:{s:5:\"label\";s:14:\"Kdam Thmor Pro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Keania One\";a:3:{s:5:\"label\";s:10:\"Keania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kelly Slab\";a:3:{s:5:\"label\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kenia\";a:3:{s:5:\"label\";s:5:\"Kenia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khand\";a:3:{s:5:\"label\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Khmer\";a:3:{s:5:\"label\";s:5:\"Khmer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khula\";a:3:{s:5:\"label\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kings\";a:3:{s:5:\"label\";s:5:\"Kings\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Kirang Haerang\";a:3:{s:5:\"label\";s:14:\"Kirang Haerang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Kite One\";a:3:{s:5:\"label\";s:8:\"Kite One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kiwi Maru\";a:3:{s:5:\"label\";s:9:\"Kiwi Maru\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Klee One\";a:3:{s:5:\"label\";s:8:\"Klee One\";s:8:\"variants\";a:2:{i:0;s:3:\"600\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Knewave\";a:3:{s:5:\"label\";s:7:\"Knewave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"KoHo\";a:3:{s:5:\"label\";s:4:\"KoHo\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kodchasan\";a:3:{s:5:\"label\";s:9:\"Kodchasan\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Koh Santepheap\";a:3:{s:5:\"label\";s:14:\"Koh Santepheap\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Kolker Brush\";a:3:{s:5:\"label\";s:12:\"Kolker Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Konkhmer Sleokchher\";a:3:{s:5:\"label\";s:19:\"Konkhmer Sleokchher\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kosugi\";a:3:{s:5:\"label\";s:6:\"Kosugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Kosugi Maru\";a:3:{s:5:\"label\";s:11:\"Kosugi Maru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kotta One\";a:3:{s:5:\"label\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Koulen\";a:3:{s:5:\"label\";s:6:\"Koulen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kranky\";a:3:{s:5:\"label\";s:6:\"Kranky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kreon\";a:3:{s:5:\"label\";s:5:\"Kreon\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Kristi\";a:3:{s:5:\"label\";s:6:\"Kristi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Krona One\";a:3:{s:5:\"label\";s:9:\"Krona One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Krub\";a:3:{s:5:\"label\";s:4:\"Krub\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kufam\";a:3:{s:5:\"label\";s:5:\"Kufam\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Kulim Park\";a:3:{s:5:\"label\";s:10:\"Kulim Park\";s:8:\"variants\";a:10:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kumar One\";a:3:{s:5:\"label\";s:9:\"Kumar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Kumar One Outline\";a:3:{s:5:\"label\";s:17:\"Kumar One Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kumbh Sans\";a:3:{s:5:\"label\";s:10:\"Kumbh Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kurale\";a:3:{s:5:\"label\";s:6:\"Kurale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"La Belle Aurore\";a:3:{s:5:\"label\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Labrada\";a:3:{s:5:\"label\";s:7:\"Labrada\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lacquer\";a:3:{s:5:\"label\";s:7:\"Lacquer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Laila\";a:3:{s:5:\"label\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lakki Reddy\";a:3:{s:5:\"label\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lalezar\";a:3:{s:5:\"label\";s:7:\"Lalezar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lancelot\";a:3:{s:5:\"label\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Langar\";a:3:{s:5:\"label\";s:6:\"Langar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lateef\";a:3:{s:5:\"label\";s:6:\"Lateef\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Lato\";a:3:{s:5:\"label\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Lavishly Yours\";a:3:{s:5:\"label\";s:14:\"Lavishly Yours\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"League Gothic\";a:3:{s:5:\"label\";s:13:\"League Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"League Script\";a:3:{s:5:\"label\";s:13:\"League Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"League Spartan\";a:3:{s:5:\"label\";s:14:\"League Spartan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Leckerli One\";a:3:{s:5:\"label\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ledger\";a:3:{s:5:\"label\";s:6:\"Ledger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Lekton\";a:3:{s:5:\"label\";s:6:\"Lekton\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Lemon\";a:3:{s:5:\"label\";s:5:\"Lemon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lemonada\";a:3:{s:5:\"label\";s:8:\"Lemonada\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lexend\";a:3:{s:5:\"label\";s:6:\"Lexend\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Deca\";a:3:{s:5:\"label\";s:11:\"Lexend Deca\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Lexend Exa\";a:3:{s:5:\"label\";s:10:\"Lexend Exa\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Giga\";a:3:{s:5:\"label\";s:11:\"Lexend Giga\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Mega\";a:3:{s:5:\"label\";s:11:\"Lexend Mega\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Peta\";a:3:{s:5:\"label\";s:11:\"Lexend Peta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Tera\";a:3:{s:5:\"label\";s:11:\"Lexend Tera\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Lexend Zetta\";a:3:{s:5:\"label\";s:12:\"Lexend Zetta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Libre Barcode 128\";a:3:{s:5:\"label\";s:17:\"Libre Barcode 128\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Libre Barcode 128 Text\";a:3:{s:5:\"label\";s:22:\"Libre Barcode 128 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Libre Barcode 39\";a:3:{s:5:\"label\";s:16:\"Libre Barcode 39\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Libre Barcode 39 Extended\";a:3:{s:5:\"label\";s:25:\"Libre Barcode 39 Extended\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:30:\"Libre Barcode 39 Extended Text\";a:3:{s:5:\"label\";s:30:\"Libre Barcode 39 Extended Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Libre Barcode 39 Text\";a:3:{s:5:\"label\";s:21:\"Libre Barcode 39 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Libre Barcode EAN13 Text\";a:3:{s:5:\"label\";s:24:\"Libre Barcode EAN13 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Libre Baskerville\";a:3:{s:5:\"label\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Libre Bodoni\";a:3:{s:5:\"label\";s:12:\"Libre Bodoni\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Libre Caslon Display\";a:3:{s:5:\"label\";s:20:\"Libre Caslon Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Libre Caslon Text\";a:3:{s:5:\"label\";s:17:\"Libre Caslon Text\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Libre Franklin\";a:3:{s:5:\"label\";s:14:\"Libre Franklin\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Licorice\";a:3:{s:5:\"label\";s:8:\"Licorice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Life Savers\";a:3:{s:5:\"label\";s:11:\"Life Savers\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Lilita One\";a:3:{s:5:\"label\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Lily Script One\";a:3:{s:5:\"label\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Limelight\";a:3:{s:5:\"label\";s:9:\"Limelight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Linden Hill\";a:3:{s:5:\"label\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Literata\";a:3:{s:5:\"label\";s:8:\"Literata\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Liu Jian Mao Cao\";a:3:{s:5:\"label\";s:16:\"Liu Jian Mao Cao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Livvic\";a:3:{s:5:\"label\";s:6:\"Livvic\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Lobster\";a:3:{s:5:\"label\";s:7:\"Lobster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Lobster Two\";a:3:{s:5:\"label\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Londrina Outline\";a:3:{s:5:\"label\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Shadow\";a:3:{s:5:\"label\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Sketch\";a:3:{s:5:\"label\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Londrina Solid\";a:3:{s:5:\"label\";s:14:\"Londrina Solid\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Long Cang\";a:3:{s:5:\"label\";s:9:\"Long Cang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lora\";a:3:{s:5:\"label\";s:4:\"Lora\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Love Light\";a:3:{s:5:\"label\";s:10:\"Love Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:21:\"Love Ya Like A Sister\";a:3:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Loved by the King\";a:3:{s:5:\"label\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Lovers Quarrel\";a:3:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Luckiest Guy\";a:3:{s:5:\"label\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lusitana\";a:3:{s:5:\"label\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lustria\";a:3:{s:5:\"label\";s:7:\"Lustria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Luxurious Roman\";a:3:{s:5:\"label\";s:15:\"Luxurious Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Luxurious Script\";a:3:{s:5:\"label\";s:16:\"Luxurious Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"M PLUS 1\";a:3:{s:5:\"label\";s:8:\"M PLUS 1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"M PLUS 1 Code\";a:3:{s:5:\"label\";s:13:\"M PLUS 1 Code\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"M PLUS 1p\";a:3:{s:5:\"label\";s:9:\"M PLUS 1p\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"M PLUS 2\";a:3:{s:5:\"label\";s:8:\"M PLUS 2\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Code Latin\";a:3:{s:5:\"label\";s:17:\"M PLUS Code Latin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Rounded 1c\";a:3:{s:5:\"label\";s:17:\"M PLUS Rounded 1c\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Ma Shan Zheng\";a:3:{s:5:\"label\";s:13:\"Ma Shan Zheng\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Macondo\";a:3:{s:5:\"label\";s:7:\"Macondo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Macondo Swash Caps\";a:3:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mada\";a:3:{s:5:\"label\";s:4:\"Mada\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Magra\";a:3:{s:5:\"label\";s:5:\"Magra\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Maiden Orange\";a:3:{s:5:\"label\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Maitree\";a:3:{s:5:\"label\";s:7:\"Maitree\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Major Mono Display\";a:3:{s:5:\"label\";s:18:\"Major Mono Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"Mako\";a:3:{s:5:\"label\";s:4:\"Mako\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mali\";a:3:{s:5:\"label\";s:4:\"Mali\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mallanna\";a:3:{s:5:\"label\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mandali\";a:3:{s:5:\"label\";s:7:\"Mandali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manjari\";a:3:{s:5:\"label\";s:7:\"Manjari\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manrope\";a:3:{s:5:\"label\";s:7:\"Manrope\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Mansalva\";a:3:{s:5:\"label\";s:8:\"Mansalva\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Manuale\";a:3:{s:5:\"label\";s:7:\"Manuale\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marcellus\";a:3:{s:5:\"label\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marcellus SC\";a:3:{s:5:\"label\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marck Script\";a:3:{s:5:\"label\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Margarine\";a:3:{s:5:\"label\";s:9:\"Margarine\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Marhey\";a:3:{s:5:\"label\";s:6:\"Marhey\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Markazi Text\";a:3:{s:5:\"label\";s:12:\"Markazi Text\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marko One\";a:3:{s:5:\"label\";s:9:\"Marko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Marmelad\";a:3:{s:5:\"label\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Martel\";a:3:{s:5:\"label\";s:6:\"Martel\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Martel Sans\";a:3:{s:5:\"label\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Martian Mono\";a:3:{s:5:\"label\";s:12:\"Martian Mono\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:6:\"Marvel\";a:3:{s:5:\"label\";s:6:\"Marvel\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mate\";a:3:{s:5:\"label\";s:4:\"Mate\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Mate SC\";a:3:{s:5:\"label\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Material Icons\";a:3:{s:5:\"label\";s:14:\"Material Icons\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:23:\"Material Icons Outlined\";a:3:{s:5:\"label\";s:23:\"Material Icons Outlined\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:20:\"Material Icons Round\";a:3:{s:5:\"label\";s:20:\"Material Icons Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:20:\"Material Icons Sharp\";a:3:{s:5:\"label\";s:20:\"Material Icons Sharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:23:\"Material Icons Two Tone\";a:3:{s:5:\"label\";s:23:\"Material Icons Two Tone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:25:\"Material Symbols Outlined\";a:3:{s:5:\"label\";s:25:\"Material Symbols Outlined\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:24:\"Material Symbols Rounded\";a:3:{s:5:\"label\";s:24:\"Material Symbols Rounded\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:22:\"Material Symbols Sharp\";a:3:{s:5:\"label\";s:22:\"Material Symbols Sharp\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Maven Pro\";a:3:{s:5:\"label\";s:9:\"Maven Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"McLaren\";a:3:{s:5:\"label\";s:7:\"McLaren\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Mea Culpa\";a:3:{s:5:\"label\";s:9:\"Mea Culpa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Meddon\";a:3:{s:5:\"label\";s:6:\"Meddon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"MedievalSharp\";a:3:{s:5:\"label\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Medula One\";a:3:{s:5:\"label\";s:10:\"Medula One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Meera Inimai\";a:3:{s:5:\"label\";s:12:\"Meera Inimai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Megrim\";a:3:{s:5:\"label\";s:6:\"Megrim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Meie Script\";a:3:{s:5:\"label\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Meow Script\";a:3:{s:5:\"label\";s:11:\"Meow Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Merienda\";a:3:{s:5:\"label\";s:8:\"Merienda\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merriweather\";a:3:{s:5:\"label\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Merriweather Sans\";a:3:{s:5:\"label\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Metal\";a:3:{s:5:\"label\";s:5:\"Metal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metal Mania\";a:3:{s:5:\"label\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Metamorphous\";a:3:{s:5:\"label\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metrophobic\";a:3:{s:5:\"label\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Michroma\";a:3:{s:5:\"label\";s:8:\"Michroma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Milonga\";a:3:{s:5:\"label\";s:7:\"Milonga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Miltonian\";a:3:{s:5:\"label\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Miltonian Tattoo\";a:3:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mina\";a:3:{s:5:\"label\";s:4:\"Mina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mingzat\";a:3:{s:5:\"label\";s:7:\"Mingzat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Miniver\";a:3:{s:5:\"label\";s:7:\"Miniver\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Miriam Libre\";a:3:{s:5:\"label\";s:12:\"Miriam Libre\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Mirza\";a:3:{s:5:\"label\";s:5:\"Mirza\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Miss Fajardose\";a:3:{s:5:\"label\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Mitr\";a:3:{s:5:\"label\";s:4:\"Mitr\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Mochiy Pop One\";a:3:{s:5:\"label\";s:14:\"Mochiy Pop One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Mochiy Pop P One\";a:3:{s:5:\"label\";s:16:\"Mochiy Pop P One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Modak\";a:3:{s:5:\"label\";s:5:\"Modak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Modern Antiqua\";a:3:{s:5:\"label\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Mogra\";a:3:{s:5:\"label\";s:5:\"Mogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Mohave\";a:3:{s:5:\"label\";s:6:\"Mohave\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Moirai One\";a:3:{s:5:\"label\";s:10:\"Moirai One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Molengo\";a:3:{s:5:\"label\";s:7:\"Molengo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Molle\";a:3:{s:5:\"label\";s:5:\"Molle\";s:8:\"variants\";a:1:{i:0;s:6:\"italic\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Monda\";a:3:{s:5:\"label\";s:5:\"Monda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Monofett\";a:3:{s:5:\"label\";s:8:\"Monofett\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Monomaniac One\";a:3:{s:5:\"label\";s:14:\"Monomaniac One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Monoton\";a:3:{s:5:\"label\";s:7:\"Monoton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Monsieur La Doulaise\";a:3:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Montaga\";a:3:{s:5:\"label\";s:7:\"Montaga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Montagu Slab\";a:3:{s:5:\"label\";s:12:\"Montagu Slab\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"MonteCarlo\";a:3:{s:5:\"label\";s:10:\"MonteCarlo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Montez\";a:3:{s:5:\"label\";s:6:\"Montez\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Montserrat\";a:3:{s:5:\"label\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Montserrat Alternates\";a:3:{s:5:\"label\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Montserrat Subrayada\";a:3:{s:5:\"label\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Moo Lah Lah\";a:3:{s:5:\"label\";s:11:\"Moo Lah Lah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Moon Dance\";a:3:{s:5:\"label\";s:10:\"Moon Dance\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Moul\";a:3:{s:5:\"label\";s:4:\"Moul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Moulpali\";a:3:{s:5:\"label\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Mountains of Christmas\";a:3:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mouse Memoirs\";a:3:{s:5:\"label\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Mr Bedfort\";a:3:{s:5:\"label\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mr Dafoe\";a:3:{s:5:\"label\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Mr De Haviland\";a:3:{s:5:\"label\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Mrs Saint Delafield\";a:3:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mrs Sheppards\";a:3:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Ms Madi\";a:3:{s:5:\"label\";s:7:\"Ms Madi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Mukta\";a:3:{s:5:\"label\";s:5:\"Mukta\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Mahee\";a:3:{s:5:\"label\";s:11:\"Mukta Mahee\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Malar\";a:3:{s:5:\"label\";s:11:\"Mukta Malar\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Vaani\";a:3:{s:5:\"label\";s:11:\"Mukta Vaani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Mulish\";a:3:{s:5:\"label\";s:6:\"Mulish\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Murecho\";a:3:{s:5:\"label\";s:7:\"Murecho\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"MuseoModerno\";a:3:{s:5:\"label\";s:12:\"MuseoModerno\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"My Soul\";a:3:{s:5:\"label\";s:7:\"My Soul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Mynerve\";a:3:{s:5:\"label\";s:7:\"Mynerve\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mystery Quest\";a:3:{s:5:\"label\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"NTR\";a:3:{s:5:\"label\";s:3:\"NTR\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Nabla\";a:3:{s:5:\"label\";s:5:\"Nabla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Nanum Brush Script\";a:3:{s:5:\"label\";s:18:\"Nanum Brush Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Nanum Gothic\";a:3:{s:5:\"label\";s:12:\"Nanum Gothic\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Nanum Gothic Coding\";a:3:{s:5:\"label\";s:19:\"Nanum Gothic Coding\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Nanum Myeongjo\";a:3:{s:5:\"label\";s:14:\"Nanum Myeongjo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Nanum Pen Script\";a:3:{s:5:\"label\";s:16:\"Nanum Pen Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Neonderthaw\";a:3:{s:5:\"label\";s:11:\"Neonderthaw\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Nerko One\";a:3:{s:5:\"label\";s:9:\"Nerko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neucha\";a:3:{s:5:\"label\";s:6:\"Neucha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neuton\";a:3:{s:5:\"label\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"New Rocker\";a:3:{s:5:\"label\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"New Tegomin\";a:3:{s:5:\"label\";s:11:\"New Tegomin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"News Cycle\";a:3:{s:5:\"label\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Newsreader\";a:3:{s:5:\"label\";s:10:\"Newsreader\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Niconne\";a:3:{s:5:\"label\";s:7:\"Niconne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Niramit\";a:3:{s:5:\"label\";s:7:\"Niramit\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nixie One\";a:3:{s:5:\"label\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Nobile\";a:3:{s:5:\"label\";s:6:\"Nobile\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nokora\";a:3:{s:5:\"label\";s:6:\"Nokora\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Norican\";a:3:{s:5:\"label\";s:7:\"Norican\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Nosifer\";a:3:{s:5:\"label\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Notable\";a:3:{s:5:\"label\";s:7:\"Notable\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Nothing You Could Do\";a:3:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Noticia Text\";a:3:{s:5:\"label\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Color Emoji\";a:3:{s:5:\"label\";s:16:\"Noto Color Emoji\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Emoji\";a:3:{s:5:\"label\";s:10:\"Noto Emoji\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Kufi Arabic\";a:3:{s:5:\"label\";s:16:\"Noto Kufi Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Music\";a:3:{s:5:\"label\";s:10:\"Noto Music\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Naskh Arabic\";a:3:{s:5:\"label\";s:17:\"Noto Naskh Arabic\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Nastaliq Urdu\";a:3:{s:5:\"label\";s:18:\"Noto Nastaliq Urdu\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Rashi Hebrew\";a:3:{s:5:\"label\";s:17:\"Noto Rashi Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Noto Sans\";a:3:{s:5:\"label\";s:9:\"Noto Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Adlam\";a:3:{s:5:\"label\";s:15:\"Noto Sans Adlam\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"Noto Sans Adlam Unjoined\";a:3:{s:5:\"label\";s:24:\"Noto Sans Adlam Unjoined\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:31:\"Noto Sans Anatolian Hieroglyphs\";a:3:{s:5:\"label\";s:31:\"Noto Sans Anatolian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Arabic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Armenian\";a:3:{s:5:\"label\";s:18:\"Noto Sans Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Avestan\";a:3:{s:5:\"label\";s:17:\"Noto Sans Avestan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Balinese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Balinese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Bamum\";a:3:{s:5:\"label\";s:15:\"Noto Sans Bamum\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Bassa Vah\";a:3:{s:5:\"label\";s:19:\"Noto Sans Bassa Vah\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Batak\";a:3:{s:5:\"label\";s:15:\"Noto Sans Batak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Bengali\";a:3:{s:5:\"label\";s:17:\"Noto Sans Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Bhaiksuki\";a:3:{s:5:\"label\";s:19:\"Noto Sans Bhaiksuki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Brahmi\";a:3:{s:5:\"label\";s:16:\"Noto Sans Brahmi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Buginese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Buginese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Buhid\";a:3:{s:5:\"label\";s:15:\"Noto Sans Buhid\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:29:\"Noto Sans Canadian Aboriginal\";a:3:{s:5:\"label\";s:29:\"Noto Sans Canadian Aboriginal\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Carian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Carian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:28:\"Noto Sans Caucasian Albanian\";a:3:{s:5:\"label\";s:28:\"Noto Sans Caucasian Albanian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Chakma\";a:3:{s:5:\"label\";s:16:\"Noto Sans Chakma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Cham\";a:3:{s:5:\"label\";s:14:\"Noto Sans Cham\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Cherokee\";a:3:{s:5:\"label\";s:18:\"Noto Sans Cherokee\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Chorasmian\";a:3:{s:5:\"label\";s:20:\"Noto Sans Chorasmian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Coptic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Coptic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Cuneiform\";a:3:{s:5:\"label\";s:19:\"Noto Sans Cuneiform\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Cypriot\";a:3:{s:5:\"label\";s:17:\"Noto Sans Cypriot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Deseret\";a:3:{s:5:\"label\";s:17:\"Noto Sans Deseret\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Devanagari\";a:3:{s:5:\"label\";s:20:\"Noto Sans Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Display\";a:3:{s:5:\"label\";s:17:\"Noto Sans Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Duployan\";a:3:{s:5:\"label\";s:18:\"Noto Sans Duployan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:30:\"Noto Sans Egyptian Hieroglyphs\";a:3:{s:5:\"label\";s:30:\"Noto Sans Egyptian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Elbasan\";a:3:{s:5:\"label\";s:17:\"Noto Sans Elbasan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Elymaic\";a:3:{s:5:\"label\";s:17:\"Noto Sans Elymaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ethiopic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ethiopic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Georgian\";a:3:{s:5:\"label\";s:18:\"Noto Sans Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Glagolitic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Glagolitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Gothic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Grantha\";a:3:{s:5:\"label\";s:17:\"Noto Sans Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Gujarati\";a:3:{s:5:\"label\";s:18:\"Noto Sans Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Gunjala Gondi\";a:3:{s:5:\"label\";s:23:\"Noto Sans Gunjala Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Gurmukhi\";a:3:{s:5:\"label\";s:18:\"Noto Sans Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans HK\";a:3:{s:5:\"label\";s:12:\"Noto Sans HK\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Noto Sans Hanifi Rohingya\";a:3:{s:5:\"label\";s:25:\"Noto Sans Hanifi Rohingya\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Hanunoo\";a:3:{s:5:\"label\";s:17:\"Noto Sans Hanunoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Hatran\";a:3:{s:5:\"label\";s:16:\"Noto Sans Hatran\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Hebrew\";a:3:{s:5:\"label\";s:16:\"Noto Sans Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Imperial Aramaic\";a:3:{s:5:\"label\";s:26:\"Noto Sans Imperial Aramaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:29:\"Noto Sans Indic Siyaq Numbers\";a:3:{s:5:\"label\";s:29:\"Noto Sans Indic Siyaq Numbers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:31:\"Noto Sans Inscriptional Pahlavi\";a:3:{s:5:\"label\";s:31:\"Noto Sans Inscriptional Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:32:\"Noto Sans Inscriptional Parthian\";a:3:{s:5:\"label\";s:32:\"Noto Sans Inscriptional Parthian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans JP\";a:3:{s:5:\"label\";s:12:\"Noto Sans JP\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Javanese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Javanese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans KR\";a:3:{s:5:\"label\";s:12:\"Noto Sans KR\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Kaithi\";a:3:{s:5:\"label\";s:16:\"Noto Sans Kaithi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Kannada\";a:3:{s:5:\"label\";s:17:\"Noto Sans Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Kayah Li\";a:3:{s:5:\"label\";s:18:\"Noto Sans Kayah Li\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Kharoshthi\";a:3:{s:5:\"label\";s:20:\"Noto Sans Kharoshthi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Khmer\";a:3:{s:5:\"label\";s:15:\"Noto Sans Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Khojki\";a:3:{s:5:\"label\";s:16:\"Noto Sans Khojki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Khudawadi\";a:3:{s:5:\"label\";s:19:\"Noto Sans Khudawadi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans Lao\";a:3:{s:5:\"label\";s:13:\"Noto Sans Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Lao Looped\";a:3:{s:5:\"label\";s:20:\"Noto Sans Lao Looped\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lepcha\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lepcha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Limbu\";a:3:{s:5:\"label\";s:15:\"Noto Sans Limbu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Linear A\";a:3:{s:5:\"label\";s:18:\"Noto Sans Linear A\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Linear B\";a:3:{s:5:\"label\";s:18:\"Noto Sans Linear B\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Lisu\";a:3:{s:5:\"label\";s:14:\"Noto Sans Lisu\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lycian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lycian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lydian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lydian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Mahajani\";a:3:{s:5:\"label\";s:18:\"Noto Sans Mahajani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Malayalam\";a:3:{s:5:\"label\";s:19:\"Noto Sans Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Mandaic\";a:3:{s:5:\"label\";s:17:\"Noto Sans Mandaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Manichaean\";a:3:{s:5:\"label\";s:20:\"Noto Sans Manichaean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Marchen\";a:3:{s:5:\"label\";s:17:\"Noto Sans Marchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Masaram Gondi\";a:3:{s:5:\"label\";s:23:\"Noto Sans Masaram Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Math\";a:3:{s:5:\"label\";s:14:\"Noto Sans Math\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"Noto Sans Mayan Numerals\";a:3:{s:5:\"label\";s:24:\"Noto Sans Mayan Numerals\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Medefaidrin\";a:3:{s:5:\"label\";s:21:\"Noto Sans Medefaidrin\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Meetei Mayek\";a:3:{s:5:\"label\";s:22:\"Noto Sans Meetei Mayek\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Mende Kikakui\";a:3:{s:5:\"label\";s:23:\"Noto Sans Mende Kikakui\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Meroitic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Meroitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Miao\";a:3:{s:5:\"label\";s:14:\"Noto Sans Miao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Modi\";a:3:{s:5:\"label\";s:14:\"Noto Sans Modi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Mongolian\";a:3:{s:5:\"label\";s:19:\"Noto Sans Mongolian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Mono\";a:3:{s:5:\"label\";s:14:\"Noto Sans Mono\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Noto Sans Mro\";a:3:{s:5:\"label\";s:13:\"Noto Sans Mro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Multani\";a:3:{s:5:\"label\";s:17:\"Noto Sans Multani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Myanmar\";a:3:{s:5:\"label\";s:17:\"Noto Sans Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans NKo\";a:3:{s:5:\"label\";s:13:\"Noto Sans NKo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Nabataean\";a:3:{s:5:\"label\";s:19:\"Noto Sans Nabataean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Nag Mundari\";a:3:{s:5:\"label\";s:21:\"Noto Sans Nag Mundari\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Nandinagari\";a:3:{s:5:\"label\";s:21:\"Noto Sans Nandinagari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans New Tai Lue\";a:3:{s:5:\"label\";s:21:\"Noto Sans New Tai Lue\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Newa\";a:3:{s:5:\"label\";s:14:\"Noto Sans Newa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Nushu\";a:3:{s:5:\"label\";s:15:\"Noto Sans Nushu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Ogham\";a:3:{s:5:\"label\";s:15:\"Noto Sans Ogham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ol Chiki\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ol Chiki\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Old Hungarian\";a:3:{s:5:\"label\";s:23:\"Noto Sans Old Hungarian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Italic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Italic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:27:\"Noto Sans Old North Arabian\";a:3:{s:5:\"label\";s:27:\"Noto Sans Old North Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Permic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Permic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Old Persian\";a:3:{s:5:\"label\";s:21:\"Noto Sans Old Persian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Old Sogdian\";a:3:{s:5:\"label\";s:21:\"Noto Sans Old Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:27:\"Noto Sans Old South Arabian\";a:3:{s:5:\"label\";s:27:\"Noto Sans Old South Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Turkic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Turkic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Oriya\";a:3:{s:5:\"label\";s:15:\"Noto Sans Oriya\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Osage\";a:3:{s:5:\"label\";s:15:\"Noto Sans Osage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Osmanya\";a:3:{s:5:\"label\";s:17:\"Noto Sans Osmanya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Pahawh Hmong\";a:3:{s:5:\"label\";s:22:\"Noto Sans Pahawh Hmong\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Palmyrene\";a:3:{s:5:\"label\";s:19:\"Noto Sans Palmyrene\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Pau Cin Hau\";a:3:{s:5:\"label\";s:21:\"Noto Sans Pau Cin Hau\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Phags Pa\";a:3:{s:5:\"label\";s:18:\"Noto Sans Phags Pa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Phoenician\";a:3:{s:5:\"label\";s:20:\"Noto Sans Phoenician\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Noto Sans Psalter Pahlavi\";a:3:{s:5:\"label\";s:25:\"Noto Sans Psalter Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Rejang\";a:3:{s:5:\"label\";s:16:\"Noto Sans Rejang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Runic\";a:3:{s:5:\"label\";s:15:\"Noto Sans Runic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans SC\";a:3:{s:5:\"label\";s:12:\"Noto Sans SC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Samaritan\";a:3:{s:5:\"label\";s:19:\"Noto Sans Samaritan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Saurashtra\";a:3:{s:5:\"label\";s:20:\"Noto Sans Saurashtra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sharada\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sharada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Shavian\";a:3:{s:5:\"label\";s:17:\"Noto Sans Shavian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Siddham\";a:3:{s:5:\"label\";s:17:\"Noto Sans Siddham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans SignWriting\";a:3:{s:5:\"label\";s:21:\"Noto Sans SignWriting\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sinhala\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sogdian\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Sora Sompeng\";a:3:{s:5:\"label\";s:22:\"Noto Sans Sora Sompeng\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Soyombo\";a:3:{s:5:\"label\";s:17:\"Noto Sans Soyombo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Sundanese\";a:3:{s:5:\"label\";s:19:\"Noto Sans Sundanese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Syloti Nagri\";a:3:{s:5:\"label\";s:22:\"Noto Sans Syloti Nagri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Symbols\";a:3:{s:5:\"label\";s:17:\"Noto Sans Symbols\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Symbols 2\";a:3:{s:5:\"label\";s:19:\"Noto Sans Symbols 2\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Syriac\";a:3:{s:5:\"label\";s:16:\"Noto Sans Syriac\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans TC\";a:3:{s:5:\"label\";s:12:\"Noto Sans TC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Tagalog\";a:3:{s:5:\"label\";s:17:\"Noto Sans Tagalog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tagbanwa\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tagbanwa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Tai Le\";a:3:{s:5:\"label\";s:16:\"Noto Sans Tai Le\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tai Tham\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tai Tham\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tai Viet\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tai Viet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Takri\";a:3:{s:5:\"label\";s:15:\"Noto Sans Takri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Tamil\";a:3:{s:5:\"label\";s:15:\"Noto Sans Tamil\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Tamil Supplement\";a:3:{s:5:\"label\";s:26:\"Noto Sans Tamil Supplement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Tangsa\";a:3:{s:5:\"label\";s:16:\"Noto Sans Tangsa\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Telugu\";a:3:{s:5:\"label\";s:16:\"Noto Sans Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Thaana\";a:3:{s:5:\"label\";s:16:\"Noto Sans Thaana\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Thai\";a:3:{s:5:\"label\";s:14:\"Noto Sans Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Thai Looped\";a:3:{s:5:\"label\";s:21:\"Noto Sans Thai Looped\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tifinagh\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tifinagh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Tirhuta\";a:3:{s:5:\"label\";s:17:\"Noto Sans Tirhuta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ugaritic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ugaritic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans Vai\";a:3:{s:5:\"label\";s:13:\"Noto Sans Vai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Wancho\";a:3:{s:5:\"label\";s:16:\"Noto Sans Wancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Warang Citi\";a:3:{s:5:\"label\";s:21:\"Noto Sans Warang Citi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans Yi\";a:3:{s:5:\"label\";s:12:\"Noto Sans Yi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Zanabazar Square\";a:3:{s:5:\"label\";s:26:\"Noto Sans Zanabazar Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Serif\";a:3:{s:5:\"label\";s:10:\"Noto Serif\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Ahom\";a:3:{s:5:\"label\";s:15:\"Noto Serif Ahom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Armenian\";a:3:{s:5:\"label\";s:19:\"Noto Serif Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Balinese\";a:3:{s:5:\"label\";s:19:\"Noto Serif Balinese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Bengali\";a:3:{s:5:\"label\";s:18:\"Noto Serif Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Noto Serif Devanagari\";a:3:{s:5:\"label\";s:21:\"Noto Serif Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Display\";a:3:{s:5:\"label\";s:18:\"Noto Serif Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Dogra\";a:3:{s:5:\"label\";s:16:\"Noto Serif Dogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Ethiopic\";a:3:{s:5:\"label\";s:19:\"Noto Serif Ethiopic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Georgian\";a:3:{s:5:\"label\";s:19:\"Noto Serif Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Grantha\";a:3:{s:5:\"label\";s:18:\"Noto Serif Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Gujarati\";a:3:{s:5:\"label\";s:19:\"Noto Serif Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Gurmukhi\";a:3:{s:5:\"label\";s:19:\"Noto Serif Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif HK\";a:3:{s:5:\"label\";s:13:\"Noto Serif HK\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Hebrew\";a:3:{s:5:\"label\";s:17:\"Noto Serif Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif JP\";a:3:{s:5:\"label\";s:13:\"Noto Serif JP\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif KR\";a:3:{s:5:\"label\";s:13:\"Noto Serif KR\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Kannada\";a:3:{s:5:\"label\";s:18:\"Noto Serif Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Khmer\";a:3:{s:5:\"label\";s:16:\"Noto Serif Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Khojki\";a:3:{s:5:\"label\";s:17:\"Noto Serif Khojki\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Noto Serif Lao\";a:3:{s:5:\"label\";s:14:\"Noto Serif Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Noto Serif Malayalam\";a:3:{s:5:\"label\";s:20:\"Noto Serif Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Myanmar\";a:3:{s:5:\"label\";s:18:\"Noto Serif Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif NP Hmong\";a:3:{s:5:\"label\";s:19:\"Noto Serif NP Hmong\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Oriya\";a:3:{s:5:\"label\";s:16:\"Noto Serif Oriya\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif SC\";a:3:{s:5:\"label\";s:13:\"Noto Serif SC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Sinhala\";a:3:{s:5:\"label\";s:18:\"Noto Serif Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif TC\";a:3:{s:5:\"label\";s:13:\"Noto Serif TC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Tamil\";a:3:{s:5:\"label\";s:16:\"Noto Serif Tamil\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Tangut\";a:3:{s:5:\"label\";s:17:\"Noto Serif Tangut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Telugu\";a:3:{s:5:\"label\";s:17:\"Noto Serif Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Thai\";a:3:{s:5:\"label\";s:15:\"Noto Serif Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Tibetan\";a:3:{s:5:\"label\";s:18:\"Noto Serif Tibetan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Toto\";a:3:{s:5:\"label\";s:15:\"Noto Serif Toto\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Yezidi\";a:3:{s:5:\"label\";s:17:\"Noto Serif Yezidi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"Noto Traditional Nushu\";a:3:{s:5:\"label\";s:22:\"Noto Traditional Nushu\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Nova Cut\";a:3:{s:5:\"label\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Flat\";a:3:{s:5:\"label\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Mono\";a:3:{s:5:\"label\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Nova Oval\";a:3:{s:5:\"label\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Nova Round\";a:3:{s:5:\"label\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Script\";a:3:{s:5:\"label\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Slim\";a:3:{s:5:\"label\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Square\";a:3:{s:5:\"label\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Numans\";a:3:{s:5:\"label\";s:6:\"Numans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nunito\";a:3:{s:5:\"label\";s:6:\"Nunito\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Nunito Sans\";a:3:{s:5:\"label\";s:11:\"Nunito Sans\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nuosu SIL\";a:3:{s:5:\"label\";s:9:\"Nuosu SIL\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Odibee Sans\";a:3:{s:5:\"label\";s:11:\"Odibee Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Odor Mean Chey\";a:3:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Offside\";a:3:{s:5:\"label\";s:7:\"Offside\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:2:\"Oi\";a:3:{s:5:\"label\";s:2:\"Oi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Old Standard TT\";a:3:{s:5:\"label\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Oldenburg\";a:3:{s:5:\"label\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Ole\";a:3:{s:5:\"label\";s:3:\"Ole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Oleo Script\";a:3:{s:5:\"label\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Oleo Script Swash Caps\";a:3:{s:5:\"label\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Oooh Baby\";a:3:{s:5:\"label\";s:9:\"Oooh Baby\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Open Sans\";a:3:{s:5:\"label\";s:9:\"Open Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oranienbaum\";a:3:{s:5:\"label\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Orbit\";a:3:{s:5:\"label\";s:5:\"Orbit\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Orbitron\";a:3:{s:5:\"label\";s:8:\"Orbitron\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Oregano\";a:3:{s:5:\"label\";s:7:\"Oregano\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Orelega One\";a:3:{s:5:\"label\";s:11:\"Orelega One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Orienta\";a:3:{s:5:\"label\";s:7:\"Orienta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Original Surfer\";a:3:{s:5:\"label\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oswald\";a:3:{s:5:\"label\";s:6:\"Oswald\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Outfit\";a:3:{s:5:\"label\";s:6:\"Outfit\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Over the Rainbow\";a:3:{s:5:\"label\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Overlock\";a:3:{s:5:\"label\";s:8:\"Overlock\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Overlock SC\";a:3:{s:5:\"label\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Overpass\";a:3:{s:5:\"label\";s:8:\"Overpass\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Overpass Mono\";a:3:{s:5:\"label\";s:13:\"Overpass Mono\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:3:\"Ovo\";a:3:{s:5:\"label\";s:3:\"Ovo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Oxanium\";a:3:{s:5:\"label\";s:7:\"Oxanium\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oxygen\";a:3:{s:5:\"label\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oxygen Mono\";a:3:{s:5:\"label\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Mono\";a:3:{s:5:\"label\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Sans\";a:3:{s:5:\"label\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"PT Sans Caption\";a:3:{s:5:\"label\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"PT Sans Narrow\";a:3:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"PT Serif\";a:3:{s:5:\"label\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"PT Serif Caption\";a:3:{s:5:\"label\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pacifico\";a:3:{s:5:\"label\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Padauk\";a:3:{s:5:\"label\";s:6:\"Padauk\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Padyakke Expanded One\";a:3:{s:5:\"label\";s:21:\"Padyakke Expanded One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Palanquin\";a:3:{s:5:\"label\";s:9:\"Palanquin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palanquin Dark\";a:3:{s:5:\"label\";s:14:\"Palanquin Dark\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palette Mosaic\";a:3:{s:5:\"label\";s:14:\"Palette Mosaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Pangolin\";a:3:{s:5:\"label\";s:8:\"Pangolin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Paprika\";a:3:{s:5:\"label\";s:7:\"Paprika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Parisienne\";a:3:{s:5:\"label\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Passero One\";a:3:{s:5:\"label\";s:11:\"Passero One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Passion One\";a:3:{s:5:\"label\";s:11:\"Passion One\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Passions Conflict\";a:3:{s:5:\"label\";s:17:\"Passions Conflict\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Pathway Extreme\";a:3:{s:5:\"label\";s:15:\"Pathway Extreme\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Pathway Gothic One\";a:3:{s:5:\"label\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Patrick Hand\";a:3:{s:5:\"label\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Patrick Hand SC\";a:3:{s:5:\"label\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Pattaya\";a:3:{s:5:\"label\";s:7:\"Pattaya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Patua One\";a:3:{s:5:\"label\";s:9:\"Patua One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Pavanam\";a:3:{s:5:\"label\";s:7:\"Pavanam\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Paytone One\";a:3:{s:5:\"label\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Peddana\";a:3:{s:5:\"label\";s:7:\"Peddana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Peralta\";a:3:{s:5:\"label\";s:7:\"Peralta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Permanent Marker\";a:3:{s:5:\"label\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Petemoss\";a:3:{s:5:\"label\";s:8:\"Petemoss\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Petit Formal Script\";a:3:{s:5:\"label\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Petrona\";a:3:{s:5:\"label\";s:7:\"Petrona\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Philosopher\";a:3:{s:5:\"label\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Phudu\";a:3:{s:5:\"label\";s:5:\"Phudu\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Piazzolla\";a:3:{s:5:\"label\";s:9:\"Piazzolla\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Piedra\";a:3:{s:5:\"label\";s:6:\"Piedra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Pinyon Script\";a:3:{s:5:\"label\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Pirata One\";a:3:{s:5:\"label\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Plaster\";a:3:{s:5:\"label\";s:7:\"Plaster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Play\";a:3:{s:5:\"label\";s:4:\"Play\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Playball\";a:3:{s:5:\"label\";s:8:\"Playball\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Playfair\";a:3:{s:5:\"label\";s:8:\"Playfair\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Playfair Display\";a:3:{s:5:\"label\";s:16:\"Playfair Display\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Playfair Display SC\";a:3:{s:5:\"label\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Plus Jakarta Sans\";a:3:{s:5:\"label\";s:17:\"Plus Jakarta Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Podkova\";a:3:{s:5:\"label\";s:7:\"Podkova\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Poiret One\";a:3:{s:5:\"label\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Poller One\";a:3:{s:5:\"label\";s:10:\"Poller One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Poltawski Nowy\";a:3:{s:5:\"label\";s:14:\"Poltawski Nowy\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Poly\";a:3:{s:5:\"label\";s:4:\"Poly\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pompiere\";a:3:{s:5:\"label\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Pontano Sans\";a:3:{s:5:\"label\";s:12:\"Pontano Sans\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Poor Story\";a:3:{s:5:\"label\";s:10:\"Poor Story\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Poppins\";a:3:{s:5:\"label\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Sans\";a:3:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Slab\";a:3:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Potta One\";a:3:{s:5:\"label\";s:9:\"Potta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Pragati Narrow\";a:3:{s:5:\"label\";s:14:\"Pragati Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Praise\";a:3:{s:5:\"label\";s:6:\"Praise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Prata\";a:3:{s:5:\"label\";s:5:\"Prata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Preahvihear\";a:3:{s:5:\"label\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Press Start 2P\";a:3:{s:5:\"label\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Pridi\";a:3:{s:5:\"label\";s:5:\"Pridi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Princess Sofia\";a:3:{s:5:\"label\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Prociono\";a:3:{s:5:\"label\";s:8:\"Prociono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Prompt\";a:3:{s:5:\"label\";s:6:\"Prompt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Prosto One\";a:3:{s:5:\"label\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Proza Libre\";a:3:{s:5:\"label\";s:11:\"Proza Libre\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Public Sans\";a:3:{s:5:\"label\";s:11:\"Public Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Puppies Play\";a:3:{s:5:\"label\";s:12:\"Puppies Play\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Puritan\";a:3:{s:5:\"label\";s:7:\"Puritan\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Purple Purse\";a:3:{s:5:\"label\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Qahiri\";a:3:{s:5:\"label\";s:6:\"Qahiri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Quando\";a:3:{s:5:\"label\";s:6:\"Quando\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Quantico\";a:3:{s:5:\"label\";s:8:\"Quantico\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Quattrocento\";a:3:{s:5:\"label\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Quattrocento Sans\";a:3:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Questrial\";a:3:{s:5:\"label\";s:9:\"Questrial\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Quicksand\";a:3:{s:5:\"label\";s:9:\"Quicksand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Quintessential\";a:3:{s:5:\"label\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Qwigley\";a:3:{s:5:\"label\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Qwitcher Grypen\";a:3:{s:5:\"label\";s:15:\"Qwitcher Grypen\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Racing Sans One\";a:3:{s:5:\"label\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Radio Canada\";a:3:{s:5:\"label\";s:12:\"Radio Canada\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Radley\";a:3:{s:5:\"label\";s:6:\"Radley\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Rajdhani\";a:3:{s:5:\"label\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rakkas\";a:3:{s:5:\"label\";s:6:\"Rakkas\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Raleway\";a:3:{s:5:\"label\";s:7:\"Raleway\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Raleway Dots\";a:3:{s:5:\"label\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Ramabhadra\";a:3:{s:5:\"label\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Ramaraja\";a:3:{s:5:\"label\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Rambla\";a:3:{s:5:\"label\";s:6:\"Rambla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Rammetto One\";a:3:{s:5:\"label\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Rampart One\";a:3:{s:5:\"label\";s:11:\"Rampart One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Ranchers\";a:3:{s:5:\"label\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Rancho\";a:3:{s:5:\"label\";s:6:\"Rancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ranga\";a:3:{s:5:\"label\";s:5:\"Ranga\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Rasa\";a:3:{s:5:\"label\";s:4:\"Rasa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rationale\";a:3:{s:5:\"label\";s:9:\"Rationale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Ravi Prakash\";a:3:{s:5:\"label\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Readex Pro\";a:3:{s:5:\"label\";s:10:\"Readex Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Recursive\";a:3:{s:5:\"label\";s:9:\"Recursive\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Red Hat Display\";a:3:{s:5:\"label\";s:15:\"Red Hat Display\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Red Hat Mono\";a:3:{s:5:\"label\";s:12:\"Red Hat Mono\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Red Hat Text\";a:3:{s:5:\"label\";s:12:\"Red Hat Text\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Red Rose\";a:3:{s:5:\"label\";s:8:\"Red Rose\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Redacted\";a:3:{s:5:\"label\";s:8:\"Redacted\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Redacted Script\";a:3:{s:5:\"label\";s:15:\"Redacted Script\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Redressed\";a:3:{s:5:\"label\";s:9:\"Redressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Reem Kufi\";a:3:{s:5:\"label\";s:9:\"Reem Kufi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reem Kufi Fun\";a:3:{s:5:\"label\";s:13:\"Reem Kufi Fun\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reem Kufi Ink\";a:3:{s:5:\"label\";s:13:\"Reem Kufi Ink\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reenie Beanie\";a:3:{s:5:\"label\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Reggae One\";a:3:{s:5:\"label\";s:10:\"Reggae One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Revalia\";a:3:{s:5:\"label\";s:7:\"Revalia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rhodium Libre\";a:3:{s:5:\"label\";s:13:\"Rhodium Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Ribeye\";a:3:{s:5:\"label\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Ribeye Marrow\";a:3:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Righteous\";a:3:{s:5:\"label\";s:9:\"Righteous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Risque\";a:3:{s:5:\"label\";s:6:\"Risque\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Road Rage\";a:3:{s:5:\"label\";s:9:\"Road Rage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Roboto\";a:3:{s:5:\"label\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Roboto Condensed\";a:3:{s:5:\"label\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Flex\";a:3:{s:5:\"label\";s:11:\"Roboto Flex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Mono\";a:3:{s:5:\"label\";s:11:\"Roboto Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Roboto Serif\";a:3:{s:5:\"label\";s:12:\"Roboto Serif\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Roboto Slab\";a:3:{s:5:\"label\";s:11:\"Roboto Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rochester\";a:3:{s:5:\"label\";s:9:\"Rochester\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rock 3D\";a:3:{s:5:\"label\";s:7:\"Rock 3D\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rock Salt\";a:3:{s:5:\"label\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"RocknRoll One\";a:3:{s:5:\"label\";s:13:\"RocknRoll One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rokkitt\";a:3:{s:5:\"label\";s:7:\"Rokkitt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Romanesco\";a:3:{s:5:\"label\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Ropa Sans\";a:3:{s:5:\"label\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rosario\";a:3:{s:5:\"label\";s:7:\"Rosario\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Rosarivo\";a:3:{s:5:\"label\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Rouge Script\";a:3:{s:5:\"label\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rowdies\";a:3:{s:5:\"label\";s:7:\"Rowdies\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rozha One\";a:3:{s:5:\"label\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Rubik\";a:3:{s:5:\"label\";s:5:\"Rubik\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Rubik 80s Fade\";a:3:{s:5:\"label\";s:14:\"Rubik 80s Fade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rubik Beastly\";a:3:{s:5:\"label\";s:13:\"Rubik Beastly\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rubik Bubbles\";a:3:{s:5:\"label\";s:13:\"Rubik Bubbles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Rubik Burned\";a:3:{s:5:\"label\";s:12:\"Rubik Burned\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Rubik Dirt\";a:3:{s:5:\"label\";s:10:\"Rubik Dirt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Rubik Distressed\";a:3:{s:5:\"label\";s:16:\"Rubik Distressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Rubik Gemstones\";a:3:{s:5:\"label\";s:15:\"Rubik Gemstones\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Rubik Glitch\";a:3:{s:5:\"label\";s:12:\"Rubik Glitch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rubik Iso\";a:3:{s:5:\"label\";s:9:\"Rubik Iso\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Rubik Marker Hatch\";a:3:{s:5:\"label\";s:18:\"Rubik Marker Hatch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Rubik Maze\";a:3:{s:5:\"label\";s:10:\"Rubik Maze\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rubik Microbe\";a:3:{s:5:\"label\";s:13:\"Rubik Microbe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Rubik Mono One\";a:3:{s:5:\"label\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Rubik Moonrocks\";a:3:{s:5:\"label\";s:15:\"Rubik Moonrocks\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Rubik Pixels\";a:3:{s:5:\"label\";s:12:\"Rubik Pixels\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rubik Puddles\";a:3:{s:5:\"label\";s:13:\"Rubik Puddles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Rubik Spray Paint\";a:3:{s:5:\"label\";s:17:\"Rubik Spray Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Rubik Storm\";a:3:{s:5:\"label\";s:11:\"Rubik Storm\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Rubik Vinyl\";a:3:{s:5:\"label\";s:11:\"Rubik Vinyl\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Rubik Wet Paint\";a:3:{s:5:\"label\";s:15:\"Rubik Wet Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Ruda\";a:3:{s:5:\"label\";s:4:\"Ruda\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rufina\";a:3:{s:5:\"label\";s:6:\"Rufina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Ruge Boogie\";a:3:{s:5:\"label\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ruluko\";a:3:{s:5:\"label\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Rum Raisin\";a:3:{s:5:\"label\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Ruslan Display\";a:3:{s:5:\"label\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Russo One\";a:3:{s:5:\"label\";s:9:\"Russo One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ruthie\";a:3:{s:5:\"label\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Rye\";a:3:{s:5:\"label\";s:3:\"Rye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"STIX Two Text\";a:3:{s:5:\"label\";s:13:\"STIX Two Text\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sacramento\";a:3:{s:5:\"label\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Sahitya\";a:3:{s:5:\"label\";s:7:\"Sahitya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sail\";a:3:{s:5:\"label\";s:4:\"Sail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Saira\";a:3:{s:5:\"label\";s:5:\"Saira\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Saira Condensed\";a:3:{s:5:\"label\";s:15:\"Saira Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Saira Extra Condensed\";a:3:{s:5:\"label\";s:21:\"Saira Extra Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Saira Semi Condensed\";a:3:{s:5:\"label\";s:20:\"Saira Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Saira Stencil One\";a:3:{s:5:\"label\";s:17:\"Saira Stencil One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Salsa\";a:3:{s:5:\"label\";s:5:\"Salsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sanchez\";a:3:{s:5:\"label\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sancreek\";a:3:{s:5:\"label\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sansita\";a:3:{s:5:\"label\";s:7:\"Sansita\";s:8:\"variants\";a:8:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"800\";i:3;s:9:\"800italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sansita Swashed\";a:3:{s:5:\"label\";s:15:\"Sansita Swashed\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sarabun\";a:3:{s:5:\"label\";s:7:\"Sarabun\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarala\";a:3:{s:5:\"label\";s:6:\"Sarala\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarina\";a:3:{s:5:\"label\";s:6:\"Sarina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Sarpanch\";a:3:{s:5:\"label\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Sassy Frass\";a:3:{s:5:\"label\";s:11:\"Sassy Frass\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Satisfy\";a:3:{s:5:\"label\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Sawarabi Gothic\";a:3:{s:5:\"label\";s:15:\"Sawarabi Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sawarabi Mincho\";a:3:{s:5:\"label\";s:15:\"Sawarabi Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Scada\";a:3:{s:5:\"label\";s:5:\"Scada\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Scheherazade New\";a:3:{s:5:\"label\";s:16:\"Scheherazade New\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Schibsted Grotesk\";a:3:{s:5:\"label\";s:17:\"Schibsted Grotesk\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Schoolbell\";a:3:{s:5:\"label\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Scope One\";a:3:{s:5:\"label\";s:9:\"Scope One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Seaweed Script\";a:3:{s:5:\"label\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Secular One\";a:3:{s:5:\"label\";s:11:\"Secular One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Sedgwick Ave\";a:3:{s:5:\"label\";s:12:\"Sedgwick Ave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sedgwick Ave Display\";a:3:{s:5:\"label\";s:20:\"Sedgwick Ave Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Sen\";a:3:{s:5:\"label\";s:3:\"Sen\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Send Flowers\";a:3:{s:5:\"label\";s:12:\"Send Flowers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Sevillana\";a:3:{s:5:\"label\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Seymour One\";a:3:{s:5:\"label\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Shadows Into Light\";a:3:{s:5:\"label\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Shadows Into Light Two\";a:3:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Shalimar\";a:3:{s:5:\"label\";s:8:\"Shalimar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Shantell Sans\";a:3:{s:5:\"label\";s:13:\"Shantell Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Shanti\";a:3:{s:5:\"label\";s:6:\"Shanti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Share\";a:3:{s:5:\"label\";s:5:\"Share\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Share Tech\";a:3:{s:5:\"label\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Share Tech Mono\";a:3:{s:5:\"label\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:16:\"Shippori Antique\";a:3:{s:5:\"label\";s:16:\"Shippori Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Shippori Antique B1\";a:3:{s:5:\"label\";s:19:\"Shippori Antique B1\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Shippori Mincho\";a:3:{s:5:\"label\";s:15:\"Shippori Mincho\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Shippori Mincho B1\";a:3:{s:5:\"label\";s:18:\"Shippori Mincho B1\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Shizuru\";a:3:{s:5:\"label\";s:7:\"Shizuru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Shojumaru\";a:3:{s:5:\"label\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Short Stack\";a:3:{s:5:\"label\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Shrikhand\";a:3:{s:5:\"label\";s:9:\"Shrikhand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Siemreap\";a:3:{s:5:\"label\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Sigmar\";a:3:{s:5:\"label\";s:6:\"Sigmar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sigmar One\";a:3:{s:5:\"label\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Signika\";a:3:{s:5:\"label\";s:7:\"Signika\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Signika Negative\";a:3:{s:5:\"label\";s:16:\"Signika Negative\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Silkscreen\";a:3:{s:5:\"label\";s:10:\"Silkscreen\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Simonetta\";a:3:{s:5:\"label\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{i:0;s:3:\"900\";i:1;s:9:\"900italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Single Day\";a:3:{s:5:\"label\";s:10:\"Single Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sintony\";a:3:{s:5:\"label\";s:7:\"Sintony\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Sirin Stencil\";a:3:{s:5:\"label\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Six Caps\";a:3:{s:5:\"label\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Skranji\";a:3:{s:5:\"label\";s:7:\"Skranji\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Slabo 13px\";a:3:{s:5:\"label\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Slabo 27px\";a:3:{s:5:\"label\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Slackey\";a:3:{s:5:\"label\";s:7:\"Slackey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Slackside One\";a:3:{s:5:\"label\";s:13:\"Slackside One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Smokum\";a:3:{s:5:\"label\";s:6:\"Smokum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smooch\";a:3:{s:5:\"label\";s:6:\"Smooch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Smooch Sans\";a:3:{s:5:\"label\";s:11:\"Smooch Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Smythe\";a:3:{s:5:\"label\";s:6:\"Smythe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sniglet\";a:3:{s:5:\"label\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Snippet\";a:3:{s:5:\"label\";s:7:\"Snippet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Snowburst One\";a:3:{s:5:\"label\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sofadi One\";a:3:{s:5:\"label\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Sofia\";a:3:{s:5:\"label\";s:5:\"Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Sofia Sans\";a:3:{s:5:\"label\";s:10:\"Sofia Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Sofia Sans Condensed\";a:3:{s:5:\"label\";s:20:\"Sofia Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Sofia Sans Extra Condensed\";a:3:{s:5:\"label\";s:26:\"Sofia Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Sofia Sans Semi Condensed\";a:3:{s:5:\"label\";s:25:\"Sofia Sans Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Solitreo\";a:3:{s:5:\"label\";s:8:\"Solitreo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Solway\";a:3:{s:5:\"label\";s:6:\"Solway\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Song Myung\";a:3:{s:5:\"label\";s:10:\"Song Myung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sono\";a:3:{s:5:\"label\";s:4:\"Sono\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Sonsie One\";a:3:{s:5:\"label\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sora\";a:3:{s:5:\"label\";s:4:\"Sora\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Sorts Mill Goudy\";a:3:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Source Code Pro\";a:3:{s:5:\"label\";s:15:\"Source Code Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Source Sans 3\";a:3:{s:5:\"label\";s:13:\"Source Sans 3\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Source Serif 4\";a:3:{s:5:\"label\";s:14:\"Source Serif 4\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Space Grotesk\";a:3:{s:5:\"label\";s:13:\"Space Grotesk\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Space Mono\";a:3:{s:5:\"label\";s:10:\"Space Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Special Elite\";a:3:{s:5:\"label\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Spectral\";a:3:{s:5:\"label\";s:8:\"Spectral\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Spectral SC\";a:3:{s:5:\"label\";s:11:\"Spectral SC\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Spicy Rice\";a:3:{s:5:\"label\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Spinnaker\";a:3:{s:5:\"label\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Spirax\";a:3:{s:5:\"label\";s:6:\"Spirax\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Splash\";a:3:{s:5:\"label\";s:6:\"Splash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Spline Sans\";a:3:{s:5:\"label\";s:11:\"Spline Sans\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Spline Sans Mono\";a:3:{s:5:\"label\";s:16:\"Spline Sans Mono\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Squada One\";a:3:{s:5:\"label\";s:10:\"Squada One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Square Peg\";a:3:{s:5:\"label\";s:10:\"Square Peg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sree Krushnadevaraya\";a:3:{s:5:\"label\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sriracha\";a:3:{s:5:\"label\";s:8:\"Sriracha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Srisakdi\";a:3:{s:5:\"label\";s:8:\"Srisakdi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Staatliches\";a:3:{s:5:\"label\";s:11:\"Staatliches\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Stalemate\";a:3:{s:5:\"label\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Stalinist One\";a:3:{s:5:\"label\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Stardos Stencil\";a:3:{s:5:\"label\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stick\";a:3:{s:5:\"label\";s:5:\"Stick\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Stick No Bills\";a:3:{s:5:\"label\";s:14:\"Stick No Bills\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Stint Ultra Condensed\";a:3:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Stint Ultra Expanded\";a:3:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stoke\";a:3:{s:5:\"label\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Strait\";a:3:{s:5:\"label\";s:6:\"Strait\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Style Script\";a:3:{s:5:\"label\";s:12:\"Style Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Stylish\";a:3:{s:5:\"label\";s:7:\"Stylish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Sue Ellen Francisco\";a:3:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Suez One\";a:3:{s:5:\"label\";s:8:\"Suez One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Sulphur Point\";a:3:{s:5:\"label\";s:13:\"Sulphur Point\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sumana\";a:3:{s:5:\"label\";s:6:\"Sumana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Sunflower\";a:3:{s:5:\"label\";s:9:\"Sunflower\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sunshiney\";a:3:{s:5:\"label\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Supermercado One\";a:3:{s:5:\"label\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sura\";a:3:{s:5:\"label\";s:4:\"Sura\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Suranna\";a:3:{s:5:\"label\";s:7:\"Suranna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Suravaram\";a:3:{s:5:\"label\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Suwannaphum\";a:3:{s:5:\"label\";s:11:\"Suwannaphum\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Swanky and Moo Moo\";a:3:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Syncopate\";a:3:{s:5:\"label\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Syne\";a:3:{s:5:\"label\";s:4:\"Syne\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Syne Mono\";a:3:{s:5:\"label\";s:9:\"Syne Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Syne Tactile\";a:3:{s:5:\"label\";s:12:\"Syne Tactile\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Tai Heritage Pro\";a:3:{s:5:\"label\";s:16:\"Tai Heritage Pro\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tajawal\";a:3:{s:5:\"label\";s:7:\"Tajawal\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Tangerine\";a:3:{s:5:\"label\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Tapestry\";a:3:{s:5:\"label\";s:8:\"Tapestry\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Taprom\";a:3:{s:5:\"label\";s:6:\"Taprom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Tauri\";a:3:{s:5:\"label\";s:5:\"Tauri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Taviraj\";a:3:{s:5:\"label\";s:7:\"Taviraj\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Teko\";a:3:{s:5:\"label\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Telex\";a:3:{s:5:\"label\";s:5:\"Telex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Tenali Ramakrishna\";a:3:{s:5:\"label\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tenor Sans\";a:3:{s:5:\"label\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Text Me One\";a:3:{s:5:\"label\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Texturina\";a:3:{s:5:\"label\";s:9:\"Texturina\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Thasadith\";a:3:{s:5:\"label\";s:9:\"Thasadith\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"The Girl Next Door\";a:3:{s:5:\"label\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"The Nautigal\";a:3:{s:5:\"label\";s:12:\"The Nautigal\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Tienne\";a:3:{s:5:\"label\";s:6:\"Tienne\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tillana\";a:3:{s:5:\"label\";s:7:\"Tillana\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Tilt Neon\";a:3:{s:5:\"label\";s:9:\"Tilt Neon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Tilt Prism\";a:3:{s:5:\"label\";s:10:\"Tilt Prism\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Tilt Warp\";a:3:{s:5:\"label\";s:9:\"Tilt Warp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Timmana\";a:3:{s:5:\"label\";s:7:\"Timmana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Tinos\";a:3:{s:5:\"label\";s:5:\"Tinos\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Tiro Bangla\";a:3:{s:5:\"label\";s:11:\"Tiro Bangla\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Tiro Devanagari Hindi\";a:3:{s:5:\"label\";s:21:\"Tiro Devanagari Hindi\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Tiro Devanagari Marathi\";a:3:{s:5:\"label\";s:23:\"Tiro Devanagari Marathi\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:24:\"Tiro Devanagari Sanskrit\";a:3:{s:5:\"label\";s:24:\"Tiro Devanagari Sanskrit\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Tiro Gurmukhi\";a:3:{s:5:\"label\";s:13:\"Tiro Gurmukhi\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Tiro Kannada\";a:3:{s:5:\"label\";s:12:\"Tiro Kannada\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Tiro Tamil\";a:3:{s:5:\"label\";s:10:\"Tiro Tamil\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Tiro Telugu\";a:3:{s:5:\"label\";s:11:\"Tiro Telugu\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Titan One\";a:3:{s:5:\"label\";s:9:\"Titan One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Titillium Web\";a:3:{s:5:\"label\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:6:\"italic\";i:10;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Tomorrow\";a:3:{s:5:\"label\";s:8:\"Tomorrow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Tourney\";a:3:{s:5:\"label\";s:7:\"Tourney\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Trade Winds\";a:3:{s:5:\"label\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Train One\";a:3:{s:5:\"label\";s:9:\"Train One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trirong\";a:3:{s:5:\"label\";s:7:\"Trirong\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Trispace\";a:3:{s:5:\"label\";s:8:\"Trispace\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trocchi\";a:3:{s:5:\"label\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trochut\";a:3:{s:5:\"label\";s:7:\"Trochut\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Truculenta\";a:3:{s:5:\"label\";s:10:\"Truculenta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trykker\";a:3:{s:5:\"label\";s:7:\"Trykker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Tsukimi Rounded\";a:3:{s:5:\"label\";s:15:\"Tsukimi Rounded\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tulpen One\";a:3:{s:5:\"label\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Turret Road\";a:3:{s:5:\"label\";s:11:\"Turret Road\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Twinkle Star\";a:3:{s:5:\"label\";s:12:\"Twinkle Star\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ubuntu\";a:3:{s:5:\"label\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Ubuntu Condensed\";a:3:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Ubuntu Mono\";a:3:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Uchen\";a:3:{s:5:\"label\";s:5:\"Uchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Ultra\";a:3:{s:5:\"label\";s:5:\"Ultra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Unbounded\";a:3:{s:5:\"label\";s:9:\"Unbounded\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Uncial Antiqua\";a:3:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Underdog\";a:3:{s:5:\"label\";s:8:\"Underdog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Unica One\";a:3:{s:5:\"label\";s:9:\"Unica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"UnifrakturCook\";a:3:{s:5:\"label\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:0;s:3:\"700\";}s:8:\"category\";s:7:\"display\";}s:18:\"UnifrakturMaguntia\";a:3:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Unkempt\";a:3:{s:5:\"label\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Unlock\";a:3:{s:5:\"label\";s:6:\"Unlock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Unna\";a:3:{s:5:\"label\";s:4:\"Unna\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Updock\";a:3:{s:5:\"label\";s:6:\"Updock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Urbanist\";a:3:{s:5:\"label\";s:8:\"Urbanist\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"VT323\";a:3:{s:5:\"label\";s:5:\"VT323\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Vampiro One\";a:3:{s:5:\"label\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Varela\";a:3:{s:5:\"label\";s:6:\"Varela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Varela Round\";a:3:{s:5:\"label\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Varta\";a:3:{s:5:\"label\";s:5:\"Varta\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Vast Shadow\";a:3:{s:5:\"label\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Vazirmatn\";a:3:{s:5:\"label\";s:9:\"Vazirmatn\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Vesper Libre\";a:3:{s:5:\"label\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Viaoda Libre\";a:3:{s:5:\"label\";s:12:\"Viaoda Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibes\";a:3:{s:5:\"label\";s:5:\"Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibur\";a:3:{s:5:\"label\";s:5:\"Vibur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Vidaloka\";a:3:{s:5:\"label\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Viga\";a:3:{s:5:\"label\";s:4:\"Viga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Vina Sans\";a:3:{s:5:\"label\";s:9:\"Vina Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Voces\";a:3:{s:5:\"label\";s:5:\"Voces\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Volkhov\";a:3:{s:5:\"label\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Vollkorn\";a:3:{s:5:\"label\";s:8:\"Vollkorn\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Vollkorn SC\";a:3:{s:5:\"label\";s:11:\"Vollkorn SC\";s:8:\"variants\";a:4:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Voltaire\";a:3:{s:5:\"label\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Vujahday Script\";a:3:{s:5:\"label\";s:15:\"Vujahday Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Waiting for the Sunrise\";a:3:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wallpoet\";a:3:{s:5:\"label\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Walter Turncoat\";a:3:{s:5:\"label\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Warnes\";a:3:{s:5:\"label\";s:6:\"Warnes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Water Brush\";a:3:{s:5:\"label\";s:11:\"Water Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Waterfall\";a:3:{s:5:\"label\";s:9:\"Waterfall\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Wellfleet\";a:3:{s:5:\"label\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wendy One\";a:3:{s:5:\"label\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Whisper\";a:3:{s:5:\"label\";s:7:\"Whisper\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"WindSong\";a:3:{s:5:\"label\";s:8:\"WindSong\";s:8:\"variants\";a:2:{i:0;s:3:\"500\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wire One\";a:3:{s:5:\"label\";s:8:\"Wire One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Wix Madefor Display\";a:3:{s:5:\"label\";s:19:\"Wix Madefor Display\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Wix Madefor Text\";a:3:{s:5:\"label\";s:16:\"Wix Madefor Text\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Work Sans\";a:3:{s:5:\"label\";s:9:\"Work Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Xanh Mono\";a:3:{s:5:\"label\";s:9:\"Xanh Mono\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Yaldevi\";a:3:{s:5:\"label\";s:7:\"Yaldevi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Yanone Kaffeesatz\";a:3:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Yantramanav\";a:3:{s:5:\"label\";s:11:\"Yantramanav\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yatra One\";a:3:{s:5:\"label\";s:9:\"Yatra One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yellowtail\";a:3:{s:5:\"label\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Yeon Sung\";a:3:{s:5:\"label\";s:9:\"Yeon Sung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yeseva One\";a:3:{s:5:\"label\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yesteryear\";a:3:{s:5:\"label\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Yomogi\";a:3:{s:5:\"label\";s:6:\"Yomogi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Yrsa\";a:3:{s:5:\"label\";s:4:\"Yrsa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Ysabeau\";a:3:{s:5:\"label\";s:7:\"Ysabeau\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yuji Boku\";a:3:{s:5:\"label\";s:9:\"Yuji Boku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Yuji Hentaigana Akari\";a:3:{s:5:\"label\";s:21:\"Yuji Hentaigana Akari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Yuji Hentaigana Akebono\";a:3:{s:5:\"label\";s:23:\"Yuji Hentaigana Akebono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Yuji Mai\";a:3:{s:5:\"label\";s:8:\"Yuji Mai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Yuji Syuku\";a:3:{s:5:\"label\";s:10:\"Yuji Syuku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Yusei Magic\";a:3:{s:5:\"label\";s:11:\"Yusei Magic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"ZCOOL KuaiLe\";a:3:{s:5:\"label\";s:12:\"ZCOOL KuaiLe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"ZCOOL QingKe HuangYou\";a:3:{s:5:\"label\";s:21:\"ZCOOL QingKe HuangYou\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"ZCOOL XiaoWei\";a:3:{s:5:\"label\";s:13:\"ZCOOL XiaoWei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Zen Antique\";a:3:{s:5:\"label\";s:11:\"Zen Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Zen Antique Soft\";a:3:{s:5:\"label\";s:16:\"Zen Antique Soft\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Zen Dots\";a:3:{s:5:\"label\";s:8:\"Zen Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:23:\"Zen Kaku Gothic Antique\";a:3:{s:5:\"label\";s:23:\"Zen Kaku Gothic Antique\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Zen Kaku Gothic New\";a:3:{s:5:\"label\";s:19:\"Zen Kaku Gothic New\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Zen Kurenaido\";a:3:{s:5:\"label\";s:13:\"Zen Kurenaido\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Zen Loop\";a:3:{s:5:\"label\";s:8:\"Zen Loop\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Zen Maru Gothic\";a:3:{s:5:\"label\";s:15:\"Zen Maru Gothic\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Zen Old Mincho\";a:3:{s:5:\"label\";s:14:\"Zen Old Mincho\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Zen Tokyo Zoo\";a:3:{s:5:\"label\";s:13:\"Zen Tokyo Zoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Zeyada\";a:3:{s:5:\"label\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Zhi Mang Xing\";a:3:{s:5:\"label\";s:13:\"Zhi Mang Xing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Zilla Slab\";a:3:{s:5:\"label\";s:10:\"Zilla Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Zilla Slab Highlight\";a:3:{s:5:\"label\";s:20:\"Zilla Slab Highlight\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}}','no'),(300347,'_transient_timeout_wp_rocket_pricing','1704418084','no'),(300348,'_transient_wp_rocket_pricing','O:8:\"stdClass\":3:{s:8:\"licenses\";O:8:\"stdClass\":3:{s:6:\"single\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":3:{s:7:\"regular\";i:59;s:4:\"sale\";d:41.2999999999999971578290569595992565155029296875;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:39.2000000000000028421709430404007434844970703125;s:14:\"is_grandmother\";i:49;s:15:\"not_grandfather\";i:59;s:10:\"is_expired\";i:59;}}s:8:\"websites\";i:1;}s:4:\"plus\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":4:{s:7:\"regular\";i:119;s:4:\"sale\";d:83.30000000000001136868377216160297393798828125;s:11:\"from_single\";O:8:\"stdClass\":2:{s:7:\"regular\";i:60;s:4:\"sale\";i:42;}s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:79.2000000000000028421709430404007434844970703125;s:14:\"is_grandmother\";i:99;s:15:\"not_grandfather\";i:119;s:10:\"is_expired\";i:119;}}s:8:\"websites\";i:3;}s:8:\"infinite\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":5:{s:7:\"regular\";i:299;s:4:\"sale\";d:209.30000000000001136868377216160297393798828125;s:11:\"from_single\";O:8:\"stdClass\":2:{s:7:\"regular\";i:240;s:4:\"sale\";i:168;}s:9:\"from_plus\";O:8:\"stdClass\":2:{s:7:\"regular\";i:180;s:4:\"sale\";i:126;}s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:199.19999999999998863131622783839702606201171875;s:14:\"is_grandmother\";i:249;s:15:\"not_grandfather\";i:299;s:10:\"is_expired\";i:299;}}s:8:\"websites\";s:9:\"unlimited\";}}s:8:\"renewals\";O:8:\"stdClass\":4:{s:10:\"extra_days\";i:15;s:16:\"grandfather_date\";i:1640995200;s:16:\"grandmother_date\";i:1672389000;s:16:\"discount_percent\";O:8:\"stdClass\":3:{s:14:\"is_grandfather\";i:20;s:15:\"not_grandfather\";i:0;s:10:\"is_expired\";i:0;}}s:5:\"promo\";O:8:\"stdClass\":4:{s:4:\"name\";s:12:\"Black Friday\";s:16:\"discount_percent\";i:30;s:10:\"start_date\";i:1700438400;s:8:\"end_date\";i:1701302399;}}','no'),(300354,'_transient_timeout_wp_rocket_customer_data','1704468233','no'),(300355,'_transient_wp_rocket_customer_data','O:8:\"stdClass\":3:{s:15:\"licence_account\";s:2:\"-1\";s:18:\"licence_expiration\";i:1893456000;s:19:\"has_one-com_account\";b:0;}','no'),(300368,'_transient_timeout__woocommerce_helper_subscriptions','1704386387','no'),(300369,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(300370,'_site_transient_timeout_theme_roots','1704387287','no'),(300371,'_site_transient_theme_roots','a:2:{s:14:\"flatsome-child\";s:7:\"/themes\";s:8:\"flatsome\";s:7:\"/themes\";}','no'),(300373,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1704385491;s:8:\"response\";a:1:{s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:41:\"w.org/plugins/woocommerce-paypal-payments\";s:4:\"slug\";s:27:\"woocommerce-paypal-payments\";s:6:\"plugin\";s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";s:11:\"new_version\";s:5:\"2.4.3\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/woocommerce-paypal-payments/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/woocommerce-paypal-payments/assets/icon-256x256.png?rev=2598902\";s:2:\"1x\";s:80:\"https://ps.w.org/woocommerce-paypal-payments/assets/icon-128x128.png?rev=2598902\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/woocommerce-paypal-payments/assets/banner-1544x500.png?rev=2598902\";s:2:\"1x\";s:82:\"https://ps.w.org/woocommerce-paypal-payments/assets/banner-772x250.png?rev=2598902\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:28:{s:84:\"wc-abandoned-carts-by-small-fish-analytics/class-sfa-woocommerce-abandoned-carts.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:56:\"w.org/plugins/wc-abandoned-carts-by-small-fish-analytics\";s:4:\"slug\";s:42:\"wc-abandoned-carts-by-small-fish-analytics\";s:6:\"plugin\";s:84:\"wc-abandoned-carts-by-small-fish-analytics/class-sfa-woocommerce-abandoned-carts.php\";s:11:\"new_version\";s:5:\"2.6.4\";s:3:\"url\";s:73:\"https://wordpress.org/plugins/wc-abandoned-carts-by-small-fish-analytics/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/wc-abandoned-carts-by-small-fish-analytics.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:95:\"https://ps.w.org/wc-abandoned-carts-by-small-fish-analytics/assets/icon-256x256.png?rev=1634925\";s:2:\"1x\";s:95:\"https://ps.w.org/wc-abandoned-carts-by-small-fish-analytics/assets/icon-128x128.png?rev=1634925\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"6.2.4\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=2892919\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=2892919\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:31:\"code-snippets/code-snippets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/code-snippets\";s:4:\"slug\";s:13:\"code-snippets\";s:6:\"plugin\";s:31:\"code-snippets/code-snippets.php\";s:11:\"new_version\";s:5:\"3.6.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/code-snippets/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/code-snippets.3.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878\";s:3:\"svg\";s:58:\"https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/code-snippets/assets/banner-1544x500.png?rev=2260997\";s:2:\"1x\";s:68:\"https://ps.w.org/code-snippets/assets/banner-772x250.png?rev=2256244\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"coming-soon/coming-soon.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/coming-soon\";s:4:\"slug\";s:11:\"coming-soon\";s:6:\"plugin\";s:27:\"coming-soon/coming-soon.php\";s:11:\"new_version\";s:9:\"6.15.15.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/coming-soon/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/coming-soon.6.15.15.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/coming-soon/assets/icon-256x256.png?rev=2402574\";s:2:\"1x\";s:64:\"https://ps.w.org/coming-soon/assets/icon-128x128.png?rev=2402575\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/coming-soon/assets/banner-1544x500.png?rev=2683810\";s:2:\"1x\";s:66:\"https://ps.w.org/coming-soon/assets/banner-772x250.png?rev=2683809\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{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:\"5.8.5\";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.5.8.5.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.2\";}s:53:\"webp-converter-for-media/webp-converter-for-media.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/webp-converter-for-media\";s:4:\"slug\";s:24:\"webp-converter-for-media\";s:6:\"plugin\";s:53:\"webp-converter-for-media/webp-converter-for-media.php\";s:11:\"new_version\";s:6:\"5.11.5\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/webp-converter-for-media/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/webp-converter-for-media.5.11.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/webp-converter-for-media/assets/icon-256x256.png?rev=2636288\";s:2:\"1x\";s:77:\"https://ps.w.org/webp-converter-for-media/assets/icon-128x128.png?rev=2636288\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/webp-converter-for-media/assets/banner-1544x500.png?rev=2757184\";s:2:\"1x\";s:79:\"https://ps.w.org/webp-converter-for-media/assets/banner-772x250.png?rev=2757184\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:45:\"w.org/plugins/duracelltomi-google-tag-manager\";s:4:\"slug\";s:31:\"duracelltomi-google-tag-manager\";s:6:\"plugin\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:11:\"new_version\";s:6:\"1.19.1\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/duracelltomi-google-tag-manager/\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.19.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-256x256.png?rev=1708451\";s:2:\"1x\";s:84:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-128x128.png?rev=1708451\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-1544x500.png?rev=1708451\";s:2:\"1x\";s:86:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-772x250.png?rev=1708451\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.4.0\";}s:47:\"jwt-authentication-for-wp-rest-api/jwt-auth.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/jwt-authentication-for-wp-rest-api\";s:4:\"slug\";s:34:\"jwt-authentication-for-wp-rest-api\";s:6:\"plugin\";s:47:\"jwt-authentication-for-wp-rest-api/jwt-auth.php\";s:11:\"new_version\";s:5:\"1.3.4\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/jwt-authentication-for-wp-rest-api.1.3.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:79:\"https://ps.w.org/jwt-authentication-for-wp-rest-api/assets/icon.svg?rev=2787935\";s:3:\"svg\";s:79:\"https://ps.w.org/jwt-authentication-for-wp-rest-api/assets/icon.svg?rev=2787935\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:89:\"https://ps.w.org/jwt-authentication-for-wp-rest-api/assets/banner-772x250.jpg?rev=2787935\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";}s:23:\"loco-translate/loco.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/loco-translate\";s:4:\"slug\";s:14:\"loco-translate\";s:6:\"plugin\";s:23:\"loco-translate/loco.php\";s:11:\"new_version\";s:5:\"2.6.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/loco-translate/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/loco-translate.2.6.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-256x256.png?rev=1000676\";s:2:\"1x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-128x128.png?rev=1000676\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/loco-translate/assets/banner-772x250.jpg?rev=745046\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:23:\"mailoptin/mailoptin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/mailoptin\";s:4:\"slug\";s:9:\"mailoptin\";s:6:\"plugin\";s:23:\"mailoptin/mailoptin.php\";s:11:\"new_version\";s:8:\"1.2.65.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/mailoptin/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/mailoptin.1.2.65.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/mailoptin/assets/icon-256x256.png?rev=1699978\";s:2:\"1x\";s:62:\"https://ps.w.org/mailoptin/assets/icon-128x128.png?rev=1699978\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/mailoptin/assets/banner-1544x500.png?rev=1700145\";s:2:\"1x\";s:64:\"https://ps.w.org/mailoptin/assets/banner-772x250.png?rev=1700145\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:29:\"mainwp-child/mainwp-child.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/mainwp-child\";s:4:\"slug\";s:12:\"mainwp-child\";s:6:\"plugin\";s:29:\"mainwp-child/mainwp-child.php\";s:11:\"new_version\";s:3:\"4.6\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/mainwp-child/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/mainwp-child.4.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-256x256.png?rev=2734948\";s:2:\"1x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-128x128.png?rev=2734948\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/mainwp-child/assets/banner-1544x500.jpg?rev=2734948\";s:2:\"1x\";s:67:\"https://ps.w.org/mainwp-child/assets/banner-772x250.jpg?rev=2734948\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/mainwp-child/assets/banner-1544x500-rtl.jpg?rev=2712922\";s:2:\"1x\";s:71:\"https://ps.w.org/mainwp-child/assets/banner-772x250-rtl.jpg?rev=2712922\";}s:8:\"requires\";s:3:\"5.4\";}s:19:\"members/members.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/members\";s:4:\"slug\";s:7:\"members\";s:6:\"plugin\";s:19:\"members/members.php\";s:11:\"new_version\";s:5:\"3.2.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/members/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/members.3.2.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/members/assets/icon-256x256.png?rev=2503334\";s:2:\"1x\";s:60:\"https://ps.w.org/members/assets/icon-128x128.png?rev=2503334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/members/assets/banner-1544x500.jpg?rev=2503334\";s:2:\"1x\";s:62:\"https://ps.w.org/members/assets/banner-772x250.jpg?rev=2503334\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:52:\"w.org/plugins/woocommerce-pdf-invoices-packing-slips\";s:4:\"slug\";s:38:\"woocommerce-pdf-invoices-packing-slips\";s:6:\"plugin\";s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";s:11:\"new_version\";s:5:\"3.7.5\";s:3:\"url\";s:69:\"https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/\";s:7:\"package\";s:87:\"https://downloads.wordpress.org/plugin/woocommerce-pdf-invoices-packing-slips.3.7.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/icon-256x256.png?rev=2189942\";s:2:\"1x\";s:91:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/icon-128x128.png?rev=2189942\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:94:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/banner-1544x500.png?rev=2189942\";s:2:\"1x\";s:93:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/banner-772x250.png?rev=2189942\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/product-size-chart-for-woo\";s:4:\"slug\";s:26:\"product-size-chart-for-woo\";s:6:\"plugin\";s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";s:11:\"new_version\";s:5:\"1.1.5\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/product-size-chart-for-woo/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/product-size-chart-for-woo.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/product-size-chart-for-woo/assets/icon-256x256.jpg?rev=2588381\";s:2:\"1x\";s:79:\"https://ps.w.org/product-size-chart-for-woo/assets/icon-128x128.jpg?rev=2588381\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/product-size-chart-for-woo/assets/banner-1544x500.jpg?rev=2588381\";s:2:\"1x\";s:81:\"https://ps.w.org/product-size-chart-for-woo/assets/banner-772x250.jpg?rev=2588381\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:30:\"seo-by-rank-math/rank-math.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/seo-by-rank-math\";s:4:\"slug\";s:16:\"seo-by-rank-math\";s:6:\"plugin\";s:30:\"seo-by-rank-math/rank-math.php\";s:11:\"new_version\";s:7:\"1.0.210\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/seo-by-rank-math/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.210.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=3015810\";s:3:\"svg\";s:61:\"https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=3015810\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/seo-by-rank-math/assets/banner-1544x500.png?rev=2639678\";s:2:\"1x\";s:71:\"https://ps.w.org/seo-by-rank-math/assets/banner-772x250.png?rev=2639678\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:3:\"5.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/redirection.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/shortcodes-ultimate\";s:4:\"slug\";s:19:\"shortcodes-ultimate\";s:6:\"plugin\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:11:\"new_version\";s:5:\"7.0.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/shortcodes-ultimate/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/shortcodes-ultimate.7.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/shortcodes-ultimate/assets/icon-256x256.gif?rev=2547563\";s:2:\"1x\";s:72:\"https://ps.w.org/shortcodes-ultimate/assets/icon-128x128.gif?rev=2547563\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/shortcodes-ultimate/assets/banner-1544x500.jpg?rev=1760590\";s:2:\"1x\";s:74:\"https://ps.w.org/shortcodes-ultimate/assets/banner-772x250.jpg?rev=1760590\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:7:\"1.116.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/google-site-kit.1.116.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=2181376\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=2181376\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=2513620\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=2513620\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:27:\"svg-support/svg-support.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/svg-support\";s:4:\"slug\";s:11:\"svg-support\";s:6:\"plugin\";s:27:\"svg-support/svg-support.php\";s:11:\"new_version\";s:5:\"2.5.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/svg-support/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/svg-support.2.5.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";s:3:\"svg\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377\";s:2:\"1x\";s:66:\"https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}s:49:\"woo-variation-swatches/woo-variation-swatches.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/woo-variation-swatches\";s:4:\"slug\";s:22:\"woo-variation-swatches\";s:6:\"plugin\";s:49:\"woo-variation-swatches/woo-variation-swatches.php\";s:11:\"new_version\";s:6:\"2.0.29\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/woo-variation-swatches/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/woo-variation-swatches.2.0.29.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/woo-variation-swatches/assets/icon-256x256.gif?rev=2741308\";s:2:\"1x\";s:75:\"https://ps.w.org/woo-variation-swatches/assets/icon-128x128.gif?rev=2741177\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/woo-variation-swatches/assets/banner-1544x500.gif?rev=2741177\";s:2:\"1x\";s:77:\"https://ps.w.org/woo-variation-swatches/assets/banner-772x250.gif?rev=2741177\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.4.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:73:\"woocommerce-advanced-free-shipping/woocommerce-advanced-free-shipping.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/woocommerce-advanced-free-shipping\";s:4:\"slug\";s:34:\"woocommerce-advanced-free-shipping\";s:6:\"plugin\";s:73:\"woocommerce-advanced-free-shipping/woocommerce-advanced-free-shipping.php\";s:11:\"new_version\";s:5:\"1.1.6\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/woocommerce-advanced-free-shipping/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/woocommerce-advanced-free-shipping.1.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/woocommerce-advanced-free-shipping/assets/icon-256x256.png?rev=1171652\";s:2:\"1x\";s:87:\"https://ps.w.org/woocommerce-advanced-free-shipping/assets/icon-128x128.png?rev=1171652\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:88:\"https://ps.w.org/woocommerce-advanced-free-shipping/assets/banner-772x250.png?rev=901859\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:43:\"w.org/plugins/woo-cart-abandonment-recovery\";s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:6:\"plugin\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:11:\"new_version\";s:6:\"1.2.26\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/woo-cart-abandonment-recovery/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/woo-cart-abandonment-recovery.1.2.26.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/icon-256x256.png?rev=2957062\";s:2:\"1x\";s:82:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/icon-128x128.png?rev=2957062\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/banner-1544x500.png?rev=2957062\";s:2:\"1x\";s:84:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/banner-772x250.png?rev=2957062\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.4\";}s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/woocommerce-gateway-stripe\";s:4:\"slug\";s:26:\"woocommerce-gateway-stripe\";s:6:\"plugin\";s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";s:11:\"new_version\";s:5:\"7.8.1\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/woocommerce-gateway-stripe/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/woocommerce-gateway-stripe/assets/icon-256x256.png?rev=2419673\";s:2:\"1x\";s:79:\"https://ps.w.org/woocommerce-gateway-stripe/assets/icon-128x128.png?rev=2419673\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/woocommerce-gateway-stripe/assets/banner-1544x500.png?rev=2419673\";s:2:\"1x\";s:81:\"https://ps.w.org/woocommerce-gateway-stripe/assets/banner-772x250.png?rev=2419673\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.1\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:6:\"7.11.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wordfence.7.11.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.12.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.12.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:47:\"wpvivid-backuprestore/wpvivid-backuprestore.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/wpvivid-backuprestore\";s:4:\"slug\";s:21:\"wpvivid-backuprestore\";s:6:\"plugin\";s:47:\"wpvivid-backuprestore/wpvivid-backuprestore.php\";s:11:\"new_version\";s:6:\"0.9.94\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/wpvivid-backuprestore/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.94.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/wpvivid-backuprestore/assets/icon-256x256.png?rev=2899202\";s:2:\"1x\";s:74:\"https://ps.w.org/wpvivid-backuprestore/assets/icon-128x128.png?rev=2899202\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/wpvivid-backuprestore/assets/banner-1544x500.png?rev=2899202\";s:2:\"1x\";s:76:\"https://ps.w.org/wpvivid-backuprestore/assets/banner-772x250.png?rev=2899202\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}}s:7:\"checked\";a:3:{s:39:\"wpae-acf-add-on/wpae-acf-add-on-pro.php\";s:5:\"1.0.5\";s:51:\"wpae-woocommerce-add-on/wpae-woocommerce-add-on.php\";s:5:\"1.0.9\";s:35:\"wpai-acf-add-on/wpai-acf-add-on.php\";s:5:\"3.3.8\";}}','no'),(300378,'_site_transient_timeout_available_translations','1704398276','no'),(300379,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.6\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.6/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-25 17:57:08\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-19 09:22:30\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-04 08:28:00\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.24/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-09 09:13:37\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-05 07:41:05\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-28 12:29:26\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-30 19:34:45\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-03 10:36:13\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-07 09:53:23\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-06 19:56:58\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-08 18:40:48\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.4.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-29 21:13:08\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-08 18:40:24\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-06 19:57:18\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.4.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.3/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-01 13:08:30\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-08-28 15:58:51\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-24 12:26:36\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-27 22:57:29\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-22 02:53:03\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-25 14:09:36\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-09-20 08:57:43\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-30 13:46:36\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-28 10:19:25\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-08 20:42:04\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.14/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-20 03:52:48\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.19\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.19/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-05 10:16:58\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-12 17:17:02\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-18 00:21:16\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-02 23:17:28\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-09 09:46:35\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-29 13:35:45\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-02 11:49:54\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.3/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-02 23:37:18\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-08-09 07:20:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.31\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.31/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-31 11:28:03\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-03 21:54:15\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.3/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-24 18:28:12\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-20 14:14:51\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-02 20:36:49\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-27 06:05:50\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.1.4\";s:7:\"updated\";s:19:\"2023-11-25 09:35:18\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.4/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.3/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.19\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.19/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.4\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.4/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-19 07:05:28\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-26 15:29:58\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-21 15:26:43\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.4\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.4/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-20 21:57:20\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.6\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.6/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-03 15:43:45\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-05 01:27:19\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.13\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.13/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.36\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.36/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-28 16:54:57\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-22 16:02:51\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-14 13:34:08\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.4.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-21 10:48:27\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-21 11:46:32\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-06 10:01:18\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.32\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.32/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-08-21 12:17:05\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-07 09:07:54\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-08 00:25:54\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-07 09:12:03\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.4.2/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-04 07:42:03\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-02 16:10:47\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.14/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-22 08:45:57\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-12 10:29:16\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-27 05:49:48\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-13 18:56:56\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-20 15:42:04\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-20 00:53:50\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.16\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.16/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.36\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.36/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.23/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-18 02:29:21\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-03 21:12:17\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-28 21:09:13\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.14/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.3/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-07 00:00:04\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-23 09:22:54\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(300381,'_transient_timeout_wfcredentialstatus_12','1704391217','no'),(300382,'_transient_wfcredentialstatus_12','0e63da3487078c3d7051829e57423a7221dfb864f7f452fab3b53d28afd3b8646','no'),(300383,'_transient_timeout_villatheme_notices','1704474022','no'),(300384,'_transient_villatheme_notices','a:7:{s:7:\"heading\";s:31:\"New Year, New Deals, New Saving\";s:11:\"description\";s:108:\"Enjoy 25% Off on Bestselling WooCommerce Multi Currency and Email Template Customization! until January 31st\";s:4:\"link\";s:30:\"https://1.envato.market/dav1XQ\";s:2:\"id\";s:7:\"jan2024\";s:5:\"start\";s:0:\"\";s:3:\"end\";s:10:\"2024-01-31\";s:4:\"loop\";s:3:\"2,4\";}','no'),(300385,'_transient_timeout_villatheme_called','1704474022','no'),(300386,'_transient_villatheme_called','1','no'),(300387,'_transient_timeout_wcstripe_account_data_live','1704394824','no'),(300388,'_transient_wcstripe_account_data_live','O:8:\"stdClass\":19:{s:2:\"id\";s:21:\"acct_1NR06LL2rnkpzIzk\";s:6:\"object\";s:7:\"account\";s:16:\"business_profile\";O:8:\"stdClass\":7:{s:3:\"mcc\";s:4:\"5944\";s:4:\"name\";s:9:\"Teng Shop\";s:15:\"support_address\";O:8:\"stdClass\":6:{s:4:\"city\";N;s:7:\"country\";s:2:\"FR\";s:5:\"line1\";N;s:5:\"line2\";N;s:11:\"postal_code\";N;s:5:\"state\";N;}s:13:\"support_email\";s:21:\"contact@teng-shop.com\";s:13:\"support_phone\";s:13:\"+528333106537\";s:11:\"support_url\";N;s:3:\"url\";s:16:\"se.teng-shop.com\";}s:12:\"capabilities\";O:8:\"stdClass\":12:{s:19:\"bancontact_payments\";s:6:\"active\";s:13:\"blik_payments\";s:6:\"active\";s:13:\"card_payments\";s:6:\"active\";s:12:\"eps_payments\";s:6:\"active\";s:16:\"giropay_payments\";s:6:\"active\";s:14:\"ideal_payments\";s:6:\"active\";s:15:\"klarna_payments\";s:8:\"inactive\";s:13:\"link_payments\";s:6:\"active\";s:12:\"p24_payments\";s:6:\"active\";s:19:\"sepa_debit_payments\";s:6:\"active\";s:15:\"sofort_payments\";s:6:\"active\";s:9:\"transfers\";s:6:\"active\";}s:15:\"charges_enabled\";b:1;s:10:\"controller\";O:8:\"stdClass\":2:{s:13:\"is_controller\";b:1;s:4:\"type\";s:11:\"application\";}s:7:\"country\";s:2:\"FR\";s:7:\"created\";i:1688680454;s:16:\"default_currency\";s:3:\"eur\";s:17:\"details_submitted\";b:1;s:5:\"email\";s:24:\"doriangenisset@gmail.com\";s:17:\"external_accounts\";O:8:\"stdClass\":5:{s:6:\"object\";s:4:\"list\";s:4:\"data\";a:1:{i:0;O:8:\"stdClass\":18:{s:2:\"id\";s:27:\"ba_1NR06gL2rnkpzIzk1kFTrr3L\";s:6:\"object\";s:12:\"bank_account\";s:7:\"account\";s:21:\"acct_1NR06LL2rnkpzIzk\";s:19:\"account_holder_name\";N;s:19:\"account_holder_type\";N;s:12:\"account_type\";N;s:24:\"available_payout_methods\";a:1:{i:0;s:8:\"standard\";}s:9:\"bank_name\";s:13:\"N26 BANK GMBH\";s:7:\"country\";s:2:\"DE\";s:8:\"currency\";s:3:\"eur\";s:20:\"default_for_currency\";b:1;s:11:\"fingerprint\";s:16:\"4YST2gyJyv8fianQ\";s:19:\"future_requirements\";O:8:\"stdClass\":4:{s:13:\"currently_due\";a:0:{}s:6:\"errors\";a:0:{}s:8:\"past_due\";a:0:{}s:20:\"pending_verification\";a:0:{}}s:5:\"last4\";s:4:\"7736\";s:8:\"metadata\";O:8:\"stdClass\":0:{}s:12:\"requirements\";O:8:\"stdClass\":4:{s:13:\"currently_due\";a:0:{}s:6:\"errors\";a:0:{}s:8:\"past_due\";a:0:{}s:20:\"pending_verification\";a:0:{}}s:14:\"routing_number\";s:8:\"NTSBDEB1\";s:6:\"status\";s:7:\"errored\";}}s:8:\"has_more\";b:0;s:11:\"total_count\";i:1;s:3:\"url\";s:52:\"/v1/accounts/acct_1NR06LL2rnkpzIzk/external_accounts\";}s:19:\"future_requirements\";O:8:\"stdClass\":8:{s:12:\"alternatives\";a:0:{}s:16:\"current_deadline\";N;s:13:\"currently_due\";a:0:{}s:15:\"disabled_reason\";N;s:6:\"errors\";a:0:{}s:14:\"eventually_due\";a:0:{}s:8:\"past_due\";a:0:{}s:20:\"pending_verification\";a:0:{}}s:8:\"metadata\";O:8:\"stdClass\":0:{}s:15:\"payouts_enabled\";b:1;s:12:\"requirements\";O:8:\"stdClass\":8:{s:12:\"alternatives\";a:0:{}s:16:\"current_deadline\";N;s:13:\"currently_due\";a:0:{}s:15:\"disabled_reason\";N;s:6:\"errors\";a:0:{}s:14:\"eventually_due\";a:0:{}s:8:\"past_due\";a:0:{}s:20:\"pending_verification\";a:0:{}}s:8:\"settings\";O:8:\"stdClass\":8:{s:19:\"bacs_debit_payments\";O:8:\"stdClass\":2:{s:12:\"display_name\";N;s:19:\"service_user_number\";N;}s:8:\"branding\";O:8:\"stdClass\":4:{s:4:\"icon\";N;s:4:\"logo\";N;s:13:\"primary_color\";N;s:15:\"secondary_color\";N;}s:12:\"card_issuing\";O:8:\"stdClass\":1:{s:14:\"tos_acceptance\";O:8:\"stdClass\":2:{s:4:\"date\";N;s:2:\"ip\";N;}}s:13:\"card_payments\";O:8:\"stdClass\":4:{s:10:\"decline_on\";O:8:\"stdClass\":2:{s:11:\"avs_failure\";b:0;s:11:\"cvc_failure\";b:0;}s:27:\"statement_descriptor_prefix\";s:2:\"TS\";s:32:\"statement_descriptor_prefix_kana\";N;s:33:\"statement_descriptor_prefix_kanji\";N;}s:9:\"dashboard\";O:8:\"stdClass\":2:{s:12:\"display_name\";s:12:\"Teng Shop SE\";s:8:\"timezone\";s:7:\"Etc/UTC\";}s:8:\"payments\";O:8:\"stdClass\":3:{s:20:\"statement_descriptor\";s:9:\"TENG SHOP\";s:25:\"statement_descriptor_kana\";N;s:26:\"statement_descriptor_kanji\";N;}s:7:\"payouts\";O:8:\"stdClass\":3:{s:23:\"debit_negative_balances\";b:1;s:8:\"schedule\";O:8:\"stdClass\":2:{s:10:\"delay_days\";i:7;s:8:\"interval\";s:5:\"daily\";}s:20:\"statement_descriptor\";N;}s:19:\"sepa_debit_payments\";O:8:\"stdClass\":0:{}}s:14:\"tos_acceptance\";O:8:\"stdClass\":1:{s:4:\"date\";i:1688680424;}s:4:\"type\";s:8:\"standard\";}','no'),(300389,'_transient_timeout_wc_report_orders_stats_5e729a44b329dd971163df61e71a0728','1704992427','no'),(300390,'_transient_wc_report_orders_stats_5e729a44b329dd971163df61e71a0728','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-04 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(300391,'_transient_timeout_wc_report_orders_stats_c3f3065eb0b1e1a49ef3069164b2d8ce','1704992427','no'),(300392,'_transient_wc_report_orders_stats_c3f3065eb0b1e1a49ef3069164b2d8ce','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-04 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(300393,'_transient_timeout_wc_report_products_stats_1513aa895ecbf4351b09a47c7f6e75f2','1704992427','no'),(300394,'_transient_wc_report_products_stats_1513aa895ecbf4351b09a47c7f6e75f2','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-04 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(300395,'_transient_timeout_wc_report_variations_stats_e27455586518e67a6e5f6e96db932160','1704992427','no'),(300396,'_transient_wc_report_variations_stats_e27455586518e67a6e5f6e96db932160','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-04 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(300397,'_transient_timeout_wc_report_orders_stats_4c38d59c76da38947bae76f164d491e5','1704992427','no'),(300398,'_transient_wc_report_orders_stats_4c38d59c76da38947bae76f164d491e5','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:7:{i:0;a:6:{s:8:\"interval\";s:10:\"2023-12-29\";s:10:\"date_start\";s:19:\"2023-12-29 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-28 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-29 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-29 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2023-12-30\";s:10:\"date_start\";s:19:\"2023-12-30 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-29 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-30 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-30 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2023-12-31\";s:10:\"date_start\";s:19:\"2023-12-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-30 23:00:00\";s:8:\"date_end\";s:19:\"2023-12-31 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-12-31 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2024-01-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-01 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2024-01-02\";s:10:\"date_start\";s:19:\"2024-01-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-01 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-02 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2024-01-03\";s:10:\"date_start\";s:19:\"2024-01-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-02 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-03 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2024-01-04\";s:10:\"date_start\";s:19:\"2024-01-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-03 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-04 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:7;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(300399,'_transient_timeout_wc_tracks_blog_details','1704474027','no'),(300400,'_transient_wc_tracks_blog_details','a:6:{s:3:\"url\";s:33:\"https://www.nl.ecom-expansion.com\";s:9:\"blog_lang\";s:5:\"en_US\";s:7:\"blog_id\";b:0;s:8:\"store_id\";s:36:\"f6f3ff36-dcfe-4a76-bffd-7e58c181f5a3\";s:14:\"products_count\";i:0;s:10:\"wc_version\";s:5:\"8.4.0\";}','no'),(300402,'_transient_timeout_rank_math_feed_posts_v2','1704430834','no'),(300403,'_transient_rank_math_feed_posts_v2','a:4:{i:0;a:5:{s:5:\"title\";a:1:{s:8:\"rendered\";s:51:\"Content AI 2.0: Introducing AI SEO Inside WordPress\";}s:4:\"date\";s:19:\"2024-01-04 15:02:25\";s:4:\"link\";s:62:\"https://rankmath.com/blog/introducing-supercharged-content-ai/\";s:12:\"custom_label\";s:0:\"\";s:9:\"condition\";s:0:\"\";}i:1;a:3:{s:5:\"title\";a:1:{s:8:\"rendered\";s:35:\"How to Easily Add GIFs in WordPress\";}s:4:\"date\";s:19:\"2024-01-03 15:28:15\";s:4:\"link\";s:48:\"https://rankmath.com/blog/add-gifs-in-wordpress/\";}i:2;a:3:{s:5:\"title\";a:1:{s:8:\"rendered\";s:38:\"Website Navigation: Best SEO Practices\";}s:4:\"date\";s:19:\"2024-01-02 15:08:14\";s:4:\"link\";s:45:\"https://rankmath.com/blog/website-navigation/\";}i:3;a:3:{s:5:\"title\";a:1:{s:8:\"rendered\";s:38:\"How to Easily Create SEO-Friendly URLs\";}s:4:\"date\";s:19:\"2023-12-29 16:17:04\";s:4:\"link\";s:44:\"https://rankmath.com/blog/seo-friendly-urls/\";}}','no'),(300404,'_site_transient_timeout_community-events-c1487d3165708dd14d966682eea4e82a','1704430834','no'),(300405,'_site_transient_community-events-c1487d3165708dd14d966682eea4e82a','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"187.190.78.0\";}s:6:\"events\";a:0:{}}','no'),(300406,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1704430835','no'),(300407,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Dec 2023 18:35:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.5-alpha-57240\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:75:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n\n\n\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Leap into 2024 with these Site Editor Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Dec 2023 18:35:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"Site editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16658\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:297:\"The Site Editor gives you a powerful way to visually create every part of your site and tell your story. It lets you handle everything from big stylistic changes to simple copy updates all in a single place. To help you make the most of this new way to WordPress, here are a few standout [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:6:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:70:\"https://wordpress.org/news/files/2023/12/Command-Palette-news-post.mp4\";s:6:\"length\";s:7:\"5553759\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:70:\"https://wordpress.org/news/files/2023/12/Style-book-news-post-demo.mp4\";s:6:\"length\";s:8:\"30842905\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:75:\"https://wordpress.org/news/files/2023/12/Styling-options-news-post-demo.mp4\";s:6:\"length\";s:8:\"27873396\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:88:\"https://wordpress.org/news/files/2023/12/Distraction-free-and-preview-news-post-demo.mp4\";s:6:\"length\";s:8:\"24659305\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:68:\"https://wordpress.org/news/files/2023/12/Patterns-news-post-demo.mp4\";s:6:\"length\";s:7:\"3617911\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:69:\"https://wordpress.org/news/files/2023/12/List-View-news-post-demo.mp4\";s:6:\"length\";s:7:\"2163970\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9352:\"\n<p>The Site Editor gives you a powerful way to visually create every part of your site and tell your story. It lets you handle everything from big stylistic changes to simple copy updates all in a single place. To help you make the most of this new way to WordPress, here are a few standout tools and features you’ll want to try.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Command Palette</h3>\n\n\n\n<p>Think of the Command Palette as the ultimate shortcut tool, letting you do more with less clicks and without needing to remember where each option might be. It’s available across the editing experience, whether you’re switching between templates in the Site Editor or toggling open settings in the Post Editor, with specific contextual options depending on where you are.<strong> </strong>You can use the keyboard shortcut Cmd+K on Mac or Ctrl+K on Windows to activate it and get started.&nbsp;</p>\n\n\n\n<p>If you think of a command that doesn’t exist yet that would help with your workflow, open a <a href=\"https://github.com/WordPress/gutenberg/issues/new/choose\">feature request issue</a> so we can consider adding it.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Command-Palette-news-post.mp4\"></video></figure>\n\n\n\n<p class=\"is-style-default\"><a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\"><em>Read more</em></a><em> about everything you can do with the Command Palette, including a </em><a href=\"https://wordpress.org/documentation/article/site-editor-command-palette/#list-of-available-commands\"><em>list of available commands</em></a><em>.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Style Book</h3>\n\n\n\n<p>The Style Book helps you see all the blocks on your site as you style them. It’s built into the Styles section and can be toggled on/off as you’d like. This is especially useful when you’re aiming for design consistency for a client, trying to see how a change might impact a block that might not be visible, or wanting to get a different look at how a style variation will switch things up.</p>\n\n\n\n<p>Work is also underway for the next WordPress release to <a href=\"https://github.com/WordPress/gutenberg/pull/56800\">integrate the Style Book into Style revisions</a> to allow for an at-a-glance view of changes made. </p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Style-book-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-wordpress-stylebook-with-your-block-theme/\"><em>Learn more</em></a><em> about how best to use the Style Book.</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Styling shortcuts</h3>\n\n\n\n<p>Sometimes you get a design just right—the color contrast, the perfect padding, the exact font size. Instead of needing to manually recreate the design or copy/paste the block to fill in with new content, you have two powerful options built into the editing experience: copy/paste styles and apply styles globally for all instances of the desired block.&nbsp;</p>\n\n\n\n<p>Copying and pasting styles is perfect for more nuanced and smaller changes, like headings on a landing page that you intentionally want to be distinct. Applying changes globally is best for blocks like buttons and for changes that are likely to work well across layouts, like setting a specific border radius and color. This helps keep the creativity flowing and makes achieving design consistency across your site much easier.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Styling-options-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"><em>Read more</em></a><em> about the various styling options available.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Distraction free mode</h3>\n\n\n\n<p>Just like an artist might need to take a few steps back to view their in-progress artwork, sometimes we need to get a different view of our site before diving back in. Distraction free offers you that alternate perspective with a pared-down experience that lets you focus purely on creating, like:</p>\n\n\n\n<ul>\n<li>Hiding the top toolbar until one intentionally hovers over where it typically sits.</li>\n\n\n\n<li>Removing many of the top toolbar buttons.</li>\n\n\n\n<li>Automatically closing any open sidebars, like block settings and list view.&nbsp;</li>\n\n\n\n<li>Hiding the insertion point indicator, reducing visual clutter.&nbsp;</li>\n\n\n\n<li>Hiding the block toolbar for individual blocks.</li>\n</ul>\n\n\n\n<p>It’s worth noting that this mode can be used when writing posts and pages too! For an added bonus and more views of your site, you can use the preview options to see how your site might look across different devices.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Distraction-free-and-preview-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/distraction-free-mode/\"><em>Learn more</em></a><em> about making the most out of Distraction free mode.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Patterns</h3>\n\n\n\n<p>Patterns are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. They save time by reducing duplication and ensuring consistency. You can create your own, use theme-provided patterns, or <a href=\"https://wordpress.org/patterns/\">lean on the Pattern Directory</a>.&nbsp;</p>\n\n\n\n<p>You can also specify whether to sync your patterns so that one change applies to all parts of your site, or to keep them unsynced so you can customize each instance. For any patterns you create, you can assign categories to make them easy to find and organize. Use the Inserter with easy filtering options to add patterns to your content, and head to the dedicated Patterns section in the Site Editor to create or edit patterns to your liking.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Patterns-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/creating-your-own-custom-synced-or-non-synced-patterns/\"><em>Learn more</em></a><em> about creating patterns.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">List View</h3>\n\n\n\n<p>List View is the go-to tool for navigating between layers of your content, selecting exactly what you need, and getting a sense of how everything fits together. Similar to the Style Book and Distraction free mode, you can toggle it on/off as you’d like. It’s currently visible in the Top Toolbar and will remain open as you navigate through your site. Beyond providing a simple view of the layers of your site, there are more recent additions to List View that makes the tool even more powerful:</p>\n\n\n\n<ul>\n<li>See previews of your images for Image and Gallery blocks reflected in List View to make it easier to find what you need.</li>\n\n\n\n<li>The Escape key deselects blocks to make it easier to purely preview your content without any blocks selected.&nbsp;</li>\n\n\n\n<li>Lean on a keyboard shortcut for duplicating blocks quickly: CMD+Shift+D for Mac or Control + Shift + D for Windows.&nbsp;</li>\n\n\n\n<li>Drag and drop blocks at any level directly within List View.</li>\n\n\n\n<li>Rename Group blocks and have the custom name reflected in List View for improved organization.</li>\n</ul>\n\n\n\n<p>Here’s how a few of these improvements come together:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/List-View-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/list-view/\"><em>Learn more</em></a><em> about using List View. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>As you explore these tools, remember that, except for the Style Book, you can use these features when writing posts and pages too. Expect the Site Editor and other tools to evolve with each release. To get a sneak peek at what’s planned for the next major WordPress release in March, <a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">check out the roadmap</a> and stay tuned. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox. </p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p >\n						<a href=\"https://wordpress.org/news/?post_type=post&#038;p=16658\" style=\"text-decoration: none; font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px; background-color: #113AF5; color: #FFFFFF;\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div>\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/joen/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WP Briefing: Episode 69: Reflections on State of the Word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/episode-69-reflections-on-state-of-the-word/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16654\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:232:\"In this episode, WordPress Executive Director Josepha Haden Chomphosy reflects on the recent 2023 State of the Word, which took place in Madrid, Spain, and some of the highlights of the work across the WordPress open source project.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2023/12/WPB069.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10686:\"\n<p>In this episode, WordPress Executive Director Josepha Haden Chomphosy reflects on the recent 2023 State of the Word, which took place in Madrid, Spain, and some of the highlights of the work across the WordPress open source project.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\">State of the Word Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/\">WordPress Developer Blog</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/12/22/wordpress-end-of-year-celebrations/\">WordPress End of Year Celebrations!</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/12/11/introducing-enhanced-content-safety-features-on-openverse/\" target=\"_blank\" rel=\"noreferrer noopener\">Introducing Enhanced Content Safety Features on Openverse</a>&nbsp;&#8211; Introducing new features for enhanced content safety on Openverse. </li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\" target=\"_blank\" rel=\"noreferrer noopener\">Alert: WordPress Security Team Impersonation Scams</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/12/02/join-the-plugin-review-team/\" target=\"_blank\" rel=\"noreferrer noopener\">Join the Plugin Review Team!</a> &#8211; The Plugin Review Team is looking for new members; the deadline to apply is on December 31, 2023.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16654\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40]&nbsp;<strong>Josepha:</strong> We wrapped up State of the Word earlier this month, and while I was sitting there being the only person to clap for the love of cake, I realized just how much we have been able to accomplish this year. And on the one hand, I shouldn&#8217;t be surprised.</p>\n\n\n\n<p>After all, progress is radical over time yet incremental in time. But all told, 2023 has been a big year for WordPress. There&#8217;s been some radical progress in a few places. There are the things you know because you&#8217;ve heard them all year. You heard them in State of the Word.</p>\n\n\n\n<p>We turned 20, for instance. We shipped three on-time releases. We had three well-organized flagship events, and we prototyped essential parts of phase 3. But there&#8217;s a lot of work that happens outside of flagship events and software releases, and I&#8217;d like to highlight a few examples of operational excellence in our community and ecosystem.</p>\n\n\n\n<p>[00:01:31] <strong>Josepha:</strong> First highlight goes to the contributors who are building community. Going back to 2021, we&#8217;ve been working to bring people back together in person.</p>\n\n\n\n<p>And in that year, we had 19 events. In 2022, we had 24 events, so a modest increase of just over 30%. But then, in 2023, the WordPress community banded together on a campaign to reignite passion in our Meetup groups and encourage playfulness in our WordCamp planning. And not only did we see a 57% increase in active Meetup groups, But we also saw a 116% increase in WordCamps, 54 WordCamps in all. That&#8217;s about a third of the way to our all-time annual high of 142.</p>\n\n\n\n<p>And to complement these in-person opportunities, Learn also shipped 104 pieces of new content and hosted 258 online workshops because location should never be a barrier to entry for joining WordPress.&nbsp;</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong> Second highlight goes to the contributors who are managing our directories. We do have a lot of directories. We have Plugins, Themes, Photos, Block plugins. We got a lot.</p>\n\n\n\n<p>And I&#8217;m sure that everyone saw the consistent and borderline pleading calls to join the Plugin team this year. And for folks who&#8217;ve been around a bit, you probably recall a similar set of consistent and pleading calls to join the Theme team a few years back. Concurrent with the work to refill that contribution pipeline, folks over in Meta and across the project generally, were working on automating as many checks as possible, loosening guidelines where it was reasonable, and modernizing as many processes as we could.</p>\n\n\n\n<p>I&#8217;m happy to share that the theme wait time is at a historic low, with their longest wait sometimes just at a week. And as anxious as I am about the plugin wait times, we&#8217;re actually seeing a lot of progress there as well. As we follow a process similar to the one that we did on themes, I imagine it&#8217;s only gonna get better. So, in 2023, we&#8217;ve onboarded six new team members. And since September, the number of plugins awaiting initial review has been cut in half.</p>\n\n\n\n<p>And then coming up in Q1 of 2024, we&#8217;ll have a project focused entirely on automating as many checks as possible. So I still need you, but I also need you to know that your work there matters and is having an impact.</p>\n\n\n\n<p>[00:03:55] <strong>Josepha:</strong> The third highlight goes to the contributors who are doing outreach. This year, we launched a mentorship program with an 89% completion rate because we&#8217;ve seen time and again that our most prolific contributors had someone at the start that they felt safe asking dumb questions with. We launched and nurtured the developer blog, which was a need identified by the community because there was no place for intermediate and advanced developers to get excited about their cool explorations. And there were 53 posts there this year with thirteen thousand views, which is a 251% increase for the record, which is a ridiculous increase, but it&#8217;s a lot. Thirteen thousand views is a lot.</p>\n\n\n\n<p>We have focused on documentation as we suggested in Porto of 2022. And marketing, I know not always our favorite topic, but marketing, our ability to talk about ourselves to more than just ourselves, has increased dramatically this year.&nbsp;</p>\n\n\n\n<p>Not only have we started rolling out a modern design across our website, but we also are present and engaged on eight different platforms with 20-plus episodes of this very podcast and also video content that netted us seven and a half million views this year. That&#8217;s a lot of numbers, and there&#8217;s a post that goes with it.</p>\n\n\n\n<p>[00:05:10] <strong>Josepha:</strong> Check out the show notes. But if you&#8217;re not gonna check out the show notes because you listen to this on Pocket Casts or Google or something, go to make.WordPress.org/project, and it&#8217;ll be over there. But the point is, it&#8217;s been a banner year for the software, and I am grateful for every tester, designer, and developer that showed up for it. But I also know that what makes WordPress truly irreplaceable is our ecosystem, and it&#8217;s contributions like this and the contributors who do them that make our ecosystem vibrant and responsive and thriving on into the future.</p>\n\n\n\n<p>So, thank you all for the contributions you make to WordPress. Thank you for the shining example of how to do open source at scale, and thank you for another great year together.&nbsp;</p>\n\n\n\n<p>[00:06:04] <strong>Josepha:</strong> Which brings us now to our small list of big things. It is indeed a small this time. First up, I would like to introduce our enhanced content safety features on Openverse. By default, search results now exclude openly licensed media containing sensitive textual content. But this new feature adds additional filtering based on titles, tags, and descriptions of the work as well.</p>\n\n\n\n<p>[00:06:27] <strong>Josepha:</strong> The second thing on our small list of big things is that there is just a general alert. There&#8217;s a WordPress security team impersonation scam that&#8217;s going on out there. The team is aware of multiple ongoing phishing scams impersonating both the WordPress team and the WordPress security team in an attempt to convince administrators to install a plugin on their website which contains malware. I&#8217;ll include a link to that post just in case you have anyone that you think might need to be aware of that, but also all of our site administrators know. Like, WordPress is not gonna email you asking for passwords or anything ever. </p>\n\n\n\n<p>[00:07:02] <strong>Josepha:</strong> And item number three, I would like you to join the Plugin review team. I know I just said it in the body of the episode. But, the Plugin review team is looking for new members still who believe in our mission of guiding plugin authors in responsibly transforming their innovative ideas into reality and ensuring a great WordPress plugin experience for end users. There is a deadline to apply; it&#8217;s December 31st. And so you can get that done over the holidays, over a glass of eggnog if that&#8217;s how you choose to celebrate whatever it is that you do. </p>\n\n\n\n<p>And that&#8217;s it for your small list of big things.&nbsp;</p>\n\n\n\n<p>Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. See you again in a couple of weeks.&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"State of the Word 2023 Recap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Dec 2023 22:55:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16617\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:384:\"On December 11, WordPress co-founder Matt Mullenweg traveled to beautiful Madrid, Spain, to deliver his annual State of the Word keynote. It was the first time this event took place outside the United States. Against the backdrop of Palacio Neptuno—an iconic architectural gem and UNESCO World Heritage site—nearly 200 contributors, developers, extenders, and friends of [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:20384:\"\n<p>On December 11, WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> traveled to beautiful Madrid, Spain, to deliver his annual <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> keynote. It was the first time this event took place outside the United States. Against the backdrop of <a href=\"https://www.palacioneptuno.com/\">Palacio Neptuno</a>—an iconic architectural gem and UNESCO World Heritage site—nearly 200 contributors, developers, extenders, and friends of the project came together to hear from Matt, with millions more joining online.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/c7M4mBVgP3Y?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">An introduction from the Executive Director</h2>\n\n\n\n<p>Kicking off the event, <a href=\"https://profiles.wordpress.org/chanthaboune/\" target=\"_blank\" rel=\"noreferrer noopener\">Josepha Haden Chomphosy</a>, Executive Director of the WordPress project, spoke about the community’s heart and spirit as what fuels hope for the future, ensuring the freedoms of the open web for all. She invited Matt on stage with a closing statement of confidence that such values and characteristics will move the project forward into the next 20 years as it has for the last 20.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"682\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?resize=1024%2C682&#038;ssl=1\" alt=\"Josepha Haden Chomphosy, Executive Director of the WordPress project, speaking at a podium \" class=\"wp-image-16627\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?resize=1024%2C682&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Looking back at 2023</h2>\n\n\n\n<p>Taking the stage, Matt shared his excitement about the event being the first international State of the Word. He honored the Spanish WordPress community for hosting, citing their past WordCamp accomplishments. From there, Matt jumped right into a reflection of this year’s notable moments. He recalled the project’s 20th-anniversary celebrations, how the software has evolved, and how much more the community came together this year—doubling the number of WordCamps to 70, taking place in 33 countries.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:0;padding-bottom:var(--wp--preset--spacing--40);padding-left:0\">\n<p class=\"has-text-align-center\">We’re always aiming to learn and improve. Tell us how to make meetups better.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/2023-meetup-annual-survey?p=1\" target=\"_blank\" rel=\"noreferrer noopener\">Take the 2023 Meetup Survey</a></div>\n</div>\n</div>\n\n\n\n<p>Matt continued with callouts to several resources on <a href=\"https://wordpress.org/\">WordPress.org</a>: the all-new <a href=\"https://events.wordpress.org/\">Events</a> page, the redesigned <a href=\"https://wordpress.org/showcase/\">Showcase</a>, a new <a href=\"https://wordpress.org/remembers/\">WordPress Remembers memorial</a>, and the <a href=\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\">award-winning Openverse</a>. He also demoed <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, a tool allowing users to experiment with WordPress directly in their browsers, as well as the versatile <a href=\"https://wordpress.org/themes/twentytwentyfour/\">Twenty Twenty-Four default theme</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"682\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?resize=1024%2C682&#038;ssl=1\" alt=\"Matías Ventura, Lead Architect of Gutenberg, speaking on stage at State of the Word\" class=\"wp-image-16621\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?resize=1024%2C682&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Collaborative editing and more</h2>\n\n\n\n<p>Matt recapped the four phases of the Gutenberg project, noting that work has begun on Phase 3: Collaboration before passing the microphone to <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, Lead Architect of Gutenberg.&nbsp;</p>\n\n\n\n<p>After a quick interlude in Spanish, Matías acknowledged how much progress had been made on the software this year. He spoke about the aim of the Site Editor to become both an exemplary writing environment and a superior design tool while noting improvements to the&nbsp;<a href=\"https://wordpress.org/documentation/article/footnotes-block/\" target=\"_blank\" rel=\"noreferrer noopener\">Footnotes Block</a>&nbsp;and the ease of&nbsp;<a href=\"https://wordpress.org/documentation/article/distraction-free-mode/\" target=\"_blank\" rel=\"noreferrer noopener\">Distraction Free mode</a>.</p>\n\n\n\n<p>While there was no set timeline for collaboration and workflows, Matías was excited to share a working prototype in the Editor. He showcased some of the most interesting aspects of collaborative editing, including establishing a sync engine that allows real-time edits to be visible across sessions. He invited contributors to test the prototype in the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a> and <a href=\"https://github.com/WordPress/gutenberg/issues/52593\">share their feedback in Github</a>.</p>\n\n\n\n<p>From there, Matías highlighted other exciting developments, including the emphasis on Patterns and their continued evolution as a powerful tool for workflows, and the ability to connect blocks to custom fields. He was thrilled to speak about performance improvements, noting that work is in progress to make the Editor <a href=\"https://www.codevitals.run/project/gutenberg\">at least twice as fast</a>. Speaking about front-end performance, he shared what’s to come with a <a href=\"https://wpmovies.dev/\">demo of the Interactivity API</a>, showcasing how it can make transitions, search, and other interactions instant—all with standard WordPress blocks and features.&nbsp;</p>\n\n\n\n<p>Matías concluded with a look at how the Admin redesign will take cues from the Site Editor, eventually allowing users to shape their WordPress Admin experience based on their unique needs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"684\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?resize=1024%2C684&#038;ssl=1\" alt=\"WordPress co-founder Matt Mullenweg speaking at a podium\" class=\"wp-image-16624\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?resize=1024%2C684&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?resize=768%2C513&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">AI and Data Liberation</h2>\n\n\n\n<p>Matt returned to the stage to expand on the future of WordPress, reinforcing his past advice to <em>learn AI deeply</em>. He expressed his excitement about what can be accomplished with the wealth of AI tools available, how contributors are already experimenting with natural language processing and WordPress Playground to create and build.</p>\n\n\n\n<p>Finally, Matt introduced an additional focus for the project in 2024: <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, with the goal to make importing from other platforms into WordPress as frictionless as possible. He spoke about the tendency of content management systems to keep users locked in as part of his motivation to <em>unlock digital barriers</em>. The Data Liberation initiative will work on one-click migration and the export format from WordPress.&nbsp;</p>\n\n\n\n<p>More than just tools, Data Liberation reflects the project’s ethos to allow seamless contributions. With that, Matt invited anyone interested to jump into the action, noting a new <a href=\"https://github.com/wordpress/data-liberation\">Data Liberation GitHub repository</a> and forthcoming <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a> channels as places to get started.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Questions and answers</h2>\n\n\n\n<p>Following the presentation, Matt fielded questions from the live-stream and in-person audiences during an interactive question-and-answer session hosted by <a href=\"https://profiles.wordpress.org/monchomad/\">Jose Ramón Padrón (Moncho)</a>.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/S01uBD2pyQY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Additional questions from the live session will be answered in a follow-up post on <a href=\"https://make.wordpress.org/project\">make.WordPress.org/project</a>. Subscribe to our blog notifications to be sure you don’t miss it. And don’t forget to mark your calendars for next year’s <a href=\"https://asia.wordcamp.org/2024/\">WordCamp Asia</a> (Taipei, Taiwan), <a href=\"https://europe.wordcamp.org/2024/\">WordCamp Europe</a> (Torino, Italy), and WordCamp US (Portland, Oregon, United States).</p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:34.98661%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"720\" data-id=\"16628\" data-link=\"https://wordpress.org/news/?attachment_id=16628\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg\" data-width=\"1280\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"853\" data-id=\"16618\" data-link=\"https://wordpress.org/news/?attachment_id=16618\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg\" data-width=\"1280\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:65.01339%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"853\" data-id=\"16626\" data-link=\"https://wordpress.org/news/?attachment_id=16626\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg\" data-width=\"1280\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:75.87343%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=1800&#038;ssl=1 1800w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=1920&#038;ssl=1 1920w\" alt=\"\" data-height=\"1080\" data-id=\"16632\" data-link=\"https://wordpress.org/news/?attachment_id=16632\" data-url=\"https://wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png\" data-width=\"1920\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:24.12657%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_38-576x1024.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_38-576x1024.jpg?strip=info&#038;w=720&#038;ssl=1 720w\" alt=\"\" data-height=\"1280\" data-id=\"16630\" data-link=\"https://wordpress.org/news/?attachment_id=16630\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_38-576x1024.jpg\" data-width=\"720\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_38-576x1024.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:63.00314%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"853\" data-id=\"16620\" data-link=\"https://wordpress.org/news/?attachment_id=16620\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg\" data-width=\"1280\" src=\"https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:36.99686%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"720\" data-id=\"16619\" data-link=\"https://wordpress.org/news/?attachment_id=16619\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg\" data-width=\"1280\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"720\" data-id=\"16629\" data-link=\"https://wordpress.org/news/?attachment_id=16629\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg\" data-width=\"1280\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div></div></div>\n\n\n\n<p><em><em>Thank you to <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a>, <a href=\'https://profiles.wordpress.org/nilovelez/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nilovelez</a>, <a href=\'https://profiles.wordpress.org/fepr/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>fepr</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, and the many others who made this event and post possible.</em></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WP Briefing: Episode 68: Toward a More Interconnected Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/episode-68-toward-a-more-interconnected-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Dec 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16569\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"In this episode, WordPress Executive Director, Josepha Haden Chomphosy articulates the vision for a collaborative ecosystem where knowledge sharing and contributions to open source tools lead to a more interconnected and empowered web.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2023/12/WPB068.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14552:\"\n<p>In this episode, WordPress Executive Director, Josepha Haden Chomphosy articulates the vision for a collaborative ecosystem where knowledge sharing and contributions to open source tools lead to a more interconnected and empowered web.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word 2022</a></li>\n\n\n\n<li><a href=\"https://thephp.foundation/\">PHP Foundation</a></li>\n\n\n\n<li>Josepha&#8217;s <a href=\"https://make.wordpress.org/project/2022/01/21/big-picture-goals-2022/\">Big Picture Goals 2022</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/\">Gutenberg 17.1</a> has been released and is <a href=\"https://wordpress.org/plugins/gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\">available for download</a>! The latest release includes new enhancements, bug fixes, and continued work on Phase 3 features.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\" target=\"_blank\" rel=\"noreferrer noopener\">Announcing the 2023 Annual Meetup Survey</a> &#8211; The Community team proposed a survey for all meetup members and organizers. Please complete the <a href=\"https://wordpressdotorg.survey.fm/2023-meetup-annual-survey\" target=\"_blank\" rel=\"noreferrer noopener\">Annual Meetup Survey</a>  by January 14, 2024– even if you haven&#8217;t participated in a meetup recently!</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/11/29/request-for-feedback-lesson-handbook-pages/\" target=\"_blank\" rel=\"noreferrer noopener\">Request for feedback: Lesson Handbook pages</a> &#8211; As the Training team progresses towards the 2024 launch of <a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Learning Pathways</a>, they&#8217;re developing a set of content creation guidelines to streamline and scale the process. These guidelines will focus on efficient methods for developing, reviewing, and updating content. To gather input, a <a href=\"https://docs.google.com/document/d/1twvDGmVZsyjBZbi9abiqoA_a2G7O_WNis_iGL2Sccg0/edit#heading=h.srkdcrt4k0v8\">Google Doc</a> has been created where you can share your ideas. Please provide your feedback and comments on this document by Tuesday, December 19, 2023.</li>\n\n\n\n<li><a href=\"https://playground.wordpress.net/\">WordPress Playground</a> makes WordPress instantly accessible for users, learners, extenders, and contributors.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/11/30/embracing-matrix-for-enhanced-communication/\">Embracing Matrix for Enhanced Communication</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16569\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> If you&#8217;re already familiar with the WordPress project, and if you&#8217;re listening to this podcast, I feel like it&#8217;s a safe assumption that you&#8217;re probably also familiar with the fact that we are what&#8217;s considered a free and open source software project. We adhere to the four freedoms of open source. We track bugs in the open, and we believe that knowledge sharing can only improve our products. </p>\n\n\n\n<p>But you might not be aware of the other open source projects that are foundational to ours and otherwise are integral to our commitment to the open web. At last year&#8217;s State of the Word, Matt mentioned that one of the coolest things about being a plugin or theme author in WordPress is that you get to run your open source project on the same infrastructure that WordPress runs on. So, no matter whether you have five installs or five thousand, you&#8217;re getting the benefits of our bug trackers, messaging, and network of project sites. But beyond those, which are, of course, near and dear to us, we also support projects like PHP and its foundation. Openverse and its founding organization Creative Commons, and of course, the two that we&#8217;re hearing a lot about this year and next, Playground and Matrix.</p>\n\n\n\n<p>[00:01:52] <strong>Josepha:</strong> That&#8217;s a lot of projects and not even a comprehensive list. And honestly, it can seem, I don&#8217;t know, a little weird. Like, we&#8217;re a FOSS CMS, right? You probably know why we contribute back to PHP. It&#8217;s the same reason we ask people to contribute to WordPress. But why are we giving so much time to a media search engine, or a Web Assembly implementation, or even a messaging protocol?</p>\n\n\n\n<p>At first glance, there are, of course, a lot of quick and easy answers. For instance, like, open source is open source. Any open source contribution is going to be a good contribution. All open source in the world increases good and freedom in the world. Like, open source is open source. Makes sense, right?</p>\n\n\n\n<p>Another quick and easy answer is, you know, they&#8217;re part of us. And that&#8217;s true, definitely, for PHP, like, they&#8217;re part of us, and so we should be contributing back to them. Because we rely on them so much. And then a third quick and easy answer is that we, as the biggest open source CMS on the planet, basically, we can, spare a lending hand. We can offer a little bit of help to those around us.&nbsp;</p>\n\n\n\n<p>[00:03:03] <strong>Josepha:</strong> And those are all true. I don&#8217;t think that anyone would disagree with any of that. But the thing that ties it all together for me is something that&#8217;s a little harder to see. In the 2022 goals that I posted, I said that my second goal for our year was to support open source alternatives for all site-building necessities.</p>\n\n\n\n<p>At the time, I was primarily talking about Openverse and the directory of photos that was being created as a CC-first source. But that also applies to all of our directories. It did then, just as it does now. And Trac, and our vast network of WordPress sites. All the tools we use in order to collaborate with, and lead for, and learn from each other.</p>\n\n\n\n<p>I want us to be able to do everything it takes to build an online presence using open source tools and methods because WordPress is just a glorious little microcosm of the interconnected web. It reminds me of this art installation I had the privilege of experiencing. It&#8217;s called Meow Wolf. I went to the one in Denver, but there are a few different installations across the U.S.&nbsp;The one that I went to is this massive art installation, and it is designed to be interactive, but it wasn&#8217;t until you started sharing your experience sharing your knowledge with other people that you realized it was also collaborative, a set of buttons you pushed in one room would cause a light show in some other room.</p>\n\n\n\n<p>[00:04:34] <strong>Josepha:</strong> So you were enhancing the experience of strangers in some completely disconnected room to yours, and they couldn&#8217;t distinguish it from an automation or something they did, or just plain old magic. And that&#8217;s what we&#8217;re doing by supporting these other open source tools. Yes, every new open source contribution results in more freedom in the world. Yes, we owe support to the components that got us where we are today. And yes, we absolutely can and should pay it forward. But more importantly than all that, we&#8217;re creating the opportunity for new interactions, new brilliance, and new defenders of the open web every time that we work on these open source products.</p>\n\n\n\n<p>[00:05:20] <strong>Josepha:</strong> And it doesn&#8217;t matter if we will ever see any of those people. And it doesn&#8217;t matter if they will ever thank us. What matters is that we see that knowledge like this is worth preserving and worth sharing. Because knowledge shared, information shared is like light. The more you share it, the more there is.</p>\n\n\n\n<p>And I want you to be able to take that sharing and use it to light the world. I want you to be able to go out and tell people how open source has changed your life, how WordPress has opened doors for you, or how much these tools have empowered your clients. I want you to remember why you came to WordPress in the first place, and I need you to hear me when I say that I need you here in WordPress today because every little ripple of good that we create makes the world a little more good.</p>\n\n\n\n<p>[00:06:12] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:06:20] <strong>Josepha:</strong> (SLBT) And now, my friends, that brings us to our time for the small list of big things. I&#8217;ve got a kind of a big list because I always kind of have a big list anymore, but the first thing on my list is Gutenberg 17.1. That has been released and is available for download. It includes several new enhancements, loads of bug fixes, and continues that work on phase three features that we are starting to see come through. If you don&#8217;t have it already, go out and grab it, test it, break it, and tell us what you tested and how it broke things.&nbsp;</p>\n\n\n\n<p>[00:06:52] <strong>Josepha:</strong> The second thing on my small list of big things is that there is currently an annual meetup survey out. So, we&#8217;ve had an increase in our meetup events, and certainly an increase in the active number of meetup groups that we have, but the community team is proposing a unified survey for all meetup members and organizers, and if you haven&#8217;t participated in it yet go and fill it out. You don&#8217;t have to have actually gone to a meetup event recently in order to take it, but, you know, it might be helpful. Either way, you have until January 14, 2024, to fill that out.</p>\n\n\n\n<p>[00:07:30] <strong>Josepha:</strong> The third thing on my small list of big things is a request for feedback. The training team is working toward launching Learning Pathways in 2024. They&#8217;re looking to create a new set of content creation guidelines that enables the learning pathways to scale with a straightforward process for developing, reviewing, and updating that content. There&#8217;s a Google doc for you where you can contribute your ideas, and that doc will be open for feedback through this week and into next week. I believe it closes on Tuesday, the 19th of December, 2023.</p>\n\n\n\n<p>[00:08:04] <strong>Josepha:</strong> And then the final thing on my small list of big things is actually, it&#8217;s a dual call-in. I already said with my first one about the Gutenberg plugin: get in there and test it and break it, and then tell us how it broke and what you were doing when you were testing it and broke it. And I encourage you to do that also for Matrix and Playground.</p>\n\n\n\n<p>So Playground has been a really big deal all year long. It was a big deal at the end of last year. It showed up for us in November 2022 and has been really just growing in surprising ways all the way through 2023. So if you have not yet seen it, you haven&#8217;t gotten your hands on it yet, it&#8217;s a WordPress installation that is loaded entirely in the browser, totally server-free, and we&#8217;re looking at a couple of new implementations that make it easier for users who are trying to, like, kick the tires of WordPress before they decide, and developers who are wanting to test new pull requests and things like that.</p>\n\n\n\n<p>So keep an eye out if it sounds interesting; it is interesting. And wander over and figure out how that&#8217;s working. And the other thing in that last call for collective testing is Matrix. So Matrix is an open source federated messaging protocol, and like so many technology projects out there at the moment, we are trying to make sure that we are preparing ourselves for the future arrival of Web 3 and all of the things that are coming along with current advancements in federated everything and AI and etc., etc.</p>\n\n\n\n<p>And so, Matrix is an open source messaging protocol. There are a lot of different ways to get connected. I&#8217;ll share a link to one of the posts in the show notes over on WordPress.org/news. But if you&#8217;re interested in learning a bit about it and you don&#8217;t really want to like figure out what sort of client is comfortable for you to use. There&#8217;s also on-site chat implementations for, I want to say, like 10 or 12 of our largest or most regularly meeting groups that we have. You can go to parts of the website like make.WordPress.org/core/chat and check those out. If you have a WordPress.org account, then you can have access to that on-site chat, and that is it.</p>\n\n\n\n<p>That&#8217;s the whole low barrier to entryway of figuring that out with us. Come and break stuff with us, everyone, and tell us how to make it better.&nbsp;</p>\n\n\n\n<p>[00:10:33] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. Thank you for tuning in today for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p>[00:11:00] (Music outro)&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16569\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – November 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2023/12/the-month-in-wordpress-november-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Dec 2023 11:20:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16575\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:251:\"November is usually a busy month for the WordPress project, and this year is no different. Following the empowering release of WordPress 6.4, the energy continues to build, setting the stage for the anticipated State of the Word and upcoming projects.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11827:\"\n<p>November is usually a busy month for the WordPress project, and this year is no different. Following the empowering release of WordPress 6.4, the energy continues to build, setting the stage for the anticipated State of the Word and upcoming projects.&nbsp;</p>\n\n\n\n<p>Read on for all the exciting updates that marked the past month.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Get ready for State of the Word</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1024%2C683&#038;ssl=1\" alt=\"State of the Word 2023\" class=\"wp-image-16438\" style=\"object-fit:cover\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Mark your calendars—State of the Word 2023 is approaching fast. In this annual keynote, WordPress co-founder Matt Mullenweg celebrates the progress of the open source project and offers a glimpse into its future.</p>\n\n\n\n<p>For the first time in WordPress history, the event will be held outside North America, in the vibrant city of <a href=\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\">Madrid, Spain, on December 11, 2023</a>.</p>\n\n\n\n<p>If you’re unable to attend the State of the Word in person, you can watch it live on the <a href=\"https://www.youtube.com/live/1MwT9EEkguE?si=TYwAe5qnKA3DlRMX\">WordPress YouTube channel</a> or join one of the many community-led watch parties. <a href=\"https://wordpress.org/state-of-the-word\">Find one near you</a> or <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/state-of-the-word-watch-parties/\">organize one</a>.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-3 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https://wordpress.org/state-of-the-word/\">Learn more about State of the Word 2023</a></div>\n</div>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Meet Twenty Twenty-Four</h2>\n\n\n\n<p>Along with the release of <a href=\"https://wordpress.org/download/releases/6-4/\">WordPress 6.4</a> “Shirley,” the new default <a href=\"https://wordpress.org/news/2023/11/introducing-twenty-twenty-four/\">Twenty Twenty-Four theme was introduced</a>.</p>\n\n\n\n<p>This theme breaks away from the tradition of previous default themes that focused on a specific topic or style. Instead, Twenty Twenty-Four was created to fit any website and explore different use cases for entrepreneurs, artists, and writers.</p>\n\n\n\n<p>You’ll find more than 35 beautiful patterns, including full-page patterns for templates like homepage, search, and more. Twenty Twenty-Four boasts the latest site editing capabilities and a sophisticated aesthetic inspired by contemporary design trends.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https://playground.wordpress.net/?theme=twentytwentyfour\">Check out Twenty Twenty-Four now</a></div>\n</div>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/11/10/whats-new-in-gutenberg-17-0-9-november/\">Gutenberg 17.0</a> was released on November 9, 2023. It introduced improvements to the Command Palette, an alternative implementation of the DropdownMenu component, additional visual cues for LinkControl, and various accessibility and performance iterations.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/\">Gutenberg 17.1</a> shipped on November 22, 2023. In addition to several accessibility and writing flow enhancements, this version brought a new block spacing control in the Quote block.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/11/30/embracing-matrix-for-enhanced-communication/\">WordPress is switching to Matrix</a> in replacement of the Making WordPress Slack. The move stems from the project&#8217;s commitment to implementing a new chat system aligned with WordPress&#8217;s open source values. If you haven&#8217;t already, now is the time to explore Matrix and share your questions.</li>\n\n\n\n<li>With phishing scams on the rise, the WordPress Security team is actively monitoring the current threat and has posted <a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\">an advisory to help you protect your site</a>.</li>\n\n\n\n<li>The Plugin Review team is now <a href=\"https://make.wordpress.org/plugins/2023/12/02/join-the-plugin-review-team/\">reopening applications to join their team</a>. They’re looking for three new members who can improve the state of the plugin review queue and help create a diverse and inclusive team.</li>\n\n\n\n<li>Over the past few months, contributors have been working on <a href=\"https://make.wordpress.org/meta/2023/11/22/redesigning-developer-resources-and-a-call-for-testing/\">redesigning the WordPress.org Developer Resources</a> section.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/11/06/proposal-2024-major-release-timing/\">This post</a> outlines proposed dates for major WordPress releases in 2024.</li>\n\n\n\n<li>The Meta team shared an <a href=\"https://make.wordpress.org/meta/2023/11/22/plugin-directory-preview-button-revisited/\">improved version of the plugin preview feature</a>. This version builds on feedback and allows plugin developers to safely test the preview experience for their plugins in a <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> environment.</li>\n\n\n\n<li>Polyglots and Meta contributors introduced <a href=\"https://make.wordpress.org/meta/2023/11/29/create-tours-for-make-p2s/\">a new plugin called Tour</a>, which enables the creation of tours to guide contributors through a Make WordPress blog.</li>\n\n\n\n<li>Are you looking to broaden your knowledge and improve your WordPress skills? See <a href=\"https://make.wordpress.org/updates/2023/12/01/whats-new-on-learn-wordpress-in-november-2023/\">what’s new on Learn WordPress in November 2023</a>.</li>\n\n\n\n<li>The latest edition of People of WordPress features back-end web developer <a href=\"https://wordpress.org/news/2023/12/people-of-wordpress-artemy-kaydash/\">Artemy Kaydash</a> from Ukraine.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Requests for feedback &amp; testing</h2>\n\n\n\n<ul>\n<li>The Community team announced the <a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\">2023 Annual Meetup Survey</a>. Both event attendees and organizers are encouraged to provide feedback in this 5-minute survey to help strengthen WordPress meetups in the future.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/11/23/mobile-team-update-november-22nd/\">Version 23.7</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events</h2>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f9-1f1fc.png\" alt=\"🇹🇼\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Asia opened the <a href=\"https://asia.wordcamp.org/2024/the-third-batch-of-tickets-on-sale-now/\">third round of ticket sales</a> and announced that <a href=\"https://asia.wordcamp.org/2024/announcing-our-first-speaker-matt-mullenweg/\">their first speaker is WordPress co-founder Matt Mullenweg</a>. The conference will be held in Taipei, Taiwan, on March 7-9, 2024.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"🇪🇺\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Europe <a href=\"https://europe.wordcamp.org/2024/call-for-sponsors/\">opened its call for sponsors</a> and <a href=\"https://europe.wordcamp.org/2024/speakers/call-for-speakers/\">speakers</a> for their conference slated to take place in Torino, Italy, on June 13-15, 2024.&nbsp;</li>\n\n\n\n<li>Don’t miss these upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://ahmedabad.wordcamp.org/2023/\">WordCamp Ahmedabad 2023</a>, India on December 9, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f0.png\" alt=\"🇵🇰\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://lahore.wordcamp.org/2023/\">WordCamp Lahore 2023</a>, Pakistan on December 9-10, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em><strong>Have a story we should include in the next issue of The Month in WordPress? Fill out </strong></em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><em><strong> to let us know.</strong></em></p>\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/bernard0omnisend/\">Bernard Meyer</a> for contributing to this edition of The Month in WordPress.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox.</p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline is-style-split wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p >\n						<a href=\"https://wordpress.org/news/?post_type=post&#038;p=16575\" style=\"text-decoration: none; font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px; background-color: #113AF5; color: #FFFFFF;\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress 6.4.2 Maintenance &amp; Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2023/12/wordpress-6-4-2-maintenance-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Dec 2023 17:03:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16562\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:352:\"WordPress 6.4.2 is now available! This minor release features 7 bug fixes in Core. The fixes include a bug fix for an issue causing stylesheet and theme directories to sometimes return incorrect results. This release also features one security fix. Because this is a security release, it is recommended that you update your sites immediately. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6255:\"\n<h2 class=\"wp-block-heading\">WordPress 6.4.2 is now available!</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.4.2&amp;groupdesc=1&amp;group=resolution&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;col=keywords&amp;order=priority\">7 bug fixes</a> in Core. The fixes include a bug fix for an issue causing stylesheet and theme directories to sometimes return incorrect results.</p>\n\n\n\n<p>This release also features one security fix. Because this is a security release, <strong>it is recommended that you update your sites immediately</strong><strong>.</strong></p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.4.2.zip\">download WordPress 6.4.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>WordPress 6.4.2 is a short-cycle release. The next major release will be version 6.5 released in early 2024.</p>\n\n\n\n<p>For more information on this release, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-4-2/\">HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p>The security team addressed the following vulnerability in this release.</p>\n\n\n\n<ul>\n<li>A Remote Code Execution vulnerability that is not directly exploitable in core, however the security team feels that there is a potential for high severity when combined with some plugins, especially in multisite installs.</li>\n</ul>\n\n\n\n<p>To help the security team and WordPressers around the world, you are encouraged to <a href=\"https://hackerone.com/wordpress?type=team\">responsibly report vulnerabilities</a>. This allows vulnerabilities to be fixed in future releases.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>.</p>\n\n\n\n<p>WordPress 6.4.2 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/atachibana\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/angelasjin\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/Bernhard%20Reiter\">bernhard-reiter</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/coreyw\">Corey Worrell</a>, <a href=\"https://profiles.wordpress.org/crstauf\">crstauf</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/kebbet\">Erik</a>, <a href=\"https://profiles.wordpress.org/gaambo\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/priethor\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/kharisblank\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/krupalpanchal\">Krupal Panchal</a>, <a href=\"https://profiles.wordpress.org/kdowns\">Kylen Downs</a>, <a href=\"https://profiles.wordpress.org/meta4\">meta4</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/partyfrikadelle\">partyfrikadelle</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/NekoJonez\">Pieterjan Deneys</a>, <a href=\"https://profiles.wordpress.org/rawrly\">rawrly</a>, <a href=\"https://profiles.wordpress.org/rebasaurus\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/tutorials/faq-for-new-contributors/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p>As a final reminder, The WordPress Security Team will never email you requesting that you install a plugin or theme on your site, and will never ask for an administrator username and password. <a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\">Please stay vigilant against phishing attacks</a>.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/angelasjin/\">@angelasjin</a> and <a href=\"https://wordpress.slack.com/team/U02SVSW3U\">@desrosj</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Alert: WordPress Security Team Impersonation Scams\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Dec 2023 23:13:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16547\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:368:\"The WordPress Security Team is aware of multiple ongoing phishing scams impersonating both the “WordPress team” and the “WordPress Security Team“ in an attempt to convince administrators to install a plugin on their website which contains malware. The WordPress Security Team will never email you requesting that you install a plugin or theme on your [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4939:\"\n<p>The WordPress Security Team is aware of multiple ongoing phishing scams impersonating both the “WordPress team” and the “WordPress Security Team“ in an attempt to convince administrators to install a plugin on their website which contains malware.</p>\n\n\n\n<p><strong>The WordPress Security Team will never email you requesting that you install a plugin or theme on your site, and will never ask for an administrator username and password.</strong></p>\n\n\n\n<p>If you receive an unsolicited email claiming to be from WordPress with instructions similar to those described above, please disregard the emails and indicate that the email is a scam to your email provider.</p>\n\n\n\n<p>These emails link to a phishing site that appears to be the WordPress plugin repository on a domain that is not owned by WordPress or an associated entity. Both <a href=\"https://patchstack.com/articles/fake-cve-phishing-campaign-tricks-wordpress-users-to-install-malware/\">Patchstack</a> and <a href=\"https://www.wordfence.com/blog/2023/12/psa-fake-cve-2023-45124-phishing-scam-tricks-users-into-installing-backdoor-plugin/\">Wordfence</a> have written articles that go in to further detail.</p>\n\n\n\n<p>Official emails from the WordPress project will always:</p>\n\n\n\n<ul>\n<li>Come from a <code>@wordpress.org</code> or <code>@wordpress.net</code> domain.</li>\n\n\n\n<li>Should also say “Signed by: wordpress.org” in the email details section.</li>\n</ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"450\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?resize=1024%2C450&#038;ssl=1\" alt=\"Screenshot of email sent by a WordPress.org email account. The details include &quot;mailed-by wordpress.org&quot; and &quot;signed-by wordpress.org&quot;.\" class=\"wp-image-16548\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?resize=1024%2C450&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?resize=300%2C132&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?resize=768%2C337&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?w=1202&amp;ssl=1 1202w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The WordPress Security Team will only communicate with WordPress users in the following locations:</p>\n\n\n\n<ul>\n<li>the Making WordPress Secure blog at <a href=\"https://make.wordpress.org/security\">make.wordpress.org/security</a></li>\n\n\n\n<li>the main WordPress News site at <a href=\"https://wordpress.org/news\">wordpress.org/news</a></li>\n</ul>\n\n\n\n<p>The WordPress Plugin team will never communicate directly with a plugin’s users but may email plugin support staff, owners and contributors. These emails will be sent from <a href=\"mailto:plugins@wordpress.org\">plugins@wordpress.org</a> and be signed as indicated above.</p>\n\n\n\n<p>The official WordPress plugin repository is located at <a href=\"https://wordpress.org/plugins\">wordpress.org/plugins</a> with internationalized versions on subdomains, such as <a href=\"https://fr.wordpress.org/plugins\">fr.wordpress.org/plugins</a>, <a href=\"https://en-au.wordpress.org/plugins\">en-au.wordpress.org/plugins</a>, etc. A subdomain may contain a hyphen, however a dot will always appear before wordpress.org.</p>\n\n\n\n<p>A WordPress site’s administrators can also access the plugin repository via the plugins menu in the WordPress dashboard.</p>\n\n\n\n<p>As WordPress is the most used CMS, these types of phishing scams will happen occasionally. Please be vigilant for unexpected emails asking you to install a theme, plugin or linking to a login form.</p>\n\n\n\n<p>The Scamwatch website has some tips for <a href=\"https://www.scamwatch.gov.au/protect-yourself/ways-to-spot-and-avoid-scams\">identifying emails and text messages that are likely to be scams</a>.</p>\n\n\n\n<p>As always, if you believe that you have discovered a security vulnerability in WordPress, please <a href=\"https://wordpress.org/about/security/\">follow the project’s Security policies</a> by privately and responsibly disclosing the issue directly to the WordPress Security team through the project’s official <a href=\"https://hackerone.com/wordpress\">HackerOne page</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thank you <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/otto/\">Otto</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, and <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> for their collaboration on and review of this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16547\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"People of WordPress: Artemy Kaydash\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2023/12/people-of-wordpress-artemy-kaydash/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Dec 2023 14:28:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16470\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"The latest People of WordPress features back-end web developer Artemy Kaydash, from Ukraine. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14009:\"\n<p class=\"has-darker-grey-color has-off-white-2-background-color has-text-color has-background has-link-color wp-elements-9b663d0d5861b05380bcaca160ef01c8\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--60)\">The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</p>\n\n\n\n<p>Artemy Kaydash discovered that working with WordPress has opened possibilities greater than he imagined. For him, the &#8220;active, responsive, and enthusiastic community&#8221; makes the software fresh and alive with many ways to experiment and practice adapting it for clients&#8217; needs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"640\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-featured-img.jpg?resize=1024%2C640&#038;ssl=1\" alt=\"Artemy Kaydash stood in front of water\" class=\"wp-image-16242\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-featured-img.jpg?resize=1024%2C640&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-featured-img.jpg?resize=300%2C188&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-featured-img.jpg?resize=768%2C480&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-featured-img.jpg?resize=1536%2C960&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-featured-img.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Back-end development with WordPress has proven to be a rewarding career choice for Artemy. He believes developers can inspire others to choose the same career path by sharing the opportunities and satisfaction of working with the content management system (CMS).</p>\n\n\n\n<h2 class=\"wp-block-heading\">The adventure of learning WordPress</h2>\n\n\n\n<p>Learning new software can be daunting, but Artemy realized that learning with and from inspiring people makes a real difference: &#8220;I vividly remember my first WordPress experience. I was confused, had many questions, and was desperately trying to understand how to do the most simple things.&#8221;</p>\n\n\n\n<p>Working initially in a small agency in Ukraine, Artemy had basic HTML/CSS skills and had just started learning PHP development. His senior colleagues helped him take his first steps in web development and were patient with his questions.</p>\n\n\n\n<p>The agency director later gave him the responsibility of creating a WordPress website for a friend. He recalls being nervous, as he was not yet confident in his PHP skills. Colleagues reassured Artemy as he worked, and he went on to build a career in international web development.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-at-a-cafe.jpg?resize=640%2C1024&#038;ssl=1\" alt=\"Artemy reflecting on his learning as he looks outside of a window in a cafe\n\" class=\"wp-image-16241\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-at-a-cafe.jpg?resize=640%2C1024&amp;ssl=1 640w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-at-a-cafe.jpg?resize=188%2C300&amp;ssl=1 188w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-at-a-cafe.jpg?resize=768%2C1229&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-at-a-cafe.jpg?resize=960%2C1536&amp;ssl=1 960w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-at-a-cafe.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 640px) 100vw, 640px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Like many others, Artemy found that experimenting with WordPress intrigued him, and he wanted to learn more about it. Looking back, he said: &#8220;The first theme I built was awful. It was composed of my own creative solutions and code snippets I found in searches. It had lots of bugs, but as people say, &#8216;the first pancake is always a bit tricky.\'&#8221;</p>\n\n\n\n<p>Artemy is a great believer in reflective learning, going back and reviewing a piece of development. He said: &#8220;No matter how bad it was, it was my first experience, and I learned a lot about the basic concepts of WordPress. That&#8217;s why I believe that learning by doing is the best way to learn something new.&#8221;</p>\n\n\n\n<p>He added: &#8220;My advice to others is don&#8217;t be afraid of doing something awful when you create something for the first time. It&#8217;s okay. We&#8217;ve all been through that initial phase.&#8221;</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-winter-lake.jpg?resize=640%2C1024&#038;ssl=1\" alt=\"Artemy looking across a lake in the winter time\" class=\"wp-image-16245\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-winter-lake.jpg?resize=640%2C1024&amp;ssl=1 640w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-winter-lake.jpg?resize=188%2C300&amp;ssl=1 188w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-winter-lake.jpg?resize=768%2C1229&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-winter-lake.jpg?resize=960%2C1536&amp;ssl=1 960w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-winter-lake.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 640px) 100vw, 640px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>&#8220;It&#8217;s nice to have a mentor when you learn something new. Luckily, you don&#8217;t need a person sitting next to you anymore. All of us have got the best mentor possible: the Internet. If you don&#8217;t know how to do something, then search for how other people have done the same thing,&#8221; Artemy said.</p>\n\n\n\n<p>&#8220;No wonder some say that one of the most required skills of every developer is the willingness to learn and to know how to search for information. This is one of the reasons WordPress is one of the best options for beginners. Now there is so much more information and help available to learn, more than there was when I first began.&#8221;</p>\n\n\n\n<p>Artemy feels that the willingness of others to share their experience and problem-solve together is a big strength of the WordPress community and also the reason for its ongoing success: &#8220;When you stumble upon a problem, there&#8217;s a high probability that someone already asked the same question on one of the forums or websites. If you&#8217;re lucky enough, someone already wrote a post about your problem with a great explanation of how to solve it with examples and code snippets.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is for beginners and long-term careers</h2>\n\n\n\n<p>WordPress is not a software with strict limits, and it can be adapted and used in many different ways by beginners and advanced developers.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I like to learn something that excites me and makes my brain work. With WordPress, I am able to find interesting and creative solutions.</p>\n</blockquote>\n\n\n\n<p>There are so many new things to learn that Artemy decided to stay in web development, and he sees it as a perfect channel for his creativity and abstract thinking. It may seem very different from his initial education in literature, sociology, and philosophy. Still, he has found those studies sharpened his skills for understanding, communicating, and working with clients on creative solutions to challenges.</p>\n\n\n\n<p>Artemy enjoys the client side of his work and interacting with different studios and agencies. His international work allows him to use WordPress and WooCommerce in many different environments, both large and small, which keeps the software exciting. He said: &#8220;I believe if you want to learn something you have to practice using it a lot. Open source is a big advantage in this.&#8221; Artemy found that the more he experiences various sites and clients, the more flexible and helpful he can be in helping them find the right solution.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Inspired to help others use WordPress</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"639\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-from-pier.jpg?resize=1024%2C639&#038;ssl=1\" alt=\"Artemy standing on the pier\" class=\"wp-image-16243\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-from-pier.jpg?resize=1024%2C639&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-from-pier.jpg?resize=300%2C187&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-from-pier.jpg?resize=768%2C480&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-from-pier.jpg?resize=1536%2C959&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-from-pier.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>A willingness to share and grow skills together is what open source environments champion. This collaborative environment inspired Artemy to focus on using WordPress professionally and to share what he learned. &#8220;There is a lot of free code and snippets available for anyone to use. I have been grateful to all of the people who have written answers on sites like Stack Overflow, written blog posts, created free plugins, and other helpful materials. It made me want to help others when I was able to.&#8221;</p>\n\n\n\n<p>In August 2021, Artemy began blogging about using WordPress:&nbsp;&#8220;I like to think that this way I am repaying my learning debt for all the content I have consumed. It makes me happy to see that people really read my posts, and it helps them solve their WordPress problems. So, today, when I face a problem and can&#8217;t find the solution, I think it might be a great idea for a new post!&#8221;</p>\n\n\n\n<p>He also likes to keep up with how other people use WordPress by visiting Stack Overflow, WordPress Facebook groups, and other communities where people ask questions almost daily. He helps where he can in those channels or gains inspiration for new content. He believes&nbsp;<a href=\"https://learn.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">Learn.WordPress.org</a>&nbsp;and the&nbsp;<a href=\"https://developer.wordpress.org/news/\" target=\"_blank\" rel=\"noreferrer noopener\">Developer Blog</a>&nbsp;are valuable resources for beginners and more advanced developers too. As those resources grow, they will increasingly become a place where others can share their development knowledge and use cases.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Every community is a two-way street</h2>\n\n\n\n<p>Artemy encourages everyone to become a part of the WordPress community. “There are a lot of opportunities for everyone,” he said. “You can help with the translation of your favorite plugins or themes. You can create your own plugin or become a contributor to an already existing open source plugin. You can write tutorials. You can write reviews helping other people to choose the best option for them. You can help people on support forums.”</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Every contribution, big or small, makes WordPress better. It is a great experience to be part of it.</p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these open source contributor stories and continue to grow the community.&nbsp;Meet more WordPressers in the&nbsp;<a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To discover more about how to use WordPress, and start your own story, visit&nbsp;<a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/kayart/\" target=\"_blank\" rel=\"noreferrer noopener\">Artemy Kaydash</a> for sharing about his adventures in WordPress, and to <a href=\"https://profiles.wordpress.org/webcommsat/\" target=\"_blank\" rel=\"noreferrer noopener\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" target=\"_blank\" rel=\"noreferrer noopener\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/meher/\" target=\"_blank\" rel=\"noreferrer noopener\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/marks99/\" target=\"_blank\" rel=\"noreferrer noopener\">Mark Smallman</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\" target=\"_blank\" rel=\"noreferrer noopener\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" target=\"_blank\" rel=\"noreferrer noopener\">Chloe Bringmann</a>, and <a href=\"https://profiles.wordpress.org/marybaum/\" target=\"_blank\" rel=\"noreferrer noopener\">Mary Baum</a> for interviews, editorial, images, and reviews. </em></p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WP Briefing: Episode 67: Openverse &amp; Photo Directory Rewind\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/11/openverse-photo-directory-rewind/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Nov 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16454\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:265:\"WordPress Executive Director, Josepha Haden Chomphosy, returns to a recent episode of the WordPress Briefing, which discussed two resources for openly licensed media in the WordPress project– Openverse and Photo Directory– and how they differ from one another! \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:50:\"https://wordpress.org/news/files/2023/11/WP067.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11659:\"\n<p>WordPress Executive Director, Josepha Haden Chomphosy, returns to a recent episode of the WordPress Briefing, which discussed two resources for openly licensed media in the WordPress project– Openverse and Photo Directory– and how they differ from one another! </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/photos/\">Photo Directory Make Page</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/photos/submit/\">Submit a Photo to the Photo Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/\">Openverse Make Page</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/44496\">Openverse Call for Contributions: Block Editor Integration</a> (now closed)</li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\" target=\"_blank\" rel=\"noreferrer noopener\">State of the Word</a>&nbsp;&#8211; The countdown is on for this year&#8217;s State of the Word! If you missed the initial announcement a few weeks ago, you&#8217;ll want to mark your calendars for December 11, 2023. State of the Word will include a Q&amp;A session. If you want to participate, you can send your question to&nbsp;<a href=\"mailto:ask-matt@wordcamp.org\" target=\"_blank\" rel=\"noreferrer noopener\">ask-matt@wordcamp.org</a>&nbsp;or ask during the event via the Q&amp;A app Slido. A QR code for your submission will be provided during the event live stream.</li>\n\n\n\n<li>WordCamp Asia has <a href=\"https://asia.wordcamp.org/2024/call-for-sponsors-extended-to-november-30th/\" target=\"_blank\" rel=\"noreferrer noopener\">extended their call for sponsors</a>, slated to take place in Taipei, Taiwan, March 7-9, 2024. The new deadline has been extended to November 30, 2023.</li>\n\n\n\n<li>The Documentation Team created a new GitHub repo for end-user documentation and its translations to all locales. More info about this can be found&nbsp;<a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\" target=\"_blank\" rel=\"noreferrer noopener\">here</a>.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16454\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Today, we&#8217;re going to take a listen to last year&#8217;s episode about Openverse and the Photo Directory. A lot has changed in that project, well in, in both of those projects since then. For instance, the Photo Directory just passed a 10,000 photo milestone. And Openverse, in the past year, got their own URL and have been hard at work strengthening the reliability of their APIs.</p>\n\n\n\n<p>[00:01:03] <strong>Josepha:</strong> But for some folks, it might still be a little unclear just what the difference is between these two projects. So let&#8217;s take a listen, and don&#8217;t forget to catch the updated small list of big things at the end of the episode.&nbsp;</p>\n\n\n\n<p>[00:01:13] (Music interlude)</p>\n\n\n\n<p>[00:01:21] <strong>Josepha:</strong> About 18 months ago, the Openverse project became part of the WordPress open source project, and at roughly the same time, we also welcomed in the Photo Directory.</p>\n\n\n\n<p>Since that time, we&#8217;ve seen growth of teams supporting both of these initiatives. But if you&#8217;re not involved in the day-to-day, it can be hard to know how those two things fit together or if they fit together at all.</p>\n\n\n\n<p>[00:01:41] <strong>Josepha:</strong> Today, let&#8217;s take a brief tour of those two projects and why they came to be.&nbsp;In my timeline, work on the Photo Directory started before the work on Openverse, so that&#8217;s where we&#8217;ll start.</p>\n\n\n\n<p>For as long as I can remember, the WordPress community has raised the need for WordPress-first ways to have and host GPL-compatible photos for use in themes, site builds, and marketing efforts as a whole. As recently as 2016, that was still coming up as a question at various flagship events and among the career photographers that contribute their time to WordPress.</p>\n\n\n\n<p>[00:02:13] <strong>Josepha:</strong> So, in 2017 and 2018, as attention started to turn toward rebuilding the CMS using blocks, it dropped down the list of priority items. But it never really went away as a thing that people were hoping we could do for the project as a whole. So in 2019, it was becoming clear that having open source-first tools of all varieties for people whose businesses were built on our software would help broaden the availability of the open source freedoms we believe in.</p>\n\n\n\n<p>This began the work on the Photo Directory with the intention of providing a GPL-friendly, community-driven repository of images. It has since launched, and we have photos in it now. We have a whole team around it. It&#8217;s wonderful. But that is how that all kind of came to be.&nbsp;</p>\n\n\n\n<p>[00:02:58] <strong>Josepha:</strong> Openverse, on the other hand, was launched as CC Search in 2019 with the laudable mandate to increase the discoverability and accessibility of open access media.</p>\n\n\n\n<p>Late in 2020, while work on the Photo Directory was underway, Matt shared with me that the team was looking for a new project home. When I first met with them, they shared an overview of the product, which they shorthanded as an open source search engine that searches openly licensed images. We were working on a repo of openly licensed images, so clearly, this was all written in the stars. And so you might be asking yourself at this point, great, how does it work together?</p>\n\n\n\n<p>I think for most of us, the timeline there kind of covers the question of what is the difference between these two things.&nbsp;</p>\n\n\n\n<p>But because I never know which of you will want to strike up a conversation about open source on an elevator, I&#8217;ve also got the elevator pitch version as well.&nbsp;</p>\n\n\n\n<p>[00:03:52] <strong>Josepha:</strong> Openverse is an open source search engine that searches, indexes, and aggregates copy left media from across the web using sources such as WordPress&#8217;s Photo Directory, Flickr&#8217;s CC Tagged Media, and Wikimedia, to name just a few.&nbsp;</p>\n\n\n\n<p>Another key difference between the Photo Directory and Openverse is that in order to contribute to the Photo Directory, now that it&#8217;s all built, that&#8217;s mostly done by submitting photos or reviewing photos. So, you don&#8217;t really need to be a developer to join in.&nbsp;</p>\n\n\n\n<p>Openverse not only is a developer-centric contribution opportunity, but it also uses a different tech stack than WordPress as a whole. So, it&#8217;s a good place for folks to go if they&#8217;re looking to broaden their horizons.</p>\n\n\n\n<p>[00:04:37] <strong>Josepha:</strong> So that&#8217;s your elevator pitch of what is Openverse and how does it use the Photo Directory.&nbsp;</p>\n\n\n\n<p>You have a couple of ways that you can get involved with these two projects. For the Photo Directory, as I mentioned at the start, you can always contribute photos, and they could always use more photo contributions.</p>\n\n\n\n<p>I&#8217;ll include a link to the submission guidelines in the show notes below, and as I mentioned, it is a no-code way to give back to the WordPress project. So, no code is required, no development environments, no testing skills. The Photo Directory team also could always use more contributors to help with the moderating of photo submissions.</p>\n\n\n\n<p>And so I&#8217;ll link to their making WordPress page in the show notes as well so that you can get started there.&nbsp;</p>\n\n\n\n<p>[00:05:22] <strong>Josepha:</strong> And as I mentioned before, Openverse is an aggregator, so it doesn&#8217;t host any media itself, but it is always accepting suggestions for new GPL-compatible media providers. I&#8217;ll link the area where you can leave suggestions in the show notes as well.</p>\n\n\n\n<p>And if you are more code-inclined, there&#8217;s an open issue for adding Openverse browsing to the block editor right now.&nbsp;&nbsp;</p>\n\n\n\n<p>So I&#8217;ll link that issue in the show notes in case you thought to yourself, gosh, that sounds like my most favorite thing to do. That is where you can go.&nbsp;</p>\n\n\n\n<p>[00:05:53] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:06:01] <strong>Josepha:</strong> And that brings us now to our November 2023 small list of big things.</p>\n\n\n\n<p>[00:06:07] <strong>Josepha:</strong> The first thing that&#8217;s on the small list of big things this week is that the countdown is on for this year&#8217;s State of the Word. If you missed the initial announcement a few weeks ago, you&#8217;ll want to mark your calendars for December 11th, 2023. State of the Word will include a Q&amp;A session, and if you want to participate, you can send your question to ask-matt@wordcamp.org.&nbsp;Or, ask during the event via the Q&amp;A app Slido. A QR code for your submission will be provided during the event live stream, so if you&#8217;re choosing that option, don&#8217;t worry; there&#8217;s not anything to do right this second.&nbsp;</p>\n\n\n\n<p>[00:06:40] <strong>Josepha:</strong> The second thing on the list is that WordCamp Asia has extended their call for sponsors for the conference that is slated to take place in Taipei, Taiwan, March 7th through 9th, 2024. The new deadline has been extended to November 30th, 2023, and so if you have been on the fence about whether to sponsor that event or not, for one, please do sponsor it, and for two, you still have a little bit of time to get over there and show your support.</p>\n\n\n\n<p>[00:07:05] <strong>Josepha:</strong> And then the last thing on the small list of big things is that the documentation team now has a new GitHub repo created for end-user documentation and its translations into all locales. For more information about this, come check out the show notes. I will have a link right there for you. And that, my friends, is your small list of big things.</p>\n\n\n\n<p>[00:07:26] <strong>Josepha:</strong> Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you have questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks.&nbsp;</p>\n\n\n\n<p>[00:07:51] (Music outro)</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"State of the Word 2023 – Madrid, Spain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Nov 2023 20:03:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"sotw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16429\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:328:\"The countdown is on for this year\'s State of the Word! If you missed the initial announcement a few weeks ago, mark your calendars for December 11, 2023.\n\nState of the Word is the annual keynote in which WordPress co-founder Matt Mullenweg celebrates the progress of the open source project and offers a glimpse into its future.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4321:\"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1024%2C683&#038;ssl=1\" alt=\"State of the Word\" class=\"wp-image-16438\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The countdown is on for this year&#8217;s State of the Word! If you missed the initial announcement a few weeks ago, you&#8217;ll want to mark your calendars for December 11, 2023.</p>\n\n\n\n<p>State of the Word is the annual keynote in which WordPress co-founder <a href=\"https://ma.tt/\">Matt Mullenweg</a> celebrates the progress of the open source project and offers a glimpse into its future.</p>\n\n\n\n<p>For the first time, State of the Word ventures beyond North America, bringing the WordPress community to a new and vibrant city that plays a vital role in the WordPress project &#8212; Madrid, Spain! The event will be live-streamed to WordPress enthusiasts and newcomers around the globe via the <a href=\"https://youtube.com/wordpress\">WordPress YouTube channel</a>.</p>\n\n\n\n<p>Please visit the <a href=\"https://wordpress.org/state-of-the-word\">event website</a> for more event details and live-streaming information.</p>\n\n\n\n<p><strong>What:</strong> State of the Word 2023<br><strong>When: </strong><a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2023&amp;dates=20231211T150000Z/20231211T190000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%E2%80%99s+co-founder%2C+Matt+Mullenweg.+Every+year%2C+Matt+shares+reflections+on+the+project%E2%80%99s+progress+and+the+future+of+open+source.+Expect+this+and+more+in+this+year%E2%80%99s+edition.%0A%0AState+of+the+Word+will+be+live+streamed+from+Madrid,+Spain,+and+is+free+for+all+to+watch+or+attend+in+person+with+a+ticket.%0A%0Ahttps://wordpress.org/state-of-the-word/\">December 11, 2023, 15:00 UTC</a> (Start of live stream)<br><strong>Where: </strong><a href=\"https://www.palacioneptuno.com/\">Palacio Neptuno</a>, Madrid, Spain<br><strong>Streaming: </strong><a href=\"https://youtube.com/wordpress\">Watch the live stream</a> on the WordPress YouTube channel.<br><strong>Tickets: </strong><a href=\"https://wordcampcentral.survey.fm/request-a-seat-sotw-2023-spain\">Request a ticket to attend in person</a>.<strong><br></strong><em>Please note that the venue’s capacity is limited; therefore, not all ticket requests will be granted. </em><br><strong>Meetups: </strong>The community will support several local watch parties globally, both in<br>person and online. <a href=\"https://wordpress.org/state-of-the-word\">Find one near you or organize one</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Have a question for Matt?</h2>\n\n\n\n<p>State of the Word will include a Q&amp;A session. If you want to participate, you can send your question to ask-matt@wordcamp.org or ask during the event via the Q&amp;A app Slido. A QR code for your submission will be provided during the event live stream.</p>\n\n\n\n<p>Given the volume of questions usually submitted, only some will be answered live, while others will be covered in a follow-up post published after the event on <a href=\"https://make.wordpress.org/project\">make.wordpress.org/project</a>.</p>\n\n\n\n<p>Is this your first State of the Word? Check out <a href=\"https://wordpress.tv/tag/state-of-the-word/\">prior events on WordPress.tv</a> for an introduction to the format.</p>\n\n\n\n<p>See you in person and online on December 11!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a> and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a> for reviewing this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16429\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 04 Jan 2024 17:00:35 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 28 Dec 2023 18:35:53 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20231106184314\";}','no'),(300408,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1704430835','no'),(300409,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1704387635','no'),(300410,'villatheme_hide_notices_jan2024','jan2024','yes'),(300411,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1704430835','no');
INSERT INTO `wpj7_options` VALUES (300412,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Akismet: What is a Honeypot in Spam Protection and Cybersecurity?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=283657\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://akismet.com/blog/what-is-a-honeypot/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21927:\"<p>If your enterprise handles large volumes of sensitive content, cybersecurity should be a top priority. You likely already have measures in place to block hacking attempts. But did you know that you can also create honeypots to further protect your&nbsp;business?</p>\n\n\n<p>What is a honeypot? In a nutshell, this is a web app or system that mimics your company’s network. It’s designed to lure in hackers so that the security team can study their tactics and identify weak areas in your organization.&nbsp;</p>\n\n\n<p>In this post, we’ll take a closer look at how honeypots work and the different ways you can implement them. We’ll also discuss the benefits of honeypots in cybersecurity and spam protection. So, let’s dive right&nbsp;in!</p>\n\n\n<span id=\"more-283657\"></span>\n\n\n<h2 class=\"wp-block-heading\">What are&nbsp;honeypots?</h2>\n\n<p>Let’s start by answering the most important question: what is a&nbsp;honeypot?</p>\n\n\n<p>Essentially, a honeypot is a network that’s designed to serve as a decoy for hackers. It’s made to appear as part of an organization’s IT infrastructure, but in fact, it’s completely isolated from it.&nbsp;</p>\n\n\n\n<p>The primary purpose of honeypots is to attract cyber threats. This way, security experts can get a close look at the attackers’ tactics and behavior in a safe and controlled environment. Using this information, they can then enhance the overall security of the actual infrastructure.&nbsp;&nbsp;</p>\n\n\n<p>This technique is usually deployed by enterprises that handle large amounts of data. By being proactive, your organization can identify vulnerabilities in its network before they’re discovered by hackers. This ultimately helps prevent serious hacking events that can negatively impact your revenue or damage your&nbsp;reputation.</p>\n\n<p>Plus, creating a honeypot can help you test the effectiveness of pre&#8209;existing security measures against cyber threats. Your enterprise can then use these findings to fortify its&nbsp;system.</p>\n\n<h2 class=\"wp-block-heading\">The different types of&nbsp;honeypots</h2>\n\n<p>Now that we’ve answered the basic question on what a honeypot is, let’s look at the different types of decoys you can&nbsp;use:</p>\n\n\n<h3 class=\"wp-block-heading\">1. Form honeypot&nbsp;</h3>\n\n\n\n<p>Bots will often fill out forms on your site to send spam or attempt to inject malicious code into your site. No, that fishy-sounding company didn’t really find “30 SEO errors on your site!” They used a bot to send spam to thousands of site owners hoping to catch someone off guard.&nbsp;</p>\n\n\n\n<p>Since bots typically fill out any available field, you can trick them into identifying themselves by essentially creating an invisible field that the bot can read in the code, but that won’t appear to users. If one fills it out, you know it’s a fake submission.&nbsp;</p>\n\n\n<p>While this is a decent way to catch spam, it’s not without its faults as bots can increasingly decipher these traps and work around them.&nbsp;</p>\n\n<h3 class=\"wp-block-heading\">2. Email or spam&nbsp;trap</h3>\n\n<p>As you might have guessed, email or spam trap honeypots are designed to catch malicious emails that are sent to your organization. The way they work is quite&nbsp;simple.</p>\n\n<p>A spam trap honeypot would consist of “fake” email addresses linked to your organization. You might place these contact details on your website or any other online platform to lure in&nbsp;spammers.</p>\n\n<p>Your security team can then review and examine any unsolicited emails that come into the honeypot. This will help them design effective filters and spam protection measures for the “real” email addresses, thus protecting employees against phishing attacks and other malicious&nbsp;activities.</p>\n\n\n<p>To avoid any confusion, we’d like to mention that you may have also heard about these in the context of email marketing or email deliverability. That’s because email <a href=\"https://www.mailgun.com/blog/deliverability/spam-traps/#subchapter-1\">spam trap honeypots</a> are also used by blocklists and inbox service providers to catch mass email senders who acquire email lists via unauthorized methods. However, this isn’t something the cybersecurity division of your organization typically needs to worry about.&nbsp;&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">3. Spider&nbsp;honeypot</h3>\n\n\n<p>You already know about web crawlers or “spiders” —&nbsp;the bots that scan the contents of a website. Google uses these web crawlers to index the pages of your website and display them in relevant search results.&nbsp;</p>\n\n\n<p>But web crawlers are also used by hackers to discover vulnerabilities in websites. Spider honeypots are therefore designed to attract these bots to identify weaknesses in a web application or&nbsp;website.</p>\n\n\n<p>By simulating your web application and inviting these crawlers to do their work, you can study their behavior as they try to find a way in. This will help your team identify any specific attack patterns or common exploits, and take the necessary measures to protect your enterprise against web-based attacks.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">4. Malware&nbsp;honeypot</h3>\n\n\n<p>If your organization has a malware problem, this type of honeypot can help you get to the bottom of it.&nbsp;</p>\n\n\n\n<p>Malware honeypots are designed to emulate systems or services that are usually affected by malicious software. Your security team can use this system to study the origins and workings of the malware in a controlled environment.&nbsp;</p>\n\n\n<p>This will enable them to implement effective measures against this threat. For example, they might develop a sturdier and more intelligent antivirus program for your&nbsp;enterprise.</p>\n\n<h3 class=\"wp-block-heading\">5. Decoy&nbsp;database</h3>\n\n<p>One of the most common threats for enterprises is a data breach. If your company stores sensitive information, like customer details and financial records, it could be an attractive target among&nbsp;hackers.</p>\n\n\n<p>A decoy database is a type of honeypot that entices attackers who are looking to steal your data. It mimics your organization’s database but, of course, the information it contains would be fake.&nbsp;</p>\n\n\n<p>This type of honeypot can help you spot vulnerabilities in your database and study the techniques hackers use to access your data. This way, you’ll be able to implement stricter access controls in your database and develop more effective protection&nbsp;solutions.</p>\n\n<h3 class=\"wp-block-heading\">6. Client&nbsp;honeypot</h3>\n\n<p>Client honeypots are another popular decoy. These mimic client&#8209;side applications and personal&nbsp;devices.</p>\n\n<p>For example, you might set up a client honeypot to find security flaws in your company’s applications and software. This can be particularly useful if you have a large number of employees or customers using an online app. For instance, you might create a client honeypot for a learning management system (LMS) or an ecommerce app for loyal&nbsp;shoppers.</p>\n\n\n<p>A client honeypot serves as a trap for hackers that target enterprise software or web applications. Plus, it enables you to find better ways to protect your users from potential exploits.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">7. Honeynet</h3>\n\n\n\n<p>This is possibly the most advanced decoy you could opt for. Basically, a honeynet is a large network of interconnected honeypots. It’s meant to emulate a complete enterprise network.&nbsp;</p>\n\n\n\n<p>Honeynets can be very useful in studying sophisticated cyberattacks and testing your company’s overall security. By implementing this strategy, your security team can gain a deeper understanding of the evolving techniques used by cyber criminals.&nbsp;</p>\n\n\n<p>These insights will then help them develop a comprehensive security strategy for your&nbsp;enterprise.</p>\n\n<h2 class=\"wp-block-heading\">The different tiers of honeypot&nbsp;deployment</h2>\n\n<p>Each type of honeypot that we outlined above can be implemented on different levels. With this in mind, let’s take a look at the main tiers of honeypot&nbsp;deployment.</p>\n\n<h3 class=\"wp-block-heading\">1. Pure&nbsp;honeypots</h3>\n\n<p>Pure honeypots are designed to appear as real as possible, so they can attract highly skilled attackers. They are a form of high&#8209;interaction honeypots (which we’ll be looking at more closely in a minute) and are deployed with minimal interaction&nbsp;capabilities.</p>\n\n<p>Security professionals use pure honeypots to gather in&#8209;depth information about the strategies employed by sophisticated attackers. In particular, they&#8217;re concerned with tactics that can affect an organization’s entire system. For example, they can gain valuable insights into previously unknown vulnerabilities in your&nbsp;network.</p>\n\n\n<h3 class=\"wp-block-heading\">2. Low-interaction</h3>\n\n\n\n<p>Low-interaction honeypots have limited interaction capabilities and only emulate specific parts of a real system. This makes them easier to deploy and manage compared to high-interaction honeypots. As such, they’re mostly ideal for analyzing common attacks.&nbsp;</p>\n\n\n\n<p>Low-interaction honeypots simulate services and applications at a basic level. This enables your security team to capture basic data without exposing your real (and potentially vulnerable) systems.&nbsp;</p>\n\n\n\n<p>While these honeypots do not provide the same level of depth as more advanced systems, they can be quite effective in detecting known threats and preventing attacks.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Mid-interaction</h3>\n\n\n\n<p>Mid-interaction honeypots offer a moderate level of realism and interaction. They’re built to emulate different services and applications, providing more “exploit opportunities” for attackers.&nbsp;</p>\n\n\n<p>With these honeypots, your security team can observe malicious activities in a relatively realistic setting. This enables them to collect more detailed data and fine&#8209;tune your company’s existing security&nbsp;measures.</p>\n\n\n<h3 class=\"wp-block-heading\">4. High-interaction</h3>\n\n\n\n<p>High-interaction honeypots provide the most authentic simulation of real-world systems and applications. Unlike low or mid-interaction honeypots, they allow attackers to interact with a full-fledged, genuine environment.&nbsp;</p>\n\n\n\n<p>These honeypots are set up with real operating systems and applications. This makes them highly attractive to attackers seeking valuable targets.&nbsp;</p>\n\n\n<p>As you can probably tell, these high&#8209;interaction honeypots carry a higher risk as they use a legitimate environment, but they offer unparalleled insights into advanced attacks. Plus, they enable your team to study zero&#8209;day vulnerabilities (more on this in a minute) and develop effective strategies to counter these sophisticated&nbsp;threats.</p>\n\n<h2 class=\"wp-block-heading\">The benefits of honeypots in&nbsp;cybersecurity</h2>\n\n\n<p>We’ve already touched upon the benefits of honeypots for your company’s cybersecurity. But let’s take a closer look at how they can help protect your organization.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">1. Identifying zero&#8209;day exploits and&nbsp;vulnerabilities</h3>\n\n\n<p>A zero-day vulnerability is a flaw in software that is discovered by hackers before developers become aware of it. Therefore, attackers that target zero-day exploits do not give organizations or developers time to patch these vulnerabilities.&nbsp;</p>\n\n\n<p>As we have seen, honeypots (particularly high&#8209;interaction ones) create a controlled environment where attackers engage with authentic applications. By analyzing the tactics used in these attacks, you can uncover unknown vulnerabilities in your company’s software. This will enable you to develop patches proactively or reach out to the software’s developers for an immediate&nbsp;fix.</p>\n\n<h3 class=\"wp-block-heading\">2. Early threat detection and&nbsp;identification</h3>\n\n\n<p>As we mentioned earlier, honeypots are completely isolated from the real system. This means that any attack on the simulated environment will not affect your company’s operations.&nbsp;</p>\n\n\n\n<p>Additionally, since they have no legitimate purpose, any activity in these environments will immediately spark suspicion. This means that your security team can detect threats at an early stage and respond to them swiftly.&nbsp;</p>\n\n\n<p>Early threat detection can prevent attacks from spreading to other parts of the&nbsp;network.</p>\n\n<h3 class=\"wp-block-heading\">3. Real&#8209;time attack monitoring and&nbsp;visualization</h3>\n\n\n<p>Honeypots also provide real-time attack monitoring. This means security professionals can observe the hackers&#8217; movements and activities as they happen.&nbsp;</p>\n\n\n\n<p>You might use real-time visualization tools like graphs and heatmaps so that it’s easier to identify attack patterns and targets. Plus, these visualization tools can enable you to comprehend the scope and impact of the threats. This way, you can ensure that you implement a solution that encompasses all possible vulnerabilities.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">4. Intruder profiling and&nbsp;attribution</h3>\n\n<p>When implemented effectively, honeypots can tell you a lot about the individuals behind the attack. This includes information about the attackers&#8217; methods, preferred targets, and geographic&nbsp;locations.</p>\n\n<p>Your security team can then use this data to create intruder profiles. Such information is essential for understanding the motives behind the&nbsp;attacks.</p>\n\n<p>If you have accurate intruder profiles, you can collaborate with law enforcement agencies or other security organizations to track down cyber&nbsp;criminals.</p>\n\n<h2 class=\"wp-block-heading\">The benefits of honeypots in spam&nbsp;detection</h2>\n\n<p>Honeypots can also be an effective measure in identifying and blocking spam. Here are a few different ways to use them for spam&nbsp;detection:</p>\n\n<h3 class=\"wp-block-heading\">1. Combating contact form&nbsp;spam</h3>\n\n\n<p>Contact form spam affects many businesses and can be very annoying. When it occurs, emails from genuine customers can be easily lost in a sea of spammy ones.&nbsp;</p>\n\n\n<p>Your organization can integrate honeypot fields within <a href=\"https://akismet.com/blog/how-to-add-wordpress-contact-form/\">contact forms</a> to trap automated bots. This way, you can automatically filter out spammy submissions and make it easier for your company’s administrators to manage their&nbsp;inboxes.</p>\n\n<h3 class=\"wp-block-heading\">2. Preventing comment&nbsp;spam</h3>\n\n\n<p>Likewise, honeypots can be used to prevent comment spam. This can be particularly useful if you have a blog on your company website.&nbsp;</p>\n\n\n\n<p>When bots attempt to fill out the honeypot fields, their submissions will instantly be recognized as spam. <a href=\"https://akismet.com/blog/how-to-stop-comment-spam-in-wordpress/\">Stopping comment spam</a> can help you maintain a professional community.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">3. Blocking malicious user&nbsp;registrations</h3>\n\n\n<p>Bots can also take over your user registration process. If you have an online store or membership site, these fake and malicious entries can make it nearly impossible to effectively manage your users.&nbsp;&nbsp;</p>\n\n\n<p>Honeypots can be integrated into <a href=\"https://akismet.com/blog/how-to-create-a-custom-wordpress-user-registration-form/\">user registration forms</a> to thwart malicious registrations. By taking a proactive approach, you can find an effective way to <a href=\"https://akismet.com/blog/how-to-stop-user-spam-registrations-in-wordpress/\">prevent fake accounts</a> and hackers from infiltrating your user&nbsp;database.</p>\n\n<h3 class=\"wp-block-heading\">4. Preventing link spam and SEO&nbsp;manipulation</h3>\n\n\n<p>Spammers might also try to insert links into your content. Typically, they do this to <a href=\"https://akismet.com/blog/what-is-seo-spam-how-to-protect-your-wordpress-site/\">manipulate their search engine rankings</a> or drive users to harmful websites.&nbsp;</p>\n\n\n<p>Honeypots can be instrumental in preventing link spam. You can use honeypots strategically to attract spammers, study their behavior, and design more effective security solutions that guard access to edit permissions for your&nbsp;content.</p>\n\n<h3 class=\"wp-block-heading\">5. Strengthening CAPTCHA and challenge&#8209;response&nbsp;mechanisms</h3>\n\n\n<p>You might already be <a href=\"https://akismet.com/blog/wordpress-captcha/\">using CAPTCHA</a> and challenge-response mechanisms on your website. These make it more difficult for automated bots to submit spammy content, but they’re not always effective.&nbsp;</p>\n\n\n\n<p>Honeypots act as an additional layer of defense. They make it nearly impossible for malicious actors to interact with your forms undetected.&nbsp;</p>\n\n\n<p>But, you don’t need to implement CAPTCHAs to prevent spam on your website, and these kinds of tests are distracting for users and are likely negatively impacting your&nbsp;conversions.</p>\n\n<p>A comprehensive <a href=\"https://akismet.com/features/\">anti&#8209;spam solution like Akismet</a> can provide a better way to defend your site against&nbsp;spam.</p>\n\n\n<img width=\"1314\" height=\"630\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-19.png\" alt=\"Akismet homepage with the text \" />\n\n\n\n<p>This tool can identify spammy behavior without the need for a challenge-response mechanism. It does this with an AI-powered system that detects spam signals utilizing things like blocklists, IP addresses, names, and emails associated with suspicious activities.&nbsp;</p>\n\n\n\n<p>And it works with nearly 100% accuracy.&nbsp;</p>\n\n\n<p>Additionally, Akismet offers a better user experience for visitors, as it doesn&#8217;t require them to solve any puzzles. Instead, it analyzes their behavior and blocks any suspicious&nbsp;entries.</p>\n\n<p>By combining honeypots with powerful tools like Akismet, you can ensure that only genuine human users can engage with your&nbsp;website.</p>\n\n<h2 class=\"wp-block-heading\">Akismet: Taking spam protection to a new&nbsp;level</h2>\n\n\n<p>Akismet is a spam prevention plugin for WordPress websites. To date, it has blocked more than 525,000,000,000 spam comments. This is thanks to its powerful and advanced AI technology.&nbsp;</p>\n\n\n\n<p>Akismet is free for personal use and affordable for every level of commercial organization. The improved user experience and resulting boost in conversion rates will more than justify the investment in this valuable tool. If you’re ready to try it out, you can <a href=\"https://wordpress.org/plugins/akismet/\" target=\"_blank\" rel=\"noreferrer noopener\">download it from the WordPress plugin directory</a>.&nbsp;</p>\n\n\n\n<img width=\"945\" height=\"423\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-20.png\" alt=\"Akismet plugin on WordPress.org \" class=\"wp-image-283660\" />\n\n\n<p>Alternatively, if you’re dealing with a larger volume of sensitive user data, you might want to request <a href=\"https://akismet.com/enterprise/\">a custom enterprise plan</a>. This will be tailored to your company’s needs and will give you access to personalized&nbsp;support.</p>\n\n<h3 class=\"wp-block-heading\">What are the benefits of using&nbsp;Akismet?</h3>\n\n<p>Akismet offers an automated spam protection solution. It checks all submissions on your site and filters out spammy entries. This enables your admin team to handle queries more&nbsp;efficiently.</p>\n\n<p>Additionally, Akismet is a cloud‑based solution. This means that it doesn’t store any data on your website. As a result, it won’t have any impact on your website’s speed and&nbsp;performance.</p>\n\n\n<p>But perhaps the best thing about Akismet is that it integrates with a wide variety of tools. These include popular plugins like <a href=\"https://jetpack.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack</a>, Contact Form 7, Gravity Forms, and Formidable Forms.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">Why choose Akismet over other spam protection&nbsp;solutions?</h3>\n\n\n<p>You might be wondering what makes Akismet a good alternative to other spam protection solutions.&nbsp;</p>\n\n\n<p>Unlike most anti&#8209;spam tools, Akismet does not use CAPTCHA to block bots. This is typically a puzzle or challenge that users must complete to submit their entries. Its purpose is to make it more difficult for automated bots to submit spammy&nbsp;content.</p>\n\n<p>But CAPTCHA can be off&#8209;putting for human users. It adds friction to the form submission process, and users with certain physical or cognitive disabilities might struggle to complete certain CAPTCHA prompts. This can cause people to abandon the entire process, and lead to fewer queries and conversions for your&nbsp;business.</p>\n\n\n<p>With Akismet, you won’t need to worry about CAPTCHAs creating a poor user experience for legitimate visitors. This plugin is powered by machine learning, which enables it to automatically spot spam through suspicious behavior. It does all of this in the background, without interfering with the experience of real users.&nbsp;</p>\n\n\n\n<p>That means you’ll be able to provide a smoother user registration process. Plus, site visitors won’t need to complete a challenge just to send a quick message through your contact form or subscribe to your newsletter.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">Try Akismet today. You’ll be in good&nbsp;company</h3>\n\n<p>Akismet is a leading spam protection tool, used across 100 million sites. These include popular companies like WordPress.com, Bluehost, and&nbsp;ConvertKit.</p>\n\n\n<p>Are you ready to block spam with Akismet? <a href=\"https://akismet.com/talk-to-sales/\">Get in touch today</a> for a tailored enterprise solution.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jan 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Back With Tim\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110059\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2024/01/back-with-tim/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1592:\"<p>I <a href=\"https://tim.blog/2023/12/29/matt-mullenweg-2/\">returned on the podcast with my good friend Tim Ferriss</a>, by my count the sixth time we&#8217;ve recorded together, but the very first time we did it in video! Tim asked me to bring five things I&#8217;m excited about, five things I&#8217;ve changed my mind on in the past few years, and five things that are absurd or ridiculous but I still do, and that ended up being a pretty fun anchor for a two-and-a-half hour conversation, which you can watch here:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Or listen to on <a href=\"https://pocketcasts.com/\">Pocket Casts</a> or any podcast player, thanks to open standards:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div>    <div></div>    </div>\n</div>\n\n\n\n<p>I ended up having more than five things for each list, especially the excited one, but tried to edit it down. This was a very vulnerable and personal conversation for me, which I think was possible because we&#8217;ve known each other so long at this point and Tim made it really easy and fun to open up. We discuss everything from open source to kids to my upcoming sabbatical.</p>\n\n\n\n<p>Coincidentally, this was episode 713, <a href=\"https://en.wikipedia.org/wiki/Area_codes_713,_281,_832,_and_346\">which is the original area code for Houston</a>! We didn&#8217;t plan that but I think that&#8217;s so cool. I&#8217;m also going to <a href=\"https://www.youtube.com/watch?v=bYXa5RCGLiM\">watch his episode with Kevin Rose</a> who he&#8217;s also very close with, I always learn new stuff from those two.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jan 2024 08:36:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Birthday Gift\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110005\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2024/01/birthday-gift/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1624:\"<p>It&#8217;s true, it&#8217;s true, I turn forty years old in ten days.</p>\n\n\n\n<p>What do you get the guy who has everything?</p>\n\n\n\n<p>I admit I&#8217;m not the easiest to shop for, I can be quite particular in my preferences of <a href=\"https://ma.tt/2023/12/the-bag-post/\">this cable versus that one</a>, but the good news is the gift I most want for my 40<sup>th</sup> is something everyone can do.</p>\n\n\n\n<p><strong>I want you to blog.</strong></p>\n\n\n\n<p>Publish a post. About anything! It can be long or short, a photo or a video, maybe a quote or a link to something you found interesting. Don&#8217;t sweat it. Just blog. Share something you created, or amplify something you enjoyed. It doesn&#8217;t take much. The act of publishing will be a gift for you and me. </p>\n\n\n\n<p>That&#8217;s what I want for my birthday. If you link to this post and use <a href=\"https://wordpress.org/\">WordPress</a> the <a href=\"https://en.wikipedia.org/wiki/Pingback\">Pingback</a> system will notify me about your post and it will show up in the comment stream, but I&#8217;m okay even if you don&#8217;t use WordPress, just post something and send me a link. You can start <a href=\"https://www.tumblr.com/\">a free site on Tumblr</a> or <a href=\"https://wordpress.com/\">get a domain that can be your home on the internet with WP.com</a>.</p>\n\n\n\n<p>You&#8217;ve got ten days! After the 11th I&#8217;ll close the comments and pingbacks on this post. But I&#8217;m so curious to read what people write.</p>\n\n\n\n<p>That&#8217;s it! No wrapping paper or bows. Just blogs and blogs and blogs, each unique and beautiful in its own way.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jan 2024 01:49:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: Books 2020–2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=109958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2023/12/books-2020-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6451:\"<p>I&#8217;m a few years behind in posting my book lists, and past few years a good amount of my book reading time shifted to other mediums. I have been rediscovering the joy of books so here&#8217;s what I read the past few years as a motivation to myself to pick it up more in 2024.</p>\n\n\n\n<h2 class=\"wp-block-heading\">2020</h2>\n\n\n\n<ol>\n<li><a href=\"https://www.amazon.com/gp/product/B002DMZ9WW/\"><strong>The Gift by Hafiz</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B078GTFGJN/\">I hope this reaches her in time by r.h. Sin</a> </li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B00G1J1D28/\">Essentialism: The Disciplined Pursuit of Less by Greg McKeown</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07GD46PQZ/\">Exhalation by Ted Chiang</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07FZ683NB/\">Deceiving the Sky: Inside Communist China&#8217;s Drive for Global Supremacy</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B000QUEHLM/\">Zero: The Biography of a Dangerous Idea by Charles Seife</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B004JHYRAO/\">Caves of Steel by Isaac Asimov</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07DRPGGQ7/\"><strong>High Growth Handbook by Elad Gil</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B004JHYRDQ/\">The Naked Sun by Isaac Asimov</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07NVN4QCM/\">What You Do Is Who You Are by Ben Horowitz</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07GL6KYHM/\">Gideon Falls 1: The Black Barn by Jeff Lemire</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07NDKTJJ2/\">Gideon Falls 2: Original Sins by Jeff Lemire</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07W6KB77N/\">Gideon Falls 3: Stations of the Cross by Jeff Lemire</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B00NYCE44O/\">What if I Say the Wrong Thing? 25 Habits for Culturally Effective People by Vernā Myers</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B004U5Q1O0/\"><strong>The Most Important Thing: Uncommon Sense for the Thoughtful Investor by Howard Marks</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B0071XO8RA/\"><strong>Wool by Hugh Howey</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B076ZHG3H3/\">Trillion Dollar Coach by Eric Schmidt and Jonathan Rosenberg</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B077Y4WVPT/\">Powerful: Building a Culture of Freedom and Responsibility by Patty McCord</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/0385249373/\">Awareness: The Perils and Opportunities of Reality by Anthony de Mello</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B0029XFF6U/\">How to Know Higher Worlds by Rudolf Steiner</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B081Y3R657/\"><strong>No Rules Rules by Reed Hastings and Erin Meyer</strong></a></li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">2021</h2>\n\n\n\n<ol>\n<li><a href=\"https://www.amazon.com/dp/B07C75GLGK/\">Broken Stars by Ken Liu</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00G3L1C2K/\"><strong>The Body Keeps Score by Bessel van der Kolk</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B000W7XN3C/\">Broadbandits by Om Malik</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07D2364N5/\">How to be Antiracist by Ibram X Kendi</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00BVJG3CS/\"><strong>The Reason I Jump by Naoki Higashida</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07YQCNN4N/\">Billionaire Wilderness by Justin Farrell</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07NYT9F8L/\">Antarctica: What Everyone Needs to Know by David Day</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B08SMFSL5M/\">San Fransicko by Michael Shellenberger</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B006R8PHW0/\">Antarctica: An Intimate Portrait of a Mysterious Continent by Gabrielle Walker</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B002WN354G/\">At the Mountains of Madness by H. P. Lovecraft</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/1885254008\">Delirious New York by Rem Koolhaas</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07MNG496J/\"><strong>This Is How You Lose the Time War by Amal El-Mohtar and Max Gladstone</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00IWTWLQC/\"><strong>Fallen Leaves: Last Words on Life, Love, War, and God by Will Durant</strong></a></li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">2022</h2>\n\n\n\n<p>This year I ended up mostly reading AI and machine learning academic papers, attempting to &#8220;learn AI deeply&#8221; as I asked people at <a href=\"https://ma.tt/2023/01/state-of-the-word-2/\">the State of the Word that year</a>. Started a bunch of other books but these were the only two I finished.</p>\n\n\n\n<ol>\n<li><a href=\"https://www.amazon.com/dp/B08FGV64B1/\">4000 weeks by Oliver Burkeman</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B008T9L6AM/\">A Wizard of Earthsea by Ursula K. Guin</a></li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">2023</h2>\n\n\n\n<ol>\n<li><a href=\"https://www.amazon.com/dp/B09JBCGQB8/\"><strong>Tomorrow and Tomorrow and Tomorrow by Gabrielle Zevin</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B075G4W7MV/\">Belong by Radha Agrawal</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BCF78T14/\"><strong>Excellent Advice for Living by Kevin Kelly</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B09YDBJV2Q/\">On That Note by Michael Wolff</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0B13W5GPT/\"><strong>Unreasonable Hospitality by Will Guidara</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B077J7F78Z/\"><strong>Surely You’re Joking, Mr Feynman by Richard Feynman</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00FDWCPV2/\">Permutation City by Greg Egan</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00Z8VTMYG/\"><strong>Seven Brief Lessons on Physics by Carlo Rovelli</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BSSH8MQ9/\"><strong>Damn Good Advice by George Lois</strong></a></li>\n</ol>\n\n\n\n<p>All book years: <a href=\"https://ma.tt/2017/12/books-in-2017/\">2017</a>, <a href=\"https://ma.tt/2019/01/39-books-in-2018/\">2018</a>, <a href=\"https://ma.tt/2020/01/29-books-in-2019/\">2019</a>, <a href=\"https://ma.tt/?p=109958\">2020–2023</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jan 2024 05:58:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"HeroPress: Surfing In France, Podcasts, Photos, and Press Releases!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6332\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://heropress.com/surfing-in-france/#utm_source=rss&utm_medium=rss&utm_campaign=surfing-in-france\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11511:\"<img width=\"683\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/99265232ded267133.95673942-683x1024.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Rock cairns in focus against a backdrop of the rocky, Oregon coast with giant logs.\" /><p>It was a quiet week this week, between Christmas and New Year, so this newsletter will be a little different.</p>\n\n\n\n<p>We had 23 essays this year, from a very pleasantly diverse group of people. We began the work of merging the larger HeroPress Network back into this site, HeroPress.com. Life was chaotic, but moved ever onward.</p>\n\n\n\n<p>This year more than ever we had people other than Topher working on HeroPress. Mostly little things, but more and more every month.  This is great for the long term viability of the project.</p>\n\n\n\n<p>I greatly appreciate the support of every single one of you over the last nine (9!) years of HeroPress.  I hope we&#8217;ll have a great time together in the years to come.</p>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6332_7129cc-0f alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6332_ca547f-e6 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6332_ab6de5-f2 wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> &#8211; <a href=\"https://heropress.com/essays/being-useful-to-people-with-wordpress/\">Being useful to people, with WordPress – Être utile aux autres, avec WordPress</a></h2>\n\n\n\n\n\n\n\n<p>Quentin Le Duff is from Saint-Malo, France. He taught himself web development and got a job, but soon questioned what he was doing with his life and why.</p>\n\n\n\n<p><em>Over time, I felt less connected to the agency’s decisions and the kind of clients they had. I wondered about the meaning and impact of my work. Was I making things better for people? Was what I did ethical? In the end, did it really matter?</em></p>\n\n\n\n<p>Quentin&#8217;s essay is <a href=\"https://heropress.com/essays/being-useful-to-people-with-wordpress/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6332_6a9d40-be\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6332_f63ef3-eb alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6332_37e0ac-dd inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6332_e666af-94 wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">Press Releases!</a></h2>\n\n\n<div class=\"wp-block-image is-style-default\">\n<img src=\"https://heropressnetwork.com/wp-content/uploads/2024/03/pressitwp_logo-300x130.jpg\" alt=\"Press It WP\" class=\"wp-image-4736\" /></div>\n\n\n<p><a href=\"https://pressitwp.com\">PressItWP.com</a> has been a part of the <a href=\"https://heropressnetwork.com\">HeroPress Network</a> for almost a year now, if you ever release Press Releases, please consider <a href=\"https://pressitwp.com\">PressItWP</a>!</p>\n\n\n\n<p></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-advice-by-renowned-founders-of-100-wordpress-businesses\"><a href=\"https://wpfounders.com/news-updates/advice-by-100-wordpress-business-founders/#new_tab\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" /> Advice by Renowned Founders of 100 WordPress Businesses</a></h2>\n\n\n\n<p>We at WPfounders recently hit a major milestone, securing 100 stories from various WordPress business founders. To celebrate, we’ve compiled key advice from each story to inspire young entrepreneurs venturing into the WordPress ecosystem. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f447.png\" alt=\"👇\" class=\"wp-smiley\" /> Advice by Renowned Founders of 100 WordPress Businesses</p>\n</div></div>\n\n</div></div>\n\n\n<p> </p>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6332_ad80f5-78 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6332_a41078-e2 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6332_511208-ef wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n<p>There were <em>sixteen</em> WordPress podcast episodes released this week! </p>\n\n\n\n<ul>\n<li><a href=\"https://potencia.pro/272-the-wp-awards-2023-top-winners-votes/#new_tab\">Potencia Pro 272: The WP Awards 2023 – Top Winners &amp; Votes</a> from <a href=\"https://wppodcasts.com/podcast/potencia-pro-wordpress-y-cozas/\">Potencia Pro, WordPress y cozas</a></li>\n\n\n\n<li><a href=\"https://www.wppodcast.cat/podcast/tancant-el-2023/#new_tab\">8. Tancant el 2023</a> from <a href=\"https://wppodcasts.com/podcast/wordpress-podcast-catala/\">WordPress Pòdcast (català)</a></li>\n\n\n\n<li><a href=\"https://underrepresented-in-tech.castos.com/episodes/setting-boundaries-allies-last-episode#new_tab\">Setting Boundaries &amp; Allie’s Last Episode!</a> from <a href=\"https://wppodcasts.com/podcast/underrepresented-in-tech/\">Underrepresented in Tech</a></li>\n\n\n\n<li><a href=\"https://podcasters.spotify.com/pod/show/the-sdm-show/episodes/Episode-380-Bertha-Ai-and-All-Things-AI-With-Andrew-Palmer-e2dp464#new_tab\">Episode 380: Bertha.Ai and All Things AI With Andrew Palmer</a> from <a href=\"https://wppodcasts.com/podcast/the-sdm-show/\">The SDM Show</a></li>\n\n\n\n<li><a href=\"https://remkusdevries.com/podcast/crafting-twenty-twenty-four-coordinating-wordcamp-germany-jessica-lyschiks-story/#new_tab\">Crafting Twenty Twenty Four &amp; Coordinating WordCamp Germany: Jessica Lyschik’s Story</a> from <a href=\"https://wppodcasts.com/podcast/within-wordpress/\">Within WordPress</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<p> </p>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6332_3ce321-05 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6332_b1d555-9d inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading6332_d41738-0e wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n<a href=\"https://wordpress.org/photos/photo/346658e493/\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/346658e493d42efa0.56373730-768x1024.jpeg\" alt=\"\" class=\"wp-image-6346\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/346658e493/\">photo</a> by <a href=\"https://wordpress.org/photos/author/anish29/\">Anis</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/564658c439/\"><img width=\"1024\" height=\"876\" src=\"https://heropress.com/wp-content/uploads/2023/12/564658c43966acf26.31591060-1024x876.jpeg\" alt=\"\" class=\"wp-image-6343\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/564658c439/\">photo</a> by <a href=\"https://wordpress.org/photos/author/bhuwanroka/\">Bhuwan Bdr. Rokaha</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/762658b1e7788d772.40098223-scaled.jpeg\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/762658b1e7788d772.40098223-1024x768.jpeg\" alt=\"\" class=\"wp-image-6345\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/762658b1e7/\">photo</a> by <a href=\"https://wordpress.org/photos/author/mbigul/\">Bigul Malayi</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/12465893c2/\"><img width=\"1024\" height=\"680\" src=\"https://heropress.com/wp-content/uploads/2023/12/12465893c2cb2ef57.61824776-1024x680.jpg\" alt=\"\" class=\"wp-image-6342\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/12465893c2/\">photo</a> by <a href=\"https://wordpress.org/photos/author/nilovelez/\">Nilo Velez</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/174659009f2150ed0.93395118-scaled.jpg\"><img width=\"1024\" height=\"680\" src=\"https://heropress.com/wp-content/uploads/2023/12/174659009f2150ed0.93395118-1024x680.jpg\" alt=\"\" class=\"wp-image-6344\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/174659009f/\">photo</a> by <a href=\"https://wordpress.org/photos/author/nilovelez/\">Nilo Velez</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/727658895e/\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/727658895ef476730.56539372-rotated-1-768x1024.jpg\" alt=\"\" class=\"wp-image-6341\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/727658895e/\">photo</a> by <a href=\"https://wordpress.org/photos/author/alexandroar/\">alexandroar</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p>The header photo for this post is a <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/99265232de/\">photo</a> by <a href=\"https://wordpress.org/photos/author/annezazu/\">annezazu</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That&#8217;s it for this week! If you&#8217;d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/surfing-in-france/\">Surfing In France, Podcasts, Photos, and Press Releases!</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Dec 2023 20:53:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WordPress.org blog: Leap into 2024 with these Site Editor Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8226:\"<p>The Site Editor gives you a powerful way to visually create every part of your site and tell your story. It lets you handle everything from big stylistic changes to simple copy updates all in a single place. To help you make the most of this new way to WordPress, here are a few standout tools and features you’ll want to try.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Command Palette</h3>\n\n\n\n<p>Think of the Command Palette as the ultimate shortcut tool, letting you do more with less clicks and without needing to remember where each option might be. It’s available across the editing experience, whether you’re switching between templates in the Site Editor or toggling open settings in the Post Editor, with specific contextual options depending on where you are.<strong> </strong>You can use the keyboard shortcut Cmd+K on Mac or Ctrl+K on Windows to activate it and get started.&nbsp;</p>\n\n\n\n<p>If you think of a command that doesn’t exist yet that would help with your workflow, open a <a href=\"https://github.com/WordPress/gutenberg/issues/new/choose\">feature request issue</a> so we can consider adding it.</p>\n\n\n\n\n\n\n\n<p class=\"is-style-default\"><a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\"><em>Read more</em></a><em> about everything you can do with the Command Palette, including a </em><a href=\"https://wordpress.org/documentation/article/site-editor-command-palette/#list-of-available-commands\"><em>list of available commands</em></a><em>.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Style Book</h3>\n\n\n\n<p>The Style Book helps you see all the blocks on your site as you style them. It’s built into the Styles section and can be toggled on/off as you’d like. This is especially useful when you’re aiming for design consistency for a client, trying to see how a change might impact a block that might not be visible, or wanting to get a different look at how a style variation will switch things up.</p>\n\n\n\n<p>Work is also underway for the next WordPress release to <a href=\"https://github.com/WordPress/gutenberg/pull/56800\">integrate the Style Book into Style revisions</a> to allow for an at-a-glance view of changes made. </p>\n\n\n\n\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-wordpress-stylebook-with-your-block-theme/\"><em>Learn more</em></a><em> about how best to use the Style Book.</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Styling shortcuts</h3>\n\n\n\n<p>Sometimes you get a design just right—the color contrast, the perfect padding, the exact font size. Instead of needing to manually recreate the design or copy/paste the block to fill in with new content, you have two powerful options built into the editing experience: copy/paste styles and apply styles globally for all instances of the desired block.&nbsp;</p>\n\n\n\n<p>Copying and pasting styles is perfect for more nuanced and smaller changes, like headings on a landing page that you intentionally want to be distinct. Applying changes globally is best for blocks like buttons and for changes that are likely to work well across layouts, like setting a specific border radius and color. This helps keep the creativity flowing and makes achieving design consistency across your site much easier.</p>\n\n\n\n\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"><em>Read more</em></a><em> about the various styling options available.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Distraction free mode</h3>\n\n\n\n<p>Just like an artist might need to take a few steps back to view their in-progress artwork, sometimes we need to get a different view of our site before diving back in. Distraction free offers you that alternate perspective with a pared-down experience that lets you focus purely on creating, like:</p>\n\n\n\n<ul>\n<li>Hiding the top toolbar until one intentionally hovers over where it typically sits.</li>\n\n\n\n<li>Removing many of the top toolbar buttons.</li>\n\n\n\n<li>Automatically closing any open sidebars, like block settings and list view.&nbsp;</li>\n\n\n\n<li>Hiding the insertion point indicator, reducing visual clutter.&nbsp;</li>\n\n\n\n<li>Hiding the block toolbar for individual blocks.</li>\n</ul>\n\n\n\n<p>It’s worth noting that this mode can be used when writing posts and pages too! For an added bonus and more views of your site, you can use the preview options to see how your site might look across different devices.</p>\n\n\n\n\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/distraction-free-mode/\"><em>Learn more</em></a><em> about making the most out of Distraction free mode.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Patterns</h3>\n\n\n\n<p>Patterns are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. They save time by reducing duplication and ensuring consistency. You can create your own, use theme-provided patterns, or <a href=\"https://wordpress.org/patterns/\">lean on the Pattern Directory</a>.&nbsp;</p>\n\n\n\n<p>You can also specify whether to sync your patterns so that one change applies to all parts of your site, or to keep them unsynced so you can customize each instance. For any patterns you create, you can assign categories to make them easy to find and organize. Use the Inserter with easy filtering options to add patterns to your content, and head to the dedicated Patterns section in the Site Editor to create or edit patterns to your liking.&nbsp;</p>\n\n\n\n\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/creating-your-own-custom-synced-or-non-synced-patterns/\"><em>Learn more</em></a><em> about creating patterns.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">List View</h3>\n\n\n\n<p>List View is the go-to tool for navigating between layers of your content, selecting exactly what you need, and getting a sense of how everything fits together. Similar to the Style Book and Distraction free mode, you can toggle it on/off as you’d like. It’s currently visible in the Top Toolbar and will remain open as you navigate through your site. Beyond providing a simple view of the layers of your site, there are more recent additions to List View that makes the tool even more powerful:</p>\n\n\n\n<ul>\n<li>See previews of your images for Image and Gallery blocks reflected in List View to make it easier to find what you need.</li>\n\n\n\n<li>The Escape key deselects blocks to make it easier to purely preview your content without any blocks selected.&nbsp;</li>\n\n\n\n<li>Lean on a keyboard shortcut for duplicating blocks quickly: CMD+Shift+D for Mac or Control + Shift + D for Windows.&nbsp;</li>\n\n\n\n<li>Drag and drop blocks at any level directly within List View.</li>\n\n\n\n<li>Rename Group blocks and have the custom name reflected in List View for improved organization.</li>\n</ul>\n\n\n\n<p>Here’s how a few of these improvements come together:</p>\n\n\n\n\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/list-view/\"><em>Learn more</em></a><em> about using List View. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>As you explore these tools, remember that, except for the Style Book, you can use these features when writing posts and pages too. Expect the Site Editor and other tools to evolve with each release. To get a sneak peek at what’s planned for the next major WordPress release in March, <a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">check out the roadmap</a> and stay tuned. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox. </p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p>\n						<a href=\"https://wordpress.org/news/?post_type=post&p=16658\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div>\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Dec 2023 18:35:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: 20 Lead Generation Tips &amp; Best Practices That Work in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=283573\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://akismet.com/blog/lead-generation-tips-and-best-practices/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40655:\"<p>Does your team spend hours (or even days) creating content, optimizing your website, and investing in marketing campaigns only to fall short of your quarterly&nbsp;goals?</p>\n\n<p>You&#8217;re not alone. Lead generation is a constant challenge for businesses of all sizes and industries, but there&#8217;s a solution. A focused lead generation strategy attracts high&#8209;quality leads, converts them into customers, and ultimately grows your&nbsp;business.</p>\n\n<p>Here are 20 tried&#8209;and&#8209;proven lead generation tips and best practices that can up your game in 2024 and&nbsp;beyond.</p>\n\n\n<span id=\"more-283573\"></span>\n\n\n<h2 class=\"wp-block-heading\">1. Define your ideal customer profile&nbsp;(ICP)</h2>\n\n\n<p>An ideal customer profile (ICP) is an informative blueprint that outlines the specific characteristics and needs of the customers who stand to benefit the most from your product or service.&nbsp;</p>\n\n\n\n<p>ICPs cover aspects like demographics, and psychographics that offer a 360-degree view of your ideal customer&#8217;s persona. Insights into your target customer’s age, location, values, and desires help you create tailored strategies that resonate deeply with your audience.&nbsp;</p>\n\n\n<p>The result? Reduced marketing waste, satisfied customers, and greater return on investment&nbsp;(ROI).</p>\n\n<p>Here are some <a href=\"https://offers.hubspot.com/customer-profile-templates\" target=\"_blank\" rel=\"noreferrer noopener\">templates from HubSpot</a> to get&nbsp;started.</p>\n\n\n<img width=\"814\" height=\"626\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image.png\" alt=\"customer profile template with information like demographics and behaviors\" class=\"wp-image-283577\" />\n\n\n<p>Targeted lead generation strategies that keep an ideal customer in mind are like precision tools that allow you to reach the right audience and speak directly to their unique&nbsp;worldview.</p>\n\n<h2 class=\"wp-block-heading\">2. Use market research to know your audience inside and&nbsp;out</h2>\n\n\n<p>Market research involves gathering, analyzing, and interpreting data and insights about your target audience, competitors, and industry trends to guide your lead generation strategy.&nbsp;</p>\n\n\n<p>Think surveys, focus groups, in&#8209;depth interviews, social media listening, and competitive analysis. These are just a few market research methods that provide nuggets into consumer behavior and&nbsp;preferences.</p>\n\n<p>Comprehensive market research pinpoints your target audience, the marketing channels they use, and what they’re interested&nbsp;in.</p>\n\n<p>Some tips on conducting market&nbsp;research:</p>\n\n\n<ul><li><strong>Define clear objectives</strong>. Set specific research objectives. Determine what you want to learn about your audience, competitors, and industry trends to get focused and actionable&nbsp;results.</li>\n\n<li><strong>Use multiple methods</strong>. Combine multiple methods to get a more holistic view of your&nbsp;audience.</li>\n\n\n<li><strong>Segment your audience</strong>. Divide your target audience into segments based on demographics, psychographics, or other relevant criteria.&nbsp;</li>\n\n\n<li><strong>Engage your audience</strong>. Encourage customer feedback and reviews. Engaging with your audience through surveys or feedback shows you value their&nbsp;opinions.</li>\n\n<li><strong>Evaluate competitors</strong>. Study your competitors to understand their strengths and weaknesses. Identify gaps in the market that your product or service fills, and use this knowledge to differentiate&nbsp;yourself.</li></ul>\n\n\n<h2 class=\"wp-block-heading\">3. Solve problems and attract leads with valuable blog&nbsp;content</h2>\n\n<p>Create blog content that answers your target audience&#8217;s questions and builds trust and authority. This content positions your brand as a reliable source of valuable information, driving leads to your&nbsp;website.</p>\n\n<p>Blogging is powerful — most respondents in a <a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"noreferrer noopener\">survey</a> reported that it drives results like website traffic, brand awareness, and, of course, lead&nbsp;generation.</p>\n\n\n<img width=\"1200\" height=\"600\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-1.png\" alt=\"pie chart that shows 80% of bloggers are driving results in 2023\" class=\"wp-image-283578\" />\n\n\n<p>Not sure where to start? Create valuable blog content with these&nbsp;tips:</p>\n\n\n<ul><li><strong>Use research to back it up</strong>. Support your content with data and research from credible sources. You gain authority and credibility this&nbsp;way.</li>\n\n<li><strong>Make it product&#8209;led, but not sales&#8209;y</strong>. Address your audience&#8217;s pain points and questions while subtly showcasing how your product or service can fit into a solution. The focus should be on providing the solutions, not a hard sell of your&nbsp;offer.</li>\n\n<li><strong>Keep the call to action (CTA) subtle</strong>. Guide readers to take action in a friendly and non&#8209;intrusive way. Use CTAs that spark engagement, like inviting them to read more content on your&nbsp;blog.</li>\n\n<li><strong>Use stories and examples</strong>. Incorporate real&#8209;life stories and examples that illustrate the points you&#8217;re making. Your content will be more relatable and easier to&nbsp;understand.</li>\n\n<li><strong>Solve specific problems</strong>. Focus on solving one or two specific problems in each blog post rather than trying to cover too much ground. Reading becomes more enjoyable and in&#8209;depth as a&nbsp;result.</li></ul>\n\n\n<p>Content marketing is one of the most proven lead generation best practices. It consistently delivers strong results and can be used in a variety of ways. If this isn’t yet a priority, consider making it one in the near&nbsp;future.</p>\n\n<h2 class=\"wp-block-heading\">4. Use lead magnets and gated content to capture&nbsp;leads</h2>\n\n<p>Have you ever seen one of those pop&#8209;up offers promising you a valuable resource like an eBook, report, webinar, or template in exchange for your email address? Those are lead&nbsp;magnets.</p>\n\n\n<img width=\"1600\" height=\"833\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-2.png\" alt=\"WordPress VIP lead capture with a form and CTA to read a report\" class=\"wp-image-283579\" />\n\n\n\n<p>Lead magnets and gated content act as friendly invitations for your audience to exchange their contact information for something of value.&nbsp;</p>\n\n\n<p>Offering relevant and informative resources captures quality leads and shows your willingness to provide solutions. You can then use the data to send targeted offers and build a relationship with your&nbsp;audience.</p>\n\n\n<p>Make sure your lead magnet is high-quality, is relevant to your audience, and aligns with your overall content strategy.&nbsp;</p>\n\n\n<p>Design the lead magnet and pitch your gated content in a way that provides value to the reader, not as a pushy sales&nbsp;tactic.</p>\n\n\n<h2 class=\"wp-block-heading\">5. Reduce friction on your lead capture forms&nbsp;</h2>\n\n\n<p>Simplify the information you request from potential leads. It reduces the time and effort required for users to submit their information. The result is a better experience that results in higher conversion&nbsp;rates.</p>\n\n<p>Here’s what a lead gen form looks like from&nbsp;Litmus:</p>\n\n\n<img width=\"1067\" height=\"879\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-3.png\" alt=\"lead capture from Litmus with a form that includes email, name, job title, and a few other fields\" class=\"wp-image-283580\" />\n\n\n<p>Include this information in your lead capture&nbsp;form:</p>\n\n\n<ul><li><strong>Name</strong>. Ask for the visitor&#8217;s first name to personalize your&nbsp;communication.</li>\n\n\n<li><strong>Email address</strong>. This is the most crucial information for contact and follow-up.&nbsp;</li>\n</ul>\n\n\n\n<p>You could end your form right here and likely get the maximum conversion rate possible. However, the effectiveness of your campaigns that follow this lead capture may hinge upon knowing a bit more about the visitor to segment communications.&nbsp;</p>\n\n\n\n<p>If this is the case, you may consider asking a few more questions, like:&nbsp;</p>\n\n\n\n<ul><li><strong>Company name (if applicable)</strong>. The user&#8217;s company helps sales reps understand how to approach a lead and can provide you with better data about who’s responding to your&nbsp;offers.</li>\n\n<li><strong>Job title (if applicable)</strong>. The user&#8217;s role within their company is valuable for segmenting and tailoring your&nbsp;messaging.</li>\n\n\n<li><strong>Location (optional)</strong>. The location is useful for regional targeting or understanding your audience better.&nbsp;</li>\n\n\n<li><strong>Industry or interest (if applicable)</strong>. If your lead generation efforts are specific to certain industries or interests (or even product lines), include a dropdown menu or checkboxes for users to select from to tailor your&nbsp;communication.</li>\n\n<li><strong>How they heard about you (optional)</strong>. Understand how users discovered your brand to get insights into your marketing channels&#8217;&nbsp;performance.</li></ul>\n\n\n\n<h2 class=\"wp-block-heading\">6. Replace CAPTCHA with an AI anti-spam solution&nbsp;</h2>\n\n\n\n<p>CAPTCHAs are those annoying puzzles or tests you often come across online that require you to prove you&#8217;re not a robot by solving them.&nbsp;</p>\n\n\n\n<p>These <em>do </em>serve an important purpose, however. Anti-spam solutions stop unwanted or malicious content or actions, like spam comments and emails, from infiltrating websites.&nbsp;</p>\n\n\n<p>Unfortunately, CAPTCHAs lead to a poor user experience and potential drop&#8209;offs from your most important visitors. A study shows that <a href=\"https://www.cnbc.com/2022/12/17/why-annoying-captcha-is-still-big-for-google-e-commerce-in-bot-battle.html\">19% of adults</a> in the United States abandoned online transactions in 2021 when CAPTCHAs&nbsp;appeared.</p>\n\n\n<p><a href=\"https://akismet.com/\">Akismet is a powerful anti-spam service</a> that detects and blocks spam comments, form submissions, and other unwanted interactions <strong>without requiring users to complete a puzzle, check a box, or jump through a hoop</strong>. Its <a href=\"https://akismet.com/features/\">key features</a> include real-time spam detection, comment moderation, protection against harmful links, and the ability to learn and adapt to new spam patterns.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"824\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-4.png\" alt=\"Akismet website with information about the zero-friction tool\" class=\"wp-image-283581\" />\n\n\n<p>Visitors find a trustworthy and safe environment on your website thanks to these features. It creates a positive user experience, increases engagement, and improves the chances of converting visitors into&nbsp;leads.</p>\n\n<h2 class=\"wp-block-heading\">7. Let prospects test your product with free trials or&nbsp;demos</h2>\n\n\n<p>Free trials or demos give prospects a taste of your tool by allowing them to experience its features and benefits firsthand before making a commitment. Types of free trials include:&nbsp;</p>\n\n\n\n<ul><li><strong>Limited&#8209;time trial</strong>. Users access the full product for a limited period, after which they subscribe or&nbsp;purchase.</li>\n\n<li><strong>Feature&#8209;limited trial</strong>. Users can access the product&#8217;s basic features for free but upgrade to access advanced&nbsp;functionalities.</li>\n\n<li><strong>Demo or guided tour</strong>. Prospects get a walkthrough of the product&#8217;s capabilities, often with a sales representative explaining its&nbsp;value.</li></ul>\n\n\n\n<p>Jetpack’s AI Assistant, <a href=\"https://jetpack.com/ai/\" target=\"_blank\" rel=\"noreferrer noopener\">an AI writing tool</a> built directly into the WordPress editor, offers a variation of the limited-time trial using credits.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"740\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-5.png\" alt=\"plan options for Jetpack AI\" class=\"wp-image-283582\" />\n\n\n\n<p>This is a strong offer because it explains the benefit right in the first sentence, “Try our AI Assistant for free to <strong>boost your content creation.</strong>”&nbsp;</p>\n\n\n\n<p>They’re also transparent about long-term pricing with the paid information directly next to the free trial breakdown.&nbsp;</p>\n\n\n<p>The goal is to make prospects feel comfortable, informed, and excited about your product during this phase. Think about ways you can adjust your trials or language to feel safer for&nbsp;prospects.</p>\n\n<h2 class=\"wp-block-heading\">8. Showcase your value proposition with compelling case&nbsp;studies</h2>\n\n\n<p>A value proposition is a clear statement that explains how your product or service solves a specific problem or fulfills a need for your target audience.&nbsp;</p>\n\n\n\n<p>SaaS marketers often use case studies to boost sales. Why? Because they provide real-world examples of how your solution addresses similar challenges for other customers. They work as social proof.&nbsp;</p>\n\n\n<p>Here’s a case study from&nbsp;Mailchimp:</p>\n\n\n<img width=\"851\" height=\"688\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-6.png\" alt=\"case study page from Mailchimp with a video\" class=\"wp-image-283583\" />\n\n\n\n<p>The video immediately makes the case study personal.&nbsp;</p>\n\n\n\n<p>The case study also highlights stats and customer quotes, which further increase its perceived authority.&nbsp;</p>\n\n\n\n<img width=\"1081\" height=\"465\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-7.png\" alt=\"Mailchimp landing page with stats and testimonials\" class=\"wp-image-283584\" />\n\n\n<p>It’s also skimmable. Mailchimp breaks down the case study with headers like “The challenge” and “The tools”. The word length also falls just under 1,000&nbsp;words.</p>\n\n<p>Balancing emotions and hard data in case studies connects with the audience while providing compelling evidence to back up your value&nbsp;proposition.</p>\n\n<h2 class=\"wp-block-heading\">9. Turn satisfied customers into brand&nbsp;advocates</h2>\n\n\n<p>Convert happy customers into brand advocates by using their positive experiences to spread the word about your brand through recommendations, reviews, and social sharing.&nbsp;</p>\n\n\n\n<p>Your existing customers are a powerful source of credibility and influence. This approach works for lead generation because it taps into the trustworthiness of online reviews — <a href=\"https://www.brightlocal.com/research/local-consumer-review-survey/\" target=\"_blank\" rel=\"noreferrer noopener\">46% of consumers</a> consider them as reliable as personal recommendations from friends or family.&nbsp;</p>\n\n\n<p>Want to encourage&nbsp;reviews?</p>\n\n<p>Try sending a reminder email to encourage people to leave reviews. Make the process as simple as possible. For example, you might include a button that navigates directly to the review&nbsp;form.</p>\n\n<p>You could also incentivize customers by allowing them to enter a drawing to win a $100&nbsp;voucher.</p>\n\n\n<p>Once customers leave reviews, repurpose them as posts on social media platforms.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">10. Create a referral program&nbsp;</h2>\n\n\n\n<p>Referral programs are systems where brands reward existing customers for recommending a product or service to others.&nbsp;</p>\n\n\n<p>People trust recommendations from friends and family members, so word&#8209;of&#8209;mouth marketing can lead to higher conversion rates and improved brand&nbsp;loyalty.</p>\n\n\n<p>PayPal, for example, has a popular referral program.&nbsp;</p>\n\n\n\n<img width=\"1223\" height=\"817\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-8.png\" alt=\"landing page about PayPal\'s referral program\" class=\"wp-image-283585\" />\n\n\n<p>If you refer it to someone, you and they earn $10. It’s a win&#8209;win situation — you get up to $100, and PayPal gets more&nbsp;customers.</p>\n\n\n<p>But a referral program only works well if you offer the right incentives.&nbsp;</p>\n\n\n<p><a href=\"https://info.saasquatch.com/rs/162-BJJ-156/images/StateOfReferralMarketing-SaaSquatch-V1.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Research</a> shows that dollar credit is the most common referral program reward type, used in over 50% of programs for promoters and referred friends. Other incentives include percent discounts, gift cards, subscription time, cash, and&nbsp;points.</p>\n\n<h2 class=\"wp-block-heading\">11. Invest in user&#8209;generated content to build&nbsp;credibility</h2>\n\n<p>User&#8209;generated content (UGC) is any content created by unpaid contributors — typically customers or users — rather than the brand&nbsp;itself.</p>\n\n\n<p>UGC works well — <a href=\"https://715411.fs1.hubspotusercontent-na1.net/hubfs/715411/TINT%20-%20Downloads/State_of_Social_and_UGC_2023_TINT.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">research</a> shows that prospective customers consider it the most trustworthy content.&nbsp;</p>\n\n\n<p>Why? UGC highlights genuine insights and experiences to create a sense of credibility and&nbsp;reliability.</p>\n\n\n<p>Chipotle’s entire social feed, for example, is full of UGC.&nbsp;</p>\n\n\n\n<img width=\"739\" height=\"1600\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-9.png\" alt=\"Chipotle Instagram account featuring lots of user-generated content\" class=\"wp-image-283586\" />\n\n\n<p>Three ways to generate&nbsp;UGC:</p>\n\n\n<ul><li><strong>Run a giveaway or contest</strong>. A contest encourages customers to share their experiences with your product or service in exchange for a chance to win a prize. It builds engagement and highlights real user satisfaction and&nbsp;enthusiasm.</li>\n\n<li><strong>Use a branded hashtag</strong>. Branded hashtags invite customers to share their content. These hashtags make UGC easily discoverable, increasing its reach and&nbsp;impact.</li>\n\n<li><strong>Collaborate with creators and influencers</strong>. Content creators and influencers help your UGC reach a broader audience. These individuals often have dedicated and engaged followers who trust their recommendations and&nbsp;experiences.</li></ul>\n\n\n<h2 class=\"wp-block-heading\">12. Use social listening to engage with potential&nbsp;leads</h2>\n\n\n<p>Social listening involves monitoring social media channels and online platforms to track and analyze conversations, mentions, and trends related to your brand or industry in real-time.&nbsp;</p>\n\n\n\n<p>People now spend an average of <a href=\"https://www.statista.com/statistics/433871/daily-social-media-usage-worldwide/\" target=\"_blank\" rel=\"noreferrer noopener\">two and a half hours</a> on social media every day.&nbsp;</p>\n\n\n\n<img width=\"730\" height=\"466\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-10.png\" alt=\"graph showing minutes per day spent on social media over an 11-year span\" class=\"wp-image-283587\" />\n\n\n<p>Social listening allows you to tune in to conversations, identify leads, and engage with potential customers you might have otherwise&nbsp;missed.</p>\n\n\n<p>Set up alerts to receive notifications about specific keywords or mentions. Social listening also gives you more visibility into brand sentiment.&nbsp;</p>\n\n\n<p>The result is a more proactive approach in your lead generation process — you can respond quicker, initiate conversations, and nurture potential leads through proactive&nbsp;engagement.</p>\n\n<h2 class=\"wp-block-heading\">13. Expand your reach with cross&#8209;promotion&nbsp;partnerships</h2>\n\n<p>Cross&#8209;promotion partnerships, also known as brand collaborations, are two brands joining forces to promote each other. These partnerships are powerful because they introduce your brand to a new audience that&#8217;s likely to already be interested in what you&nbsp;offer.</p>\n\n\n<p>Let&#8217;s say you sell fitness gear, and you team up with a healthy snack brand.&nbsp;</p>\n\n\n\n<p>Both kinds of products are used by people interested in improving their health.&nbsp;</p>\n\n\n\n<p>Your fitness-loving customers might discover those tasty snacks, and their snack fans might want your awesome gear. These collaborations boost both brands’ visibility and trustworthiness.&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">14. Use influencer marketing to reach new&nbsp;audiences</h2>\n\n<p>Collaborate with individuals who have a significant and engaged following in your niche or industry to tap into their established audience and&nbsp;credibility.</p>\n\n<p><a href=\"https://influencermarketinghub.com/ebooks/Influencer_Marketing_Benchmark_Report_2022.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">90% of respondents</a> in a survey consider influencer marketing to be&nbsp;effective.</p>\n\n\n<p>Skincare brand, La Roche Posay, for example, collaborates with Dr. Mamina Turegano, MD, a TikTok influencer and certified dermatologist.&nbsp;</p>\n\n\n\n<img width=\"739\" height=\"1600\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-11.png\" alt=\"TikTok video of a collaboration between a doctor and skincare brand\" class=\"wp-image-283588\" />\n\n\n\n<p><a href=\"https://vm.tiktok.com/ZGJwVy6yb/\">Source</a></p>\n\n\n<p>Dr. Marina&#8217;s expertise adds a lot of authority to the content, making it a powerful tool in reaching and engaging a specific&nbsp;audience.</p>\n\n\n<p>Her content is not just promotional —&nbsp;she delivers real value to her followers and backs up her advice with knowledge and experience.</p>\n\n\n<p>Collaborate with influencers who fit your brand and resonate with your audience for better&nbsp;results.</p>\n\n<h2 class=\"wp-block-heading\">15. Host a virtual summit to build thought&nbsp;leadership</h2>\n\n\n<p>Virtual summits are online events where experts share insights on a specific topic over multiple sessions or days.&nbsp;</p>\n\n\n<p>These events establish credibility, build trust, and increase industry authority, positioning you as a go&#8209;to source for information and&nbsp;solutions.</p>\n\n<p>Adobe Summit, for example, is a hybrid virtual summit for customers who use Adobe&#8217;s digital experience&nbsp;tools.</p>\n\n\n<img width=\"1134\" height=\"940\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-12.png\" alt=\"Adobe Summit landing page with information about the event\" class=\"wp-image-283589\" />\n\n\n\n<p>When hosting a virtual summit, follow Adobe&#8217;s lead by inviting authoritative speakers who are experts in your field.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"1393\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-13.png\" alt=\"Adobe Summit page with information keynotes\" class=\"wp-image-283590\" />\n\n\n\n<p>Promote the event well in advance. Adobe, for example, promotes the summit at least six months ahead of time. This builds anticipation and attracts a larger audience.&nbsp;</p>\n\n\n<p>Also, they provide sneak peeks of the sessions, allowing their audience to gauge whether the summit is worth&nbsp;attending.</p>\n\n\n<img width=\"800\" height=\"625\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-14.png\" alt=\"list of sessions from Adobe Summit\" class=\"wp-image-283591\" />\n\n\n\n<p>To make sure virtual summits help you get new leads, use smart tactics like sign-up forms, materials people can download, and chances for attendees to connect with each other.&nbsp;</p>\n\n\n\n<p>These tricks help you collect info and generate leads from attendees and keep these prospects engaged even after the summit.&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">16. Create a podcast series to showcase your&nbsp;expertise</h2>\n\n<p>Podcasts are the new frontier for brand visibility and engagement. Currently, <a href=\"https://www.edisonresearch.com/the-infinite-dial-2021-2/\" target=\"_blank\" rel=\"noreferrer noopener\">38% of Americans</a> over age 12 —109 million people — listen to podcasts monthly. They provide a unique platform to share insights, connect with audiences, and establish authority in a format that&#8217;s both convenient and increasingly&nbsp;popular.</p>\n\n<p>Bloomberg, for example, has a podcast that focuses on financial and economic insights. It positions the brand as a trusted source for expert analysis and helps it stay connected with its&nbsp;audience.</p>\n\n\n<img width=\"1798\" height=\"878\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image12.png\" alt=\"Bloomburg Masters in Business podcast\" class=\"wp-image-283592\" />\n\n\n<p>Here are some tips for creating an engaging podcast&nbsp;series:</p>\n\n\n<ul><li>Focus on a specific topic or niche that aligns with your brand&#8217;s expertise and target audience&#8217;s&nbsp;interests.</li>\n\n<li>Outline episodes, create a content calendar, and build a consistent posting&nbsp;schedule.</li>\n\n<li>Share your podcast episodes on social media, your website, and through email marketing to reach a wider&nbsp;audience.</li>\n\n<li>Invite industry experts or guests relevant to your niche to provide diverse&nbsp;perspectives.</li>\n\n<li>Optimize your podcast titles, descriptions, and keywords to improve discoverability on podcast&nbsp;platforms.</li>\n\n<li>Maintain a regular publishing schedule, so your audience knows when to expect content and what each episode will&nbsp;include.</li></ul>\n\n\n<p>A podcast is a great way to establish your brand&#8217;s authority, connect with your audience, and tap into the growing&nbsp;trend.</p>\n\n<h2 class=\"wp-block-heading\">17. Use webinars to educate and engage potential&nbsp;leads</h2>\n\n\n<p>Webinars are online seminars or workshops that allow you to present information, interact with your audience in real time, and provide valuable education on a specific topic or subject.&nbsp;</p>\n\n\n<p>A study by the Content Marketing Institute showed that <a href=\"https://contentmarketinginstitute.com/wp-content/uploads/2022/10/b2b-2023-research-final.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">47% of B2B marketers</a> said webinars produced the best results in 2021. It’s easy to see why: they offer an interactive learning experience and encourage engagement which builds your authority and relationship with potential&nbsp;leads.</p>\n\n<p>AI&#8209;powered content tool, Clearscope, for example, hosts regular webinars with industry&nbsp;experts.</p>\n\n\n<img width=\"895\" height=\"853\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-15.png\" alt=\"Clearscope webinars list on their website\" class=\"wp-image-283593\" />\n\n\n<p>Here are some tips on getting webinars&nbsp;right:</p>\n\n\n<ul><li><strong>Choose relevant topics</strong>: Focus on topics that address your audience&#8217;s challenges and interests to ensure engagement and&nbsp;relevance.</li>\n\n<li><strong>Create an interactive Q&amp;A session</strong>. Include interactive Q&amp;A sessions to encourage audience participation and address their specific&nbsp;queries.</li>\n\n<li><strong>Invite experts</strong>. Collaborate with industry experts or influencers to lend credibility and attract a wider&nbsp;audience.</li>\n\n\n<li><strong>Promote it</strong>. Promote your webinar on social and through email.&nbsp;</li>\n\n\n<li><strong>Follow up</strong>. Follow up with attendees and provide additional resources or offers to guide leads further down the sales&nbsp;funnel.</li></ul>\n\n\n<h2 class=\"wp-block-heading\">18. Engage and qualify leads with live chat operators and&nbsp;bots</h2>\n\n\n<p>Live chat operators and bots qualify leads by having conversations with website visitors.&nbsp;</p>\n\n\n\n<p>They ask questions to figure out if a visitor is a good fit for your product or service. If they are, the bots send those leads to the right place for follow-up.&nbsp;</p>\n\n\n<p>Lead qualification ensures you focus your sales and marketing efforts on individuals who are genuinely interested and likely to convert into paying customers. A strong focus increases efficiency and increases conversion&nbsp;rates.</p>\n\n<p>Tailor bots with specific filters and ask relevant questions. Qualifying questions&nbsp;include:</p>\n\n\n<ul><li>What brings you to our website&nbsp;today?</li>\n\n<li>Are you looking for a specific product or&nbsp;service?</li>\n\n<li>What is your marketing budget or price&nbsp;range?</li>\n\n<li>When do you plan to make a decision or&nbsp;purchase?</li>\n\n<li>Have you used similar products/services&nbsp;before?</li>\n\n<li>Do you have any specific requirements or&nbsp;preferences?</li></ul>\n\n\n<h2 class=\"wp-block-heading\">19. Use retargeting to bring back lost&nbsp;leads</h2>\n\n\n<p>Retargeting involves displaying tailored advertisements to individuals who’ve previously visited your website or engaged with your brand but didn&#8217;t take the desired action.&nbsp;</p>\n\n\n<p>It reminds potential customers of their initial interest and gives them a second chance to convert, ultimately improving conversion rates and&nbsp;ROI.</p>\n\n\n<p>Suppose you visit Old Navy&#8217;s website, browse through some clothing items, but leave without making a purchase. Later, you start seeing Old Navy ads showing the exact items you looked at.&nbsp;</p>\n\n\n\n<img width=\"585\" height=\"602\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-16.png\" alt=\"retargeting ad from Old Navy\" class=\"wp-image-283594\" />\n\n\n<p>That&#8217;s retargeting in action — it gives you a nudge to come back and complete your purchase. It&#8217;s a smart lead gen strategy to re&#8209;engage lost prospects and turn potential customers into actual&nbsp;ones.</p>\n\n<p>Retargeting only works when you don’t overdo it. Strike a balance and provide relevant, personalized content that genuinely reconnects with the audience&#8217;s interests and&nbsp;needs.</p>\n\n<h2 class=\"wp-block-heading\">20. Target key decision makers with account&#8209;based&nbsp;advertising</h2>\n\n<p>An account&#8209;based marketing strategy creates customized lead generation campaigns just for important leads to win their&nbsp;business.</p>\n\n\n<p>A targeted focus leads to optimal use of resources, a direct link to key decision makers, and increased chances of landing big deals.&nbsp;</p>\n\n\n<p><a href=\"https://www.gartner.ca/en/sales/insights/b2b-buying-journey\" target=\"_blank\" rel=\"noreferrer noopener\">Gartner’s research</a> shows that the typical buying group for a complex B2B solution involves six to ten decision makers. Account&#8209;based advertising targets these decision makers with specific ads and messages to address their unique needs and&nbsp;concerns.</p>\n\n<p>Here’s an example of an Indeed ad that targets decision makers at&nbsp;Pepsi:</p>\n\n\n<img width=\"1202\" height=\"624\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-17.png\" alt=\"ad from Indeed targeting Pepsi employees\" class=\"wp-image-283595\" />\n\n\n<p>So, how do you create ads that speak to these&nbsp;individuals?</p>\n\n<p>Start with their challenges. Understand what keeps them up at night and tailor your messaging to provide solutions to these issues. Focus on the benefits of your product or service that directly address their&nbsp;concerns.</p>\n\n<h2 class=\"wp-block-heading\">What about lead conversion? What are proven best&nbsp;practices?</h2>\n\n\n<p>You&#8217;ve attracted leads to your business —&nbsp;what now? Focus on converting these leads into loyal customers. Here are some best practices to maximize your lead conversion rate:</p>\n\n\n<h3 class=\"wp-block-heading\">1. Follow up with leads to maintain their&nbsp;interest</h3>\n\n\n<p>Following up with leads reminds them about your business and shows you care about their needs. Persistence matters — studies suggest it can take <a href=\"https://www.wordstream.com/blog/ws/2021/03/18/how-to-follow-up-with-sales-leads\">seven to ten interactions</a> for a lead to become a customer.&nbsp;</p>\n\n\n<p>When sending follow&#8209;up emails, keep them brief, upbeat, and focused on offering something valuable to the lead. Short and positive messages ensure your communication stays engaging and increase the chances of turning leads into loyal&nbsp;customers.</p>\n\n<h3 class=\"wp-block-heading\">2. Develop a lead scoring system to prioritize&nbsp;leads</h3>\n\n\n<p>A lead scoring system is a method of evaluating and ranking leads based on their level of interest and likelihood to convert into customers. You identify the best prospects by assigning numerical values to different attributes and behaviors.&nbsp;</p>\n\n\n\n<p>You focus your efforts and resources on leads with the highest conversion potential with this system.&nbsp;</p>\n\n\n<p>Scoring leads allows you to optimize your time and resources and maximize your return on investment. Consider these lead scoring&nbsp;tips:</p>\n\n\n<ul><li><strong>Set thresholds</strong>. Define specific criteria a lead must meet to be considered &#8220;sales ready,&#8221; like a minimum score indicating high interest or&nbsp;engagement.</li>\n\n<li><strong>Establish rules</strong>. Create rules for how leads are scored based on actions, like opening emails, visiting pricing pages, or downloading&nbsp;resources.</li>\n\n<li><strong>Assign points</strong>. Assign numerical values to different lead behaviors, with higher scores for actions that show stronger interest or intent to&nbsp;purchase.</li>\n\n<li><strong>Review and adjust</strong>. Monitor and refine your lead scoring system as you gather more data and insights to ensure&nbsp;accuracy.</li>\n\n<li><strong>Collaborate with sales</strong>. Establish what constitutes a qualified lead and adjust scoring criteria accordingly to improve lead handoffs and&nbsp;conversions.</li></ul>\n\n\n<h3 class=\"wp-block-heading\">3. Use a CRM to manage and track your&nbsp;leads</h3>\n\n\n<p>A customer relationship management (CRM) tool, like <a href=\"https://jetpackcrm.com/\">Jetpack CRM</a>, is your go-to for staying organized with leads. It keeps all lead info in one place, simplifies communication, and automates tasks.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"784\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-18.png\" alt=\"Jetpack CRM homepage with the text \" />\n\n\n\n<p>With Jetpack CRM, sort and track leads, follow their interactions, and watch their journey closely. This makes it easier to give them personalized attention, prioritize who to reach out to, and nurture leads. Plus, it provides smart data to make decisions that boost your chances of converting prospects into loyal customers.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">4. Implement email marketing to nurture&nbsp;leads</h3>\n\n\n<p>Stay in touch with potential customers through email marketing and provide them with valuable content, updates, and offers that keep your brand top of mind.&nbsp;</p>\n\n\n\n<p>Delivering tailored messages at the right time guides leads through the buying journey and builds trust.&nbsp;</p>\n\n\n<p>Divide your leads into groups based on interests, behaviors, or demographics to send relevant content to each segment. Use personalization techniques to address leads by name and tailor content to their needs and&nbsp;preferences.</p>\n\n<p>Develop informative and engaging content that addresses your leads&#8217; pain points and interests. You can offer blog posts, eBooks, webinars, or exclusive offers. Set up automated email sequences that deliver a series of messages over time. Gradually introduce leads to your brand, products, and&nbsp;services.</p>\n\n<p>Focus on solving problems and providing value in your emails. Show leads how your offerings benefit them with success stories, testimonials, and case&nbsp;studies.</p>\n\n<h3 class=\"wp-block-heading\">5. Use customer feedback to improve your sales&nbsp;process</h3>\n\n<p>Gather feedback from customers through surveys, reviews, and direct communication. Encourage honest opinions about their experience with your sales team and product. Here&#8217;s how to make the most of the feedback you&nbsp;get:</p>\n\n\n<ul><li><strong>Analyze responses</strong>. Review the feedback to identify recurring themes, issues, or areas for improvement. Look for patterns in what customers appreciate and where they face&nbsp;challenges.</li>\n\n<li><strong>Prioritize feedback</strong>. Categorize feedback into critical issues that need immediate attention and areas for long&#8209;term improvement. This ensures you tackle the most pressing concerns&nbsp;first.</li>\n\n<li><strong>Adjust your sales approach</strong>. Based on feedback, refine your approach. Train your sales team to address common concerns and&nbsp;objections.</li></ul>\n\n\n<h3 class=\"wp-block-heading\">6. Follow up with customers to encourage repeat business and&nbsp;referrals</h3>\n\n\n<p>Stay in touch with your customers to build an ongoing relationship. A thank-you message after their purchase and asking how their experience was is always a great place to start.&nbsp;</p>\n\n\n<p>Also, keep them in the loop by letting them know about any new deals or products. If they have questions or issues, provide excellent support. Encourage them to refer friends by offering rewards and making it simple. Staying connected and showing appreciation keeps your customers loyal and earns new ones through their&nbsp;recommendations.</p>\n\n<h2 class=\"wp-block-heading\">Frequently asked&nbsp;questions</h2>\n\n<h3 class=\"wp-block-heading\">What are some common lead generation mistakes to&nbsp;avoid?</h3>\n\n\n<p>Common lead generation mistakes include not defining your target audience, neglecting data quality, and relying on a single lead generation channel. Failing to nurture leads, ignoring customer feedback, and neglecting mobile optimization can also hinder success.&nbsp;</p>\n\n\n<p>Make sure you measure and analyze your lead generation efforts so you can optimize them. Don&#8217;t forget personalization and adapt to evolving trends. Lead generation is more effective when you avoid these&nbsp;mistakes.</p>\n\n<h3 class=\"wp-block-heading\">How can I improve my lead capture forms to maximize&nbsp;conversions?</h3>\n\n<p>Streamline the form by keeping it concise and requesting only essential information. Use a clear and compelling call&#8209;to&#8209;action (CTA) that conveys value and implement autofill and smart form features to reduce user effort. It’s also a good idea to A/B test different form layouts and CTA text to identify what resonates best with your audience.&nbsp;</p>\n\n<p>Lastly, reassure users about data security and provide social proof, like trust badges or testimonial snippets, to boost confidence. Regularly analyze form performance and iterate based on insights to optimize for higher&nbsp;conversions.</p>\n\n<h3 class=\"wp-block-heading\">Should I use CAPTCHA on lead capture&nbsp;forms?</h3>\n\n<p>No, using traditional CAPTCHA can frustrate users and reduce conversion rates. Instead, use AI&#8209;driven anti&#8209;spam solutions like Akismet. This powerful tool filters out spam submissions while providing a seamless experience for genuine users. It also helps you maintain the security of your forms without subjecting users to the inconvenience and frustration of&nbsp;CAPTCHA.</p>\n\n<h3 class=\"wp-block-heading\">What is Akismet, and how can it help with form conversion&nbsp;rates?</h3>\n\n<p>Akismet is an AI&#8209;powered anti&#8209;spam solution. It improves form conversion rates by filtering out spam submissions, ensuring you capture only legitimate leads. Eliminating CAPTCHA challenges streamlines the lead capture process and creates a user&#8209;friendly and frictionless experience. With fewer barriers, visitors are more likely to fill out forms, resulting in higher conversion&nbsp;rates.</p>\n\n<h3 class=\"wp-block-heading\">What types of companies generally use&nbsp;Akismet?</h3>\n\n<p>Akismet is a trusted choice for a wide range of companies, from small businesses and bloggers to ecommerce sites and <a href=\"https://akismet.com/enterprise/\">large enterprises</a>. Over 100 million sites use it to combat spam, making it a go&#8209;to solution. Microsoft, <a href=\"https://akismet.com/blog/convertkit-customerstory/\">ConvertKit</a>, Bluehost, and many others rely on Akismet, attesting to its credibility and reliability in fighting&nbsp;spam.</p>\n\n<h2 class=\"wp-block-heading\">Akismet: AI&#8209;powered anti&#8209;spam for lead generation&nbsp;forms</h2>\n\n\n<p>Lead generation forms are the lifeblood of any business that wants to convert website visitors into potential customers. But spam submissions create a challenging user experience and lead to missed opportunities.&nbsp;</p>\n\n\n<p>That&#8217;s where Akismet steps in as a reliable, AI&#8209;powered anti&#8209;spam solution. Integrating Akismet ensures a smoother, spam&#8209;free experience that ultimately improves conversion rates. Try it out today and focus on what matters most — nurturing high&#8209;quality&nbsp;leads.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Dec 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Rob Pugh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"HeroPress: Being useful to people, with WordPress – Être utile aux autres, avec WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=6298\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"https://heropress.com/essays/being-useful-to-people-with-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=being-useful-to-people-with-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:26756:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/12/122223-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I started by going back to my roots.\" /><div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><a href=\"https://heropress.com/feed/#fr\">Cet essai est également disponible en français.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hi-computer\">Hi Computer</h2>\n\n\n\n<p>I was born in 1996, straddling the X and Y generations. I had the good fortune to live a happy childhood where I was very much supported by my parents, each in their own way, in my passions. They both taught me to trust myself and to try things out, for which I&#8217;m very grateful. When I was a child, personal computers were already democratized, but many people didn&#8217;t have one. This was my case until I was 10, when my parents decided to buy one.</p>\n\n\n\n<p>Upon gaining access to my first computer, I was intrigued by how it works and the possibilities it offered. It allowed me to explore new creative way (so much time on Pivot Animator) and introduced me to the realm of online games! Unfortunately for my parents, my experimentation led to the death of two computers.</p>\n\n\n\n<p>I had a strong fondness for browser games like Travian, Shakes &amp; Fidget, Hordes… It was this passion that led me into the world of content creation for the web. Spending a substantial amount of time on these games&#8217; forums, a friend and I created our first forum for our gaming guild. Using an online forum creation tool, we could inject some code for customization—a kind of initiation into Content Management Systems (CMS) and coding for me! I remember thoroughly enjoying it, investing a lot of time in managing this small, private forum.</p>\n\n\n\n<p>In 2011, as I entered high school, I finally obtained what felt like a treasure trove to me at that time &#8211; my very own personal computer! Enthused by graphic design, I began crafting visuals using a portable version of Photoshop, mainly for the gaming forums where I spent a significant amount of time. I dedicated myself to creating banners, avatars, and wallpapers centered around the game themes that united us, providing these creations for my friends and forum users.<br /></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-discover-a-new-world\">Discover a new world</h2>\n\n\n\n<p>I had a strong desire to pursue this creative path, so in 2014, I opted for a web design program in Laval. The curriculum covered a wide array of skills: programming, mathematics, graphics design, photography, video editing, among others. I&#8217;ve consistently found mathematical and logical areas challenging, making the foundational aspects of the course in these subjects quite laborious for me. Conversely, I derived immense enjoyment from everything connected to graphic design.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_571a4b-06\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/1-discover-1024x1024.jpg\" alt=\"Man looking through the eye piece of a video camera.\" class=\"kb-img wp-image-6320\" /></div>\n\n\n\n<p>My first encounter with WordPress came during an internship related to my studies. The company I joined specialized in selling products online through a small e-commerce platform they had internally built using WordPress and WooCommerce. My tasks involved managing the website: integrating visuals, updating content, configuring plugins, improving the interface using a page builder, and handling product management. It evoked a similar feeling to when I first created my gaming blog—there was a multidisciplinary spirit and a creative vibe. I enjoyed this hybrid approach that blended both creativity and technical aspects.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-leveling\">Leveling</h2>\n\n\n\n<p>At the end of 2016, I made a move to settle in the south of France and initiated my first freelance endeavor alongside pursuing additional training in web design at Aix-Marseille University. My freelance work involved various graphic design projects and community management tasks. Despite realizing the challenges of generating sufficient income, I remained motivated by the sense of independence and freedom. I began experimenting with WordPress through personal projects. Over the course of two years, I self-educated extensively. I ventured into managing web hosting and a small server, acquainted myself with Linux and Ubuntu, learned to customize themes, and made simple PHP additions. I navigated through trial and error, learning from mistakes, and gradually honed my overall understanding of the tool, becoming better at adapting it to suit my needs.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_5dc9a3-bf\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/2-leveling-1024x1024.jpg\" alt=\"View down old European street from the third floor window,\" class=\"kb-img wp-image-6321\" /></div>\n\n\n\n<p>During a second company internship, I embarked on creating a website where I developed my first custom theme using PHP templates and a few custom fields. It was simple, but I felt quite proud to build a theme &#8220;from scratch&#8221; without relying on page builders or additional tools. Shortly after, a significant milestone occurred in my freelance journey: I sold my first website! It was an e-commerce platform built on WordPress and WooCommerce for a local publishing house. This venture introduced me to new challenges such as SEO, ensuring site security, and providing client training in WordPress usage and essential plugins for the site. I felt incredibly proud to apply my skills to a tangible project and gain professional recognition.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-team-up\">Team Up</h2>\n\n\n\n<p>After that project, I wanted a change. I liked working on my own, but I felt very lonely. Every day felt the same, and I struggled to stay motivated. After feeling excited about selling my first &#8216;real&#8217; web project, things started to feel like a series of failures, which stressed me out because my savings were running low. I sent out my resume hoping to find a job that suited me. I had a few interviews with digital service companies (named ESN in French), and it was disheartening. I felt like my wide range of skills didn&#8217;t matter, and whenever I talked about WordPress, they said it wasn&#8217;t &#8216;technical&#8217; enough.</p>\n\n\n\n<p>After six months of searching, I finally found a job I was excited about at a web agency in Avignon. It felt like I&#8217;d been looking for a long time, but now I see I was lucky to find this opportunity quickly. I started as a front-end developer and mostly worked on WordPress projects, doing various tasks like crafting or customizing themes, configuring or developing plugins, keeping websites running smoothly, training clients and agency staff. Collaborating with complementary roles where everyone understood each other’s tasks was so nice. Finding a common way to handle different missions was so exciting! This team synergy, the great diversity of tasks, sharing our experiences and perspectives, greatly boosted my motivation and skill development.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_8ff45f-a9\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/3-teamup.jpg\" class=\"kb-advanced-image-link\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/3-teamup-1024x1024.jpg\" alt=\"Office space with tables covered with computer monitors.\" class=\"kb-img wp-image-6322\" /></a></div>\n\n\n\n<p>I worked for four years in this agency, whose strategy evolved significantly as its size exploded (from 20 to 100 employees in three years). Choices tended towards large, architectured projects with less hybrid solutions. Over time, I felt less connected to the agency&#8217;s decisions and the kind of clients they had. I wondered about the meaning and impact of my work. Was I making things better for people? Was what I did ethical? In the end, did it really matter? </p>\n\n\n\n<p>For a while, I&#8217;ve been interested in eco-design, privacy, and web quality topics. I&#8217;ve been reading a lot of articles written by folks that resonated to me (like Framasoft, Designers Éthiques, Whodunit, Opquast&#8230;). There was a stark disparity between my professional experience and their meaningful discourse. The work atmosphere also changed; I didn&#8217;t feel the teamwork that I enjoyed when I first started, but more like a &#8216;fog&#8217; of disagreements and noises.</p>\n\n\n\n<p>This was tough for me: I worried about going to work and had trouble sleeping. I truly felt like my time was slipping away. I left in March 2023, and what a good decision it was!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-shifting-for-better\">Shifting for better</h2>\n\n\n\n<p>I started by going back to my roots; I need to slow down, reassess my desires to figure out where I stand, to do something different. I return to Brittany and settle in Saint-Malo near my family. My primary desire is to reclaim my time. Seven years in the South… what I missed the most was the sea. I know I had the Mediterranean nearby, but strangely it didn&#8217;t have the same effect on me. I&#8217;ve always wanted to surf, so I buy an old used board, a wetsuit, and I go into the water almost every day! It clears my mind and boosts my confidence. I&#8217;ve never been much of an athlete, but this really resonates with me.</p>\n\n\n\n<p>I&#8217;m not particularly skilled with my hands, nor have I learned how to do things. I want to learn, with ecological and sustainable issues in mind. I sign up for participatory workshops and meet incredibly interesting people. We share our experiences, our knowledge, life moments… and it feels good.</p>\n\n\n\n<p>I start reading a lot again &#8211; science fiction, fantasy, essays, classics, and discussions on forums, especially those on wordpress.org.</p>\n\n\n\n<p>I come across a discussion about creating a WordPress site using a smartphone. &#8220;Wait, is something like this possible?&#8221; Through the conversation, I notice the name of a contributor: <a href=\"https://heropress.com/essays/alice-robert-and-wordpress/\">Mark-Andrew</a>. I visit his site and I&#8217;m blown away; the guy creates sites for people who need them for free, &#8220;Free Websites for good Humans.&#8221; It&#8217;s simple, yet I find it incredibly inspiring. For me, Mark-Andrew has found a way to give meaning to his skills and align it with his lifestyle.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_f15404-e9\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/4-shifting-1.jpg\" class=\"kb-advanced-image-link\"><img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/12/4-shifting-1-1024x512.jpg\" alt=\"Two pictures in one.  On the left, someone surfing in the distance.  On the right a man holding a wooden framework.\" class=\"kb-img wp-image-6324\" /></a></div>\n\n\n\n<p>That&#8217;s what I want to do. I&#8217;ve learned a lot about the WordPress ecosystem, and I continue to learn every day. Why not try to help those in need with this open, free, and community-oriented solution? That would make sense!</p>\n\n\n\n<p>This is the path I want to travel &#8211; to make this accessible solution available to all who need it to express themselves and create. Furthermore, I want to contribute to the WordPress community. I&#8217;m considering starting with translations into French, but I hope to also contribute to the new site editor, which I find simply fantastic. We&#8217;ll see how it goes!</p>\n\n\n\n<p>WordPress taught the jack-of-all-trades kid to trust himself and feel useful. For that, thank you. And thank you, Mark-Andrew; I hope we&#8217;ll meet for a surfing session (On the water or the asphalt as you wish).</p>\n\n\n\n<p>Thank you for taking the time to read me <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h1 class=\"wp-block-heading\" id=\"fr\">Être utile aux autres, avec WordPress</h1>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-salut-internet\">Salut Internet</h2>\n\n\n\n<p>Je suis né en 1996, à cheval entre la génération X et Y. J&#8217;ai eu la chance de vivre une enfance heureuse où j&#8217;ai été très soutenu par mes parents, chacun à sa manière, dans mes passions. Ils m&#8217;ont tous deux appris à me faire confiance et à essayer des choses, pour cela, je conçois beaucoup de gratitude à leur égard.  Quand j&#8217;étais enfant, l&#8217;informatique pour le grand publique était déjà démocratisé, mais beaucoup de gens n&#8217;avaient pas d&#8217;ordinateur personnel. Ce qui fut mon cas jusqu&#8217;à mes 10 ans où mes parents en on acquit un.</p>\n\n\n\n<p>Lorsque j&#8217;ai eu accès à ce premier ordinateur, j&#8217;ai tout de suite été intéressé par son fonctionnement et ce que je pouvais faire avec. Cela m&#8217;a donné accès à de nouvelles activités créatives (que de temps passé sur Pivot Animator) et aussi à l&#8217;univers du jeu sur PC ! Malheureusement pour mes parents, mes expérimentations ont conduit à la mort de deux ordinateurs. J&#8217;aimais beaucoup les jeux sur navigateur (Travian, Shakes &amp; Fidget, Hordes…) et c&#8217;est cet engouement qui m&#8217;a mis le doigt dans l&#8217;engrenage de la création de contenu pour le web. Je passais pas mal de temps sur les forums de ces jeux, et j&#8217;ai créé avec un ami un premier forum pour notre guilde de joueurs. Nous utilisions un outil en ligne de création de forum dans lequel nous pouvions injecter un peu de code pour la personnalisation. Ma toute première expérience avec un CMS et du code en somme ! Je me souviens avoir adoré ça et passé un temps fou sur ce petit forum privé.</p>\n\n\n\n<p>En 2011, arrivant au lycée, j&#8217;ai enfin eu accès au saint Graal, mon propre ordinateur personnel ! Je m&#8217;intéressais à la création graphique, et j&#8217;ai commencé à produire des visuels avec une version portable de Photoshop, toujours pour les forums de jeux sur lesquels je passais du temps. Je créais pour mes amis et des utilisateurs : des bannières, des avatars et fonds d&#8217;écrans sur les thèmes des jeux qui nous rassemblaient.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-tellement-de-choses-a-apprendre\">Tellement de choses à apprendre</h2>\n\n\n\n<p>J&#8217;avais envie de continuer sur cette voie créative et je me suis orienté en 2014 vers une formation de création pour le web à Laval. La palette de compétence enseignée était assez vaste : programmation, mathématiques, infographie, photographie, vidéo… J&#8217;ai toujours eu du mal avec les domaines mathématiques et logiques, et le socle de la formation sur ces sujets étaient assez laborieux pour moi. En revanche, je prenais beaucoup de plaisir à tout ce qui rapportait à la création graphique.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_2c4713-e3\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/1-discover-1024x1024.jpg\" alt=\"Man looking through the eye piece of a video camera.\" class=\"kb-img wp-image-6320\" /></div>\n\n\n\n<p>Ma première utilisation de WordPress s&#8217;est présentée lors d&#8217;un stage lié à ma formation. L&#8217;entreprise que j&#8217;avais rejoint vendais des produits en ligne sur un petit e-commerce qu&#8217;ils avaient créé en interne avec WordPress et WooCommerce. J&#8217;avais pour tâche de m&#8217;occuper du site : intégrer des visuels, mettre à jour les contenus, configurer des plugins, ajuster l&#8217;interface avec un constructeur de page, gérer les produits…  Je retrouvais le même sentiment que lorsque j&#8217;avais créé mon premier blog de jeu, un esprit multidisciplinaire et un sentiment très créatif. J&#8217;aimais beaucoup cette approche très hybride de la création et de la technique.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-premiers-essais\">Premiers essais</h2>\n\n\n\n<p>Fin 2016, je suis parti m&#8217;installer dans le sud de la France où j&#8217;ai commencé ma première activité de freelance en parallèle d&#8217;une formation supplémentaire sur la création pour le web de l&#8217;université d&#8217;Aix-Marseille. Je réalisais quelques missions de création graphique et de community management. Je me suis rendu compte qu&#8217;il était difficile de dégager des revenus suffisants, mais j&#8217;étais motivé par les sentiments d&#8217;indépendance et de liberté. J&#8217;ai commencé à tester et à expérimenter sur WordPress à travers des petits projets personnels. Pendant deux ans, j&#8217;ai appris en autodidacte. Je me suis essayé à la gestion d&#8217;un hébergement web puis d&#8217;un petit serveur, j&#8217;ai découvert Linux et Ubuntu, j&#8217;ai appris à personnaliser des thèmes, à faire quelques ajouts simples en PHP. Je tâtonnais, je faisais des erreurs, je corrigeais… Petit à petit, je forgeais ma culture générale sur l&#8217;outil et j&#8217;arrivais de mieux en mieux à l&#8217;adapter à mes besoins.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_4071c3-b2\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/2-leveling-1024x1024.jpg\" alt=\"View down old European street from the third floor window,\" class=\"kb-img wp-image-6321\" /></div>\n\n\n\n<p>Au cours d&#8217;un second stage en entreprise, je réalisais un site pour lequel je développais mon premier thème sur mesure avec des templates PHP et quelques champs personnalisés. Il était vraiment très simple, mais j&#8217;étais assez fier de bâtir un thème &#8220;from scratch&#8221; sans constructeur de page ni outils supplémentaires. Peu après, j&#8217;ai vécu une grande étape dans mon expérience de freelance : j&#8217;ai vendu un premier site internet ! Un e-commerce basé sur WordPress et WooCommerce pour une petite maison d&#8217;édition locale. Je me suis confronté à de nouvelles problématiques : Le SEO, la sécurité, la formation du client à l&#8217;usage de WordPress et des plugins supplémentaires sur lesquels reposait le site. J&#8217;étais super fier de mettre mes compétences au service d&#8217;un projet concret et de cette reconnaissance professionnelle.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-travailler-en-equipe\">Travailler en équipe</h2>\n\n\n\n<p>Après ce projet, j&#8217;ai eu besoin de changement. J&#8217;étais content d&#8217;être indépendant dans mon travail, mais je me sentais très seul. Les journées se ressemblaient beaucoup et je n&#8217;arrivais plus à trouver la motivation pour continuer. Après l&#8217;euphorie d&#8217;avoir vendu mon premier &#8220;vrai&#8221; projet web, j&#8217;avais l&#8217;impression d&#8217;être dans une spirale d&#8217;échecs et ça me stressait d&#8217;autant plus que mes économies commençaient sérieusement à s&#8217;amenuiser. J&#8217;ai diffusé mon CV en espérant trouver un poste qui puisse me correspondre. J&#8217;ai eu quelques entretiens avec des recruteurs d&#8217;entreprise de services numériques (ESN) et c&#8217;était franchement déprimant. J&#8217;avais le sentiment que mon profil touche-à-tout était sans valeur, et à chaque fois que je parlais un peu de WordPress, on me rétorquait que ce n&#8217;était pas assez &#8220;technique&#8221;. </p>\n\n\n\n<p>Après six mois de recherche, j&#8217;ai finalement trouvé un poste qui me faisait super envie dans une agence web à Avignon. J&#8217;ai eu l&#8217;impression que cette période de recherche avait été très longue. Mais rétrospectivement, je me sens chanceux d&#8217;avoir eu cette opportunité aussi rapidement. </p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_6c0ba1-95\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/3-teamup.jpg\" class=\"kb-advanced-image-link\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/3-teamup-1024x1024.jpg\" alt=\"Office space with tables covered with computer monitors.\" class=\"kb-img wp-image-6322\" /></a></div>\n\n\n\n<p>J&#8217;ai démarré en tant que développeur front-end et j&#8217;ai travaillé en majorité sur les projets WordPress qui comportaient beaucoup de missions différentes : développement ou personnalisation de thèmes, développement ou configuration de plugins, maintenance régulière des sites, formation des clients, formations des collaborateurs de l&#8217;agence…  Je trouvais trop bien de bosser avec des métiers complémentaires où chaque personne avait une bonne compréhension du travail des autres. Je découvrais un référentiel commun pour effectuer des missions différentes, c&#8217;était tellement enthousiasmant ! Cette synergie d&#8217;équipe, la grande diversité des missions, le partage de nos expériences et de nos points de vue ont beaucoup boosté ma motivation et ma montée en compétence. </p>\n\n\n\n<p>J&#8217;ai travaillé quatre ans dans cette agence dont la stratégie a beaucoup évolué tandis que sa taille explosait (de 20 à 100 collaborateurs en trois ans). Les choix se portaient plutôt sur des gros projets architecturés avec des solutions moins hybrides. Petit à petit, je me suis de moins en moins retrouvé dans les décisions et la typologie de clients de l&#8217;agence. Je me posais beaucoup de question sur le sens de mon travail et l&#8217;impact de celui-ci. Est-ce que j&#8217;apportais des solutions pour améliorer la vie des gens à mon échelle ? Est-ce que ce que je produisais était éthique ? À la fin, est-ce que c&#8217;était si important ?</p>\n\n\n\n<p>Depuis un bon moment, je m&#8217;intéressais aux sujets de l&#8217;éco-conception, de la vie privée, de la qualité web. Je lisais beaucoup d&#8217;articles écris par des associations, des entreprises et des acteurs du numérique qui m&#8217;inspiraient (Framasoft, Designer Éthiques, Whodunit, Opquast…). Je ressentais un énorme décalage entre mon expérience professionnelle et leurs discours qui avaient tellement de sens pour moi. L&#8217;ambiance de travail, elle aussi, avait complètement changé, je ne ressentais plus la synergie qui m&#8217;avait tant plu à mon arrivée, mais une espèce de &#8220;brouillard&#8221; de frictions, de cacophonie. <br />Cette situation était très difficile à vivre pour moi : j&#8217;angoissais à l&#8217;idée d&#8217;aller travailler et je dormais très mal. J&#8217;avais vraiment cette sensation que mon temps m&#8217;échappait. Je suis parti en mars 2023, et quelle bonne décision !</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-retrouver-du-sens\">Retrouver du sens</h2>\n\n\n\n<p>Je commence par revenir aux sources, j&#8217;ai besoin de ralentir, de poser mes envies pour savoir où j&#8217;en suis, de faire autre chose. Je rentre en Bretagne et je m&#8217;installe à Saint-Malo près de ma famille. Mon premier désir, c&#8217;est de me réapproprier mon temps. Sept ans dans le sud… ce qui m&#8217;a manqué le plus c&#8217;est la mer. Je sais bien que j&#8217;avais la méditerranée à côté, mais étrangement ça ne me fait pas le même effet. J&#8217;ai toujours eu envie de faire du surf, alors j&#8217;achète une vieille planche d&#8217;occasion, une combinaison, et je vais à l&#8217;eau presque tous les jours ! Ça me vide l&#8217;esprit et me donne confiance en moi, je n&#8217;ai jamais été un grand sportif, mais là, j&#8217;accroche.</p>\n\n\n\n<p>Je ne suis pas vraiment doué de mes mains, on ne peut pas dire que j&#8217;ai appris à le faire non plus. Je veux apprendre, avec les problématiques de l&#8217;écologie et du soutenable en tête. Je m&#8217;inscris à des chantiers participatifs et je rencontre des gens tellement intéressants. On partage notre expérience, nos savoirs, des moments de vie… et ça fait du bien.</p>\n\n\n\n<p>Je recommence à lire beaucoup, des livres de science-fiction, de fantasy, des essais, des classiques, mais aussi des discussions sur des forums et notamment ceux de wordpress.org.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_33c6f2-eb\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/4-shifting-1.jpg\" class=\"kb-advanced-image-link\"><img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/12/4-shifting-1-1024x512.jpg\" alt=\"Two pictures in one.  On the left, someone surfing in the distance.  On the right a man holding a wooden framework.\" class=\"kb-img wp-image-6324\" /></a></div>\n\n\n\n<p>Je tombe sur une discussion concernant la création de site WordPress avec un smartphone. &#8220;Tiens c&#8217;est possible un truc pareil ?&#8221; Au fil de la discussion, je vois passer le nom d&#8217;un contributeur : <a href=\"https://heropress.com/essays/alice-robert-and-wordpress/\">Mark-Andrew</a>. Je visite son site et je prends une claque, le gars produit des sites gratuitement pour les personnes qui en ont besoin &#8220;Free Websites for good Humans&#8221;. C&#8217;est tout simple, mais je trouve ça super inspirant. Pour moi, Mark-Andrew a trouvé comment donner du sens à ses compétences et à accorder le tout avec son mode de vie.</p>\n\n\n\n<p>C&#8217;est ça que je veux faire. J&#8217;ai énormément appris sur l&#8217;écosystème WordPress et je continue chaque jour, pourquoi ne pas essayer d&#8217;en faire bénéficier ceux qui en auraient besoin ? Cela aurait du sens !<br />Voilà le chemin sur lequel je veux voyager, rendre accessible cette solution ouverte, gratuite et communautaire à tous ceux qui en ont besoin pour s&#8217;exprimer et créer. Pour aller plus loin, j&#8217;ai aussi envie de contribuer à la communauté WordPress, je pense commencer par la traduction en français, mais j&#8217;espère avoir le plaisir de contribuer aussi au nouvel éditeur de site que je trouve juste génial. On verra bien !</p>\n\n\n\n<p>WordPress à appris au gamin touche-à-tout à se faire confiance et se sentir utile. Alors pour ça, merci. Et merci Mark-Andrew, j&#8217;espère qu&#8217;on se rencontrera pour une session glisse.</p>\n\n\n\n<p>Merci d&#8217;avoir pris le temps de me lire <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" /></p>\n</div></div>\n<p>The post <a href=\"https://heropress.com/essays/being-useful-to-people-with-wordpress/\">Being useful to people, with WordPress &#8211; Être utile aux autres, avec WordPress</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Dec 2023 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Quentin Le Duff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress.org blog: WP Briefing: Episode 69: Reflections on State of the Word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/episode-69-reflections-on-state-of-the-word/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10692:\"<p>In this episode, WordPress Executive Director Josepha Haden Chomphosy reflects on the recent 2023 State of the Word, which took place in Madrid, Spain, and some of the highlights of the work across the WordPress open source project.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\">State of the Word Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/\">WordPress Developer Blog</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/12/22/wordpress-end-of-year-celebrations/\">WordPress End of Year Celebrations!</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/12/11/introducing-enhanced-content-safety-features-on-openverse/\" target=\"_blank\" rel=\"noreferrer noopener\">Introducing Enhanced Content Safety Features on Openverse</a>&nbsp;&#8211; Introducing new features for enhanced content safety on Openverse. </li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\" target=\"_blank\" rel=\"noreferrer noopener\">Alert: WordPress Security Team Impersonation Scams</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/12/02/join-the-plugin-review-team/\" target=\"_blank\" rel=\"noreferrer noopener\">Join the Plugin Review Team!</a> &#8211; The Plugin Review Team is looking for new members; the deadline to apply is on December 31, 2023.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16654\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40]&nbsp;<strong>Josepha:</strong> We wrapped up State of the Word earlier this month, and while I was sitting there being the only person to clap for the love of cake, I realized just how much we have been able to accomplish this year. And on the one hand, I shouldn&#8217;t be surprised.</p>\n\n\n\n<p>After all, progress is radical over time yet incremental in time. But all told, 2023 has been a big year for WordPress. There&#8217;s been some radical progress in a few places. There are the things you know because you&#8217;ve heard them all year. You heard them in State of the Word.</p>\n\n\n\n<p>We turned 20, for instance. We shipped three on-time releases. We had three well-organized flagship events, and we prototyped essential parts of phase 3. But there&#8217;s a lot of work that happens outside of flagship events and software releases, and I&#8217;d like to highlight a few examples of operational excellence in our community and ecosystem.</p>\n\n\n\n<p>[00:01:31] <strong>Josepha:</strong> First highlight goes to the contributors who are building community. Going back to 2021, we&#8217;ve been working to bring people back together in person.</p>\n\n\n\n<p>And in that year, we had 19 events. In 2022, we had 24 events, so a modest increase of just over 30%. But then, in 2023, the WordPress community banded together on a campaign to reignite passion in our Meetup groups and encourage playfulness in our WordCamp planning. And not only did we see a 57% increase in active Meetup groups, But we also saw a 116% increase in WordCamps, 54 WordCamps in all. That&#8217;s about a third of the way to our all-time annual high of 142.</p>\n\n\n\n<p>And to complement these in-person opportunities, Learn also shipped 104 pieces of new content and hosted 258 online workshops because location should never be a barrier to entry for joining WordPress.&nbsp;</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong> Second highlight goes to the contributors who are managing our directories. We do have a lot of directories. We have Plugins, Themes, Photos, Block plugins. We got a lot.</p>\n\n\n\n<p>And I&#8217;m sure that everyone saw the consistent and borderline pleading calls to join the Plugin team this year. And for folks who&#8217;ve been around a bit, you probably recall a similar set of consistent and pleading calls to join the Theme team a few years back. Concurrent with the work to refill that contribution pipeline, folks over in Meta and across the project generally, were working on automating as many checks as possible, loosening guidelines where it was reasonable, and modernizing as many processes as we could.</p>\n\n\n\n<p>I&#8217;m happy to share that the theme wait time is at a historic low, with their longest wait sometimes just at a week. And as anxious as I am about the plugin wait times, we&#8217;re actually seeing a lot of progress there as well. As we follow a process similar to the one that we did on themes, I imagine it&#8217;s only gonna get better. So, in 2023, we&#8217;ve onboarded six new team members. And since September, the number of plugins awaiting initial review has been cut in half.</p>\n\n\n\n<p>And then coming up in Q1 of 2024, we&#8217;ll have a project focused entirely on automating as many checks as possible. So I still need you, but I also need you to know that your work there matters and is having an impact.</p>\n\n\n\n<p>[00:03:55] <strong>Josepha:</strong> The third highlight goes to the contributors who are doing outreach. This year, we launched a mentorship program with an 89% completion rate because we&#8217;ve seen time and again that our most prolific contributors had someone at the start that they felt safe asking dumb questions with. We launched and nurtured the developer blog, which was a need identified by the community because there was no place for intermediate and advanced developers to get excited about their cool explorations. And there were 53 posts there this year with thirteen thousand views, which is a 251% increase for the record, which is a ridiculous increase, but it&#8217;s a lot. Thirteen thousand views is a lot.</p>\n\n\n\n<p>We have focused on documentation as we suggested in Porto of 2022. And marketing, I know not always our favorite topic, but marketing, our ability to talk about ourselves to more than just ourselves, has increased dramatically this year.&nbsp;</p>\n\n\n\n<p>Not only have we started rolling out a modern design across our website, but we also are present and engaged on eight different platforms with 20-plus episodes of this very podcast and also video content that netted us seven and a half million views this year. That&#8217;s a lot of numbers, and there&#8217;s a post that goes with it.</p>\n\n\n\n<p>[00:05:10] <strong>Josepha:</strong> Check out the show notes. But if you&#8217;re not gonna check out the show notes because you listen to this on Pocket Casts or Google or something, go to make.WordPress.org/project, and it&#8217;ll be over there. But the point is, it&#8217;s been a banner year for the software, and I am grateful for every tester, designer, and developer that showed up for it. But I also know that what makes WordPress truly irreplaceable is our ecosystem, and it&#8217;s contributions like this and the contributors who do them that make our ecosystem vibrant and responsive and thriving on into the future.</p>\n\n\n\n<p>So, thank you all for the contributions you make to WordPress. Thank you for the shining example of how to do open source at scale, and thank you for another great year together.&nbsp;</p>\n\n\n\n<p>[00:06:04] <strong>Josepha:</strong> Which brings us now to our small list of big things. It is indeed a small this time. First up, I would like to introduce our enhanced content safety features on Openverse. By default, search results now exclude openly licensed media containing sensitive textual content. But this new feature adds additional filtering based on titles, tags, and descriptions of the work as well.</p>\n\n\n\n<p>[00:06:27] <strong>Josepha:</strong> The second thing on our small list of big things is that there is just a general alert. There&#8217;s a WordPress security team impersonation scam that&#8217;s going on out there. The team is aware of multiple ongoing phishing scams impersonating both the WordPress team and the WordPress security team in an attempt to convince administrators to install a plugin on their website which contains malware. I&#8217;ll include a link to that post just in case you have anyone that you think might need to be aware of that, but also all of our site administrators know. Like, WordPress is not gonna email you asking for passwords or anything ever. </p>\n\n\n\n<p>[00:07:02] <strong>Josepha:</strong> And item number three, I would like you to join the Plugin review team. I know I just said it in the body of the episode. But, the Plugin review team is looking for new members still who believe in our mission of guiding plugin authors in responsibly transforming their innovative ideas into reality and ensuring a great WordPress plugin experience for end users. There is a deadline to apply; it&#8217;s December 31st. And so you can get that done over the holidays, over a glass of eggnog if that&#8217;s how you choose to celebrate whatever it is that you do. </p>\n\n\n\n<p>And that&#8217;s it for your small list of big things.&nbsp;</p>\n\n\n\n<p>Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. See you again in a couple of weeks.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Do The Woo Community: Goodbye 2023 and Hello 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78744\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://dothewoo.io/goodbye-2023-and-hello-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"<p>As we look at the past year, and what 2024 holds, we are growing even more globally and elevating more voices. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/goodbye-2023-and-hello-2024/\">Goodbye 2023 and Hello 2024</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Dec 2023 13:12:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: #104 – Thomas Fanchin on Community Engagement in WordPress Sponsorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=151915\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/podcast/104-thomas-fanchin-on-community-engagement-in-wprdpress-sponsorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42029:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, community engagement in WordPress sponsorship.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Thomas Fanchin. Thomas is a WordPress enthusiast and is the partnership manager for Weglot, which is a solution for translating websites, not limited to WordPress.</p>\n\n\n\n<p>His role means that he&#8217;s immersed in the WordPress community. He&#8217;s passionate about connecting with, and learning from, others in the community. Thomas talks on the podcast about Weglot&#8217;s involvement in WordPress initiatives and events.</p>\n\n\n\n<p>We get into how they decide what to sponsor, and what they hope to get in return. Thomas discusses the difficulties in tracking the effectiveness of marketing efforts at events. They&#8217;ve tried all manner of approaches, and we chat about the complex nature of measuring the return on investment, and whether it&#8217;s enough to have brand visibility as the only outcome.</p>\n\n\n\n<p>The conversation turns to the unique engagement opportunities within the WordPress and open source community. And whether these events are different from other, more corporate, events held elsewhere.</p>\n\n\n\n<p>Weglot operates both within and beyond the WordPress ecosystem, and Thomas shares the company&#8217;s focus on adaptability and replication in other communities. While profitability comparisons between WordPress and Shopify events are not easy to measure, thomas acknowledges both platforms are strong partners for Weglot, expressing interest in engaging with new content management systems and communities.</p>\n\n\n\n<p>Thomas wants to explore some innovative sponsor initiatives beyond typical events in the near future. He thinks that guest posts, supporting meetups, and sharing personal expertise might be potential ways for companies to effectively engage in the WordPress space.</p>\n\n\n\n<p>But not everything is new, and Thomas talks about Weglot&#8217;s approach towards flagship events, like WordCamp Asia and WordCamp US. They are hard at work already figuring out what they&#8217;re going to bring along, and how they&#8217;re always trying to think outside of the box.</p>\n\n\n\n<p>If you&#8217;re interested in learning about the intricacies of sponsorship, the impact of sponsored engagements at events, and the future landscape of sponsor initiatives within the WordPress community, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay, I bring you Thomas Fanchin.</p>\n\n\n\n<p>I am joined on the podcast today by Thomas Fanchin. Hello, Thomas.</p>\n\n\n\n<p>[00:03:46] <strong>Thomas Fanchin:</strong> Hey. How&#8217;s it going?</p>\n\n\n\n<p>[00:03:48] <strong>Nathan Wrigley:</strong> Good, thank you. Very nice to have you on the podcast. We&#8217;ve intended to do this podcast before, but we had some gremlins and so we finally got to it. And I appreciate you staying the course, Thomas. Really appreciate it.</p>\n\n\n\n<p>Just to give people some context, we&#8217;re going to be talking a little bit about sponsorship, perhaps about events today. But I guess it would be important to give you an opportunity to say who you are, and why your voice matters in this space. So a little time for a bio. Would you just tell us, Thomas, who you are and what your background is with WordPress. Who you work for, that kind of thing.</p>\n\n\n\n<p>[00:04:17] <strong>Thomas Fanchin:</strong> Oh gosh. That&#8217;s a lot of information. I&#8217;m going to try to stay brief. Who am I? I work at Weglot, as a partnership manager there. My day to day task consisting interacting with tech partners, but also a lot with communities, including WordPress.</p>\n\n\n\n<p>I started my journey within WordPress during my time when I was a student. I wanted to create a website. It was a pet website, back in the days I wanted to launch my own business. So that&#8217;s how I discovered WordPress. But I didn&#8217;t know anything about the community. I was trying to do everything by myself.</p>\n\n\n\n<p>When I started to work at Weglot, that&#8217;s when I started to interact a little bit with people from the community, meetup organiser, WorldCamps, organisers. But also just people doing podcasts and other things, inside of WordPress. Once you get to interact with people inside of the WordPress community, you&#8217;re just always going to talk with a lot of people, and do a lot of stuff around WordPress. So that&#8217;s how I got into where I&#8217;m right now today</p>\n\n\n\n<p>[00:05:23] <strong>Nathan Wrigley:</strong> We should probably explain exactly what Weglot does, because people may or may not understand what it does. But obviously it puts you squarely in the international localisation space. So just give us a, again, almost like a bio for Weglot. What does it do?</p>\n\n\n\n<p>[00:05:36] <strong>Thomas Fanchin:</strong> Yeah. So Weglot is basically a transition plugin, that allow you to translate our website into multiple language. It&#8217;s super simple plugin to use. It&#8217;s easy to set up. If you ever want to try it, just go for it and let us know what are your thoughts about it?</p>\n\n\n\n<p>[00:05:52] <strong>Nathan Wrigley:</strong> Okay, so we&#8217;re going to talk a little bit today about the WordPress community, and about decisions that Weglot have made, in terms of where their endeavors lie. Obviously, every company in the WordPress space would love to grow and grow, and one of the ways that people do that is to sponsor events. They might sponsor particular online events, or WordCamps, and things like that.</p>\n\n\n\n<p>So we&#8217;re going to dig into that a little bit. We&#8217;re not talking about what you&#8217;re going to do in the future, that&#8217;s up to you to decide. But in the past, what kind of things have Weglot done to get themselves out there in front of the WordPress community?</p>\n\n\n\n<p>[00:06:27] <strong>Thomas Fanchin:</strong> We have sponsored quite a few WordCamps and meetups, in the past. During my first year, we&#8217;ve sponsored around 50 WordCamps, and it was almost the same with the meetups. Like, we sponsored maybe 30 meetups, something like that. Which was great. There was definitely a lot of logistic behind it.</p>\n\n\n\n<p>And back then, we were thinking about becoming global sponsors. Because at some point it was hard for us to keep up with all the events, and for logistic matters too. We thought about it. And also, we were starting to think, yeah, what&#8217;s the next big move? What can we do more? What can we do better?</p>\n\n\n\n<p>So we tried the global sponsorship, for two years now. It was also super interesting. With the global sponsorship came also new challenges. We also started to invest more into Five for the Future. I would say, yeah, we&#8217;re still super invested and trying to support more initiatives, and support more of the WordPress community.</p>\n\n\n\n<p>[00:07:31] <strong>Nathan Wrigley:</strong> When you sit down with all of the decision makers in Weglot, how do you decide what it is that you are going to do? Because, obviously I&#8217;m not a sponsor, I have never sponsored anything, but I&#8217;ve spoken to quite a few people from different companies. And if we just take the example of WordCamp, let&#8217;s just stick with WordCamp and maybe some of the bigger events.</p>\n\n\n\n<p>My understanding is that most of the companies who support that with sponsorship, they don&#8217;t generally think about it as something which they can measure a return on investment immediately. So let&#8217;s say that they sponsor, and they put $50,000 into sponsoring a particular WordCamp. They&#8217;re not thinking, okay, we need to get that $50,000 back, or $100,000, or some multiple thereof.</p>\n\n\n\n<p>It&#8217;s more about just being a good citizen. Making sure that people are aware that the company exists. And we&#8217;re in financial times at the moment, where every dollar spent is really something that has to be thought about. So I just wondered if you wanted to give us an idea, why do you sponsor? Why have you been a global sponsor? What have you hoped to get out of it, and has it delivered what you wanted?</p>\n\n\n\n<p>[00:08:40] <strong>Thomas Fanchin:</strong> It&#8217;s another big question. So I&#8217;m going to try to reply with as much elements as I can. I think, first of all, it depends on the company culture. So if you are a company and you were built, or you are based, around one specific community, then it becomes easier for you to just talk about budget for the community support. Because, I mean, the company is originally based around it. Maybe the owners are already aware of what it is.</p>\n\n\n\n<p>And if you take, for example, Weglot, for us, the community, it&#8217;s equel feedback. So a lot of people from the team used to do support tickets, back in the days. And a lot of us are still doing it. So it make the connection between the users, the community, the support, which is our frontline, and the company. So it&#8217;s just a connection for us. Which can help us when it comes to decisioning to, yeah, we&#8217;re going to support this, or we&#8217;re going to sponsor this event.</p>\n\n\n\n<p>The other part that is also super important, obviously is the visibility part. You mentioned it. It&#8217;s super important for us to be visible, for people to be aware of the product, of what it does.</p>\n\n\n\n<p>And there is also the giving back part. Because obviously you are a company, you are growing and it&#8217;s good. But when you grow, you make the community also, the people that help you to grow, grow with you. So basically, it&#8217;s like creating a win win situation between your company growth, and the community.</p>\n\n\n\n<p>I think when you combine the three, it&#8217;s let&#8217;s say, easier to set up budget, and to have this type of discussion. And it also depends maybe on your marketing strategy too. We can get into that.</p>\n\n\n\n<p>For us, we divided into two type of strategies. So there is growth marketing, and there you have some KPIs, and it&#8217;s based on performance. And you have brand marketing. Brand marketing is not based on performance. But the Weglot brand, it&#8217;s combined with community, and with events. So we cannot dissociate both, which is good for us as a brand, and good also for the community. And it&#8217;s not based on performance.</p>\n\n\n\n<p>The thing that mattered to us, is that the product, again, is visible. And when someone think about multilingual, we want him to think about Weglot. We know that there are agencies, freelancers, partners, people within the WordPress space, but also outside of the WordPress space, who think about Weglot, because they have met us somewhere in Asia, during WordCamp Asia, or at an event five years ago, or at a meetup, or during a conference. But it&#8217;s hard to track that. But we know that it&#8217;s working.</p>\n\n\n\n<p>[00:11:23] <strong>Nathan Wrigley:</strong> When you say you know that it&#8217;s working, is that just an intuition that you anecdotally hear that people, when you maybe ask them, where did you hear about us? It may have been that they can link back to a sponsorship at a particular event. Or, is it more anecdotal than that? You just get a sense that there&#8217;s an uptick in sales immediately after events, and things like that.</p>\n\n\n\n<p>[00:11:43] <strong>Thomas Fanchin:</strong> Yeah. I think the tracking part is really hard to measure. We&#8217;ve tried a couple of things in the past, like coupon deals. It didn&#8217;t work out. We tried QR code too, because I know like a lot of us are trying to flash the QR code, and it wasn&#8217;t the best solution too. We tried to have people fill up forms. It wasn&#8217;t the best solution. And in terms of logistic, it&#8217;s just super hard to maintain.</p>\n\n\n\n<p>I know some companies are trying like this massive gift by participating an event, by entering your actual information, and so on. But I&#8217;m not sure that it has the best return on investment for them. It&#8217;s more a visibility thing, I think. I&#8217;m not sure. Maybe it&#8217;s working. If it&#8217;s working, it&#8217;s awesome and it&#8217;s cool. But I think it&#8217;s more a visibility matter.</p>\n\n\n\n<p>I think there is no real tracking that you can set up to measure this type of action. Which is why we separate both, and you have growth marketing and brand marketing. Both goals are set aside.</p>\n\n\n\n<p>[00:12:44] <strong>Nathan Wrigley:</strong> We are in a very interesting community, in that we&#8217;re quite unique I think. The open source movement, but WordPress particular. In that we turn up to these events, and we know that there&#8217;s going to be sponsors there, and we may interact with those sponsors. But on some level, the open source, the nature of open source has this kind of no sponsorship feel to it, if you know what I mean? There&#8217;s this kind of, everything is free, and we give our time for free, and all of that kind of thing.</p>\n\n\n\n<p>So I just wonder if you collide with that. You turn up to these events, you&#8217;ve paid a lot of money to be a part of the sponsorship area, and maybe the crowd that have turned up are not, you know, that willing to engage with you. Maybe in a different environment, a much more corporate environment, people would be willing to make that trade a little bit more, and they might be more willing to come and talk with you, because, I don&#8217;t know, they&#8217;ve got a different agenda.</p>\n\n\n\n<p>Do you sense that a little bit? Is there something about this community which makes it harder to advertise towards them? And if that&#8217;s the case, I presume that you have to keep juggling that.</p>\n\n\n\n<p>[00:13:45] <strong>Thomas Fanchin:</strong> I guess the goal is to try to be really innovative, in a way that people come and interact with you. So, it&#8217;s really your role, as a sponsor to try to make sure that you do not cross a certain line. And that everything that you put out there, in terms of content, the booth, the people that are here, the people with whom you are working to, are aligned with the community culture, with the company culture too. That way you make sure that people come and interact with you.</p>\n\n\n\n<p>I don&#8217;t see people as really like hostile toward us. Working at Weglot for the past five years, I&#8217;ve only had positive feedback about what we do inside of a community, and also about the product itself. From time to time, people don&#8217;t like it. It&#8217;s totally fine. And it&#8217;s good, because that way you can, yeah, like amazing feedbacks. To be honest, I don&#8217;t see anything wrong within the community and how it&#8217;s working out. From my perspective, and from the sponsor perspective too, I don&#8217;t know about what others might think, but that&#8217;s just my thoughts.</p>\n\n\n\n<p>[00:14:57] <strong>Nathan Wrigley:</strong> In your introduction, when you were describing Weglot, you mentioned that WordPress is one aspect of that. But I&#8217;m reading between the lines, I could be wrong. Is it the case that Weglot operates outside the WordPress ecosystem as well? And if that&#8217;s the case, do you have a different approach to your marketing in the different markets? So firstly, let&#8217;s answer that question. Does it operate outside of WordPress? And if the answer to that is yes, what kind of things do you bolt onto? Is it other CMSs, or what?</p>\n\n\n\n<p>[00:15:25] <strong>Thomas Fanchin:</strong> So the two founders of Weglot, they always had these goals of creating a solution for translation, that could be used on any website on the market. That was the purpose of the tool. We started to launch it on WordPress, but we also made a version for Shopify. And now you have this general integration that you can use on any website. And so the answer is yes. You can use Weget outside of WordPress.</p>\n\n\n\n<p>Regarding question two, I think it&#8217;s a similar approach. It might be because of the company culture, and because of where we started. WordPress is like a big part of what we do inside of different communities. We believe that what we are doing here is really positive. And if something is working, and it&#8217;s positive, what you are going to try to do is to replicate it in other communities.</p>\n\n\n\n<p>It&#8217;s really what we try to do, but at the same time, of course, you need to adapt yourselves to the other communities. Because, I don&#8217;t know, maybe it&#8217;s not the same people inside of a community. Maybe it&#8217;s more like corporate people. Maybe it&#8217;s people that are not interested about open source. Maybe it&#8217;s people who don&#8217;t know at all about how to code. I don&#8217;t know. There is various communities out there. And yeah, I would say like, we try to adapt ourself, and at the same time we try to replicate what&#8217;s working.</p>\n\n\n\n<p>[00:16:47] <strong>Nathan Wrigley:</strong> This is going to be a difficult question to answer, potentially, because you may not have the numbers hand. But do you know if, let&#8217;s take the example of Shopify. Do you know if Shopify gives Weglot a greater level of profitability? For every dollar spent on events, or on advertising on Facebook, or Google, or whatever it may be, wherever those dollars get spent. Do you know if there is a greater profitability in one of those communities, than there is in another?</p>\n\n\n\n<p>[00:17:15] <strong>Thomas Fanchin:</strong> That&#8217;s the big question. What I can say is that WordPress and Shopify, they are one of our big partners, with a strong attachment to WordPress. Because when the two founders launch Weglot, it was during WordCamp Paris. So that&#8217;s what I can say.</p>\n\n\n\n<p>I don&#8217;t have the specific numbers in mind, but it&#8217;s true that there is a lot of new communities and new CMSs out there that are emerging. And it&#8217;s definitely super interesting to interact with them for me as a partner manager. And to discover new CMSs, new communities, that comes with new people from like various communities out there.</p>\n\n\n\n<p>[00:17:54] <strong>Nathan Wrigley:</strong> So we&#8217;ve spent quite a bit of time talking about sponsoring events, but obviously sponsoring could be in all sorts of different directions. And I think you mentioned things like Five for the Future. I&#8217;m wondering if that&#8217;s something that Weglot explore. So, you know, if you&#8217;re listening to this podcast and you are working for a company, and you&#8217;re trying to think of innovative, interesting ways, and obviously you could sponsor a WordCamp, that one&#8217;s fairly straightforward.</p>\n\n\n\n<p>Are there any other things that you do? So for example, do you sponsor particular individuals to contribute to the code base? Do you sponsor some smaller events like meetups, or anything like that? Do you do things like Five for the Future, or any other things that we may not have heard of? So anything outside the normal typical WordPress events.</p>\n\n\n\n<p>[00:18:34] <strong>Thomas Fanchin:</strong> I think it&#8217;s a quite interesting topic, because I think like everyone within the WordPress space, like companies, they can do like various innovative initiatives. We are all like super, super busy with our agendas. But you could contribute by providing, I don&#8217;t know, guest posts, content in the areas where you are an expert. For example, for us it would be like multilingual.</p>\n\n\n\n<p>So if you have a content team, or people from your content team that could help others. You could also, let&#8217;s say, help meet up organisers with their venues. At Weglot, from time to time, there is like this marketing community. They come to have breakfast at Weglot in the morning. It&#8217;s not cool for the employees because you get to work and everybody is eating, and you need to work. You could also do that.</p>\n\n\n\n<p>From a personal standpoint, I did a couple of talks during meetups, around multilingual. I mean, I&#8217;m not the best. I&#8217;m sure there is plenty of people with more knowledge than me. But I have my own expertise, and my experience, and I can share it. And so far I&#8217;ve received just positive feedbacks. There is various stuff that you could do at a personal level inside of a company.</p>\n\n\n\n<p>And yeah, of course we are also doing Five for the Future. We are sponsoring, I think, right now, three contributors inside of the community team, and the Polyglot team too. It&#8217;s quite interesting. It&#8217;s something totally new for us. We never did it in the past. And what we try to have various people who are really enthusiastic about the community, and who loves to do plenty of stuff. It will be like, I don&#8217;t know, recruitment, just someone that would come like to the Weglot team and work. We try to have the same type of people with whom we&#8217;re collaborating there, which is awesome.</p>\n\n\n\n<p>We also supported, you mentioned meetups, we also supported a few meetups in different ways, because we try to always adapt the budget. And also the way that we support those meetups, because some of them, they need money for the venue. Other needs equipment. And there is like layers of people out there who have specific needs, so we try to adapt ourself.</p>\n\n\n\n<p>We&#8217;re also doing something quite interesting. There&#8217;s the Weglot community there, where we invite our ambassadors, inside of the company, for one or two days. And they get to meet everyone from the company, and they get to teach about what they do inside of specific communities, and how it helps Weglot.</p>\n\n\n\n<p>It&#8217;s super interesting because it helps the company culture. When you are growing, and you have more and more people coming inside of the company, it&#8217;s interesting to learn the basics, but also to understand what we are doing inside of WordPress, or inside of other communities too.</p>\n\n\n\n<p>Because obviously for us, it&#8217;s simple. We know what the community is about. We know what we&#8217;re doing. We know what&#8217;s WordPress, what&#8217;s a meetup, what&#8217;s a WordCamp. But maybe like for others, it&#8217;s a little bit more, not hard to understand, but there is less visibility on this type of action. Which is why it&#8217;s super interesting to have community people to come and just interact with the team.</p>\n\n\n\n<p>One thing that is quite interesting, because you mentioned that we are present on different communities, and we also have different ambassadors. And this year we&#8217;re making a community day in March, if I&#8217;m right. If I&#8217;m wrong, my event manager is going to be mad at me. And some of them will be outside of WordPress. And they would meet each other and attend like conference during the day, and teach to each other what they do in different space. And also about their approach, because it&#8217;s not the same approach. So it&#8217;s going to be quite interesting to have those type of interaction. But yeah, maybe I&#8217;m being too long.</p>\n\n\n\n<p>[00:22:12] <strong>Nathan Wrigley:</strong> No, that&#8217;s really interesting. You mentioned the ambassadors. Who are they then? it sounds like they&#8217;re people who are closely aligned with what you do, but not employees. They&#8217;re just people that use your services and products, but they&#8217;re not on the payroll. But they&#8217;re willing to give some of their time over to your endeavors. That&#8217;s interesting.</p>\n\n\n\n<p>[00:22:28] <strong>Thomas Fanchin:</strong> Yeah. The ambassador program is something that we have put together because we started to sponsor quite a few WordCamps. And it was hard for us to be able to travel from point A, to point B, to point C. You could imagine having an event in France, another one in Spain, and another one in England. So it&#8217;s hard to commute. At the end you would be like totally tired. And it&#8217;s not the goal. The goal is, of course, to have a nice balance between personal life and work life.</p>\n\n\n\n<p>We found out that there was plenty of people who were attending WordCamps, and were willing to do it for companies like us. We tried to find some community people who shared the same thoughts as we do, inside of Weglot. Love the product, want to talk about it, and want to participate inside of a community, That&#8217;s how it started.</p>\n\n\n\n<p>Now we have a few ambassadors who are working with us. We try now, since this year, it&#8217;s the first time that we did the community day, so we try to have the ones that are representing us in like various countries, to come up in Paris with us and discuss with the team.</p>\n\n\n\n<p>[00:23:40] <strong>Nathan Wrigley:</strong> That&#8217;s a really nice initiative. I like that. I also just like the fact that there&#8217;s people who are so into what you do as a product, that they&#8217;re willing to donate their time. It&#8217;s almost like a little microcosm of the WordPress project inside the Weglot project. You&#8217;ve got volunteers who are helping you out. Yeah. That&#8217;s fascinating.</p>\n\n\n\n<p>I&#8217;m going to just encourage the listeners of the podcast to go to the show notes, and I&#8217;m going to link to a piece on the make.wordpress.org website by Cate DeRosia. It was published on the 29th of November 2023, and it&#8217;s called, Should We Allow Sponsor Demo Rooms or Tracks at Events. I&#8217;m also going to link to a piece over on Post Status by Marieke van de Rakt. The name of that piece escapes me at the moment. But it was all about the WordPress community getting divided into participants on the one hand, and sponsors and companies on the other hand.</p>\n\n\n\n<p>And I&#8217;m interested about this. I&#8217;m interested to know from your perspective. Now we&#8217;ve talked a little bit about how you make a return on investment, or whether that&#8217;s necessary or not. But I&#8217;m wondering if, as the years have gone on, you mentioned that you&#8217;ve been involved in WordPress for five years or more. Have you still got the same excitement for attending these kind of events, or do you wish there to be some kind of change?</p>\n\n\n\n<p>And in Cate DeRosia&#8217;s piece, she&#8217;s basically saying, do we need to think a little bit outside of the box in order to get sponsors to attend these events? It sounds, the undercurrent, I guess is that it&#8217;s harder than ever to get the sponsors, enough sponsors, to cover the cost of the events.</p>\n\n\n\n<p>So I&#8217;m just wondering if the people in the comments, you have any ideas on how your sponsor dollars could be spent? Such that you feel you&#8217;re getting more value than you are at the moment.</p>\n\n\n\n<p>[00:25:21] <strong>Thomas Fanchin:</strong> From a personal point of view, it&#8217;s definitely super amazing to be able to travel to this event. Because you get to travel from all over the globe, thanks to WordPress, which is super cool. I&#8217;ve never been in Asia, and I went to Bangkok earlier this year, which was awesome.</p>\n\n\n\n<p>And you get to spend time there with people with whom you have a close relationship now, thanks to WordPress. And people with whom you are friends now during this event, and that you&#8217;re not probably going to meet throughout the year, which is just amazing.</p>\n\n\n\n<p>And from a, more of a sponsor level, I would say maybe five years ago there was more engagement. If you take an event like WordCamp Europe, we&#8217;ve talked a little bit about it, let&#8217;s talk about it again here. Yeah there were for sure like, maybe more participants and more engagement in WordCamp Europe in Berlin, than maybe now the last WordCamp Europe in Athens. It was like a really huge event, with way more sponsors than five years ago.</p>\n\n\n\n<p>People I believe, at least that&#8217;s my thoughts, were a little bit lost with all the sponsors, and all the tracks, and everything that was happening. It was still an amazing event. I love it. It was awesome. But yeah, maybe there was a little bit less engagement.</p>\n\n\n\n<p>And there were also other events, like in Asia, where it was just like WordCamp Asia, was just amazing. I&#8217;ve spoke with so many people that were interested about the product, about what we do. And it was something new, because it was the first time too. So I guess we&#8217;ll see like this year, next year, and the coming years how it&#8217;ll evolve. But I&#8217;m sure it could be positive.</p>\n\n\n\n<p>Yeah, maybe right now there is less engagement. But if we go back to the beginning of this conversation, I think the job of a lot of sponsors here, is to try to be innovative to attract people. It could be your booth. It could be the activities that we are doing.</p>\n\n\n\n<p>I think right now it is just, we are at a stage where we should all start to think about outside of the box, and think about crazy ideas that we could put together, to have people come interact with your product. But also with what you do inside of a company.</p>\n\n\n\n<p>[00:27:44] <strong>Nathan Wrigley:</strong> Yeah, I think Cate&#8217;s piece really is raising that question. So, maybe it&#8217;s off the back of data saying what you&#8217;ve just said, where the engagement is maybe down. And it&#8217;s curious that you found that the engagement was up in WordCamp Asia. So maybe that&#8217;s because they were doing things differently. Maybe they had a different, just a whole different approach, and they&#8217;re trying innovative new things. Certainly speaking to some of the organisers, that was very much the intent, was to try out some new things. And from your perspective, that seems to work.</p>\n\n\n\n<p>But as attendees of the events will know, the ticket price is incredibly low. And that is largely offset by sponsors. And so if sponsors, like Weglot, determine that the engagement, it&#8217;s going down. Maybe we shouldn&#8217;t sponsor this particular event. That then jeopardises the event in the future. So Cate&#8217;s piece, I guess, is trying to figure out if there are things which would attract the sponsors.</p>\n\n\n\n<p>So she&#8217;s suggesting things like demo rooms, and various other things are suggested in the chat. But she&#8217;s thinking things like, could we have a standalone room just for demos, for sponsors? Would it be possible to offer them different kind of packages? What would those packages contain? Could there be maybe some, I don&#8217;t know, an event which is at the end of the event as a whole, where the sponsors get up and get to give away prizes or something like that.</p>\n\n\n\n<p>The point is thinking out the box. And we did an episode a few weeks ago, which again I&#8217;ll link to in the show notes, where we&#8217;re talking about next gen events. And all of that, again, seems to be talking about a picture of, these events are after the pandemic at least. We&#8217;re struggling to get them back. We&#8217;re struggling for the sponsors to be interested. We&#8217;re struggling to get the numbers back. And so being innovative matters.</p>\n\n\n\n<p>Do you think that you&#8217;ll be, in the next five years, sponsoring these events at the same level, or do you have an intuition that you&#8217;ll be going your own route and trying things own way?</p>\n\n\n\n<p>[00:29:32] <strong>Thomas Fanchin:</strong> Yeah. If we&#8217;re talking about the flagship events, I know that next year we will still support all of them, which is great. I already know that for WordCamp Europe, we are going to have a really nice booth there. And everyone is right now working to be as innovative as possible, to make sure that everyone has a super nice experience entering into the Weglot booth. I hope it&#8217;s going to be amazing.</p>\n\n\n\n<p>In WordCamp Asia, I know that we are working right now on the booth, the concept and everything that we&#8217;re going to do there, which is awesome. And I think it&#8217;ll be the same for WordCamp US.</p>\n\n\n\n<p>On a more global perspective, I know that this year, we are not going to be global sponsors. But the reason behind it, is that we want to diversify the way that we support WordPress. And we are going to try to invest more into new initiatives, but also into contribution space, and into Five for the Future.</p>\n\n\n\n<p>But yeah, it doesn&#8217;t mean that we are stopping anything. We are still going to support the flagships, and other WordCamps too. We are going to be just more selective into the WordCamps that we are supporting.</p>\n\n\n\n<p>But I think, for us, it&#8217;s more the logistics behind supporting like all the events. It was hard to follow up. And we always had that goal in mind, that if we were going to be global sponsor, we wanted to have someone representing us in all the WordCamps.</p>\n\n\n\n<p>And unfortunately, we were not able to maintain that. It&#8217;s cool, not cool, but it&#8217;s like amazing to support all these events. But you need to make sure that, at least you have someone out there, and not only is there like an empty table with no goodies or with some goodies and no one there.</p>\n\n\n\n<p>And even the logistic behind like sending goodies in like, all the places in the world, it&#8217;s like crazy. And we were lucky. Now we have our event manager who is working with us, and she put together an amazing program for the goodies itself. So it was like something that she set up only for that. And we were able to work with ambassadors from a lot of places, which is also like super cool, because now we have more and more people working with us. But still it was hard for us to be able to be present everywhere, as we wanted to. So it&#8217;s part of the reason why. What was the initial question again? Maybe I got lost.</p>\n\n\n\n<p>[00:31:57] <strong>Nathan Wrigley:</strong> Yeah, it was really about whether or not you see the landscape in the next five years being the same as in the last five years. So, obviously money is tight everywhere.</p>\n\n\n\n<p>[00:32:07] <strong>Thomas Fanchin:</strong> I was speaking about this year, and about how we were going to support also like meetups too. So, I&#8217;m in touch with some meetup organisers too, and we&#8217;re going to support their meetups.</p>\n\n\n\n<p>I know that a lot of sponsors are struggling, and as we talk about it earlier, it&#8217;s hard to keep a track on everything that we&#8217;re doing. And for sure, if there is room for new types of sponsorship, or new types of visibility action that we can put together, it would be awesome.</p>\n\n\n\n<p>The thing that you have to keep in mind, is that it&#8217;s cool to have these new ideas, but we need to make sure that it aligns with the community. And that we don&#8217;t cross that line that we spoke about earlier. The more that people are positive about the new ideas that we have, and the better it is for us, because it means more people are going to engage.</p>\n\n\n\n<p>The last thing that you want to have is to put out there like some, I don&#8217;t know, new ideas, or new things to get more visibility. And what is going to happen is that you have less engagement, and then sponsors are going to be, okay, it&#8217;s not working. There is less engagement than before.</p>\n\n\n\n<p>[00:33:13] <strong>Nathan Wrigley:</strong> Yeah. I think the endeavor at the moment seems to be to try a lot of these new ideas out on what they&#8217;re calling next gen events. Whether that name will stick around or not, I don&#8217;t know. But the intention, really, is to try these out on the smaller events. So try out some new things, try a different approach at a variety of different events. Who knows what that will be, but there was an example of a much smaller, newer event in the UK not that long ago. See how they go, and see if any of the ideas from those can percolate up into the bigger events, possibly.</p>\n\n\n\n<p>But you&#8217;re right, you risk alienating the community at your peril. If at the end of the day you go over a boundary that the community seemingly can&#8217;t tolerate, then you risk polluting the entire river, which would be a complete disaster.</p>\n\n\n\n<p>So I guess we&#8217;re going to see. Let&#8217;s see how these things change in the future. Let&#8217;s see how companies cope with the realities of post 2023. Over the next few years, see what their purse strings are like, and let&#8217;s hope these events are continued to be sponsored by companies like Weglot.</p>\n\n\n\n<p>Thomas, just a quick one. If anybody has listened to this and thought, do you know what, I&#8217;m struggling with the same sorts of things, it would be nice to chat to Thomas, see if there&#8217;s any alignment. Maybe there&#8217;s some sort of opportunities to work together. Where would be the best place to get in touch with you?</p>\n\n\n\n<p>[00:34:24] <strong>Thomas Fanchin:</strong> Maybe on LinkedIn. You could all reach out to me on LinkedIn. I&#8217;m not posting every day, but i&#8217;m really reachable by message. So if anyone wants to reach out, talk about WordPress, talk about Five for the Future, or contribution, or you have a new podcast idea, you&#8217;re looking for support. Or you just want to discuss a little bit about partnership, feel free to reach out to me there.</p>\n\n\n\n<p>I also have a Twitter account. It&#8217;s my name, so Thomas Fanchin. Have a look at it on both LinkedIn and Twitter. You will find me, I&#8217;m almost sure.</p>\n\n\n\n<p>And otherwise, you could just reach out to the support team. If you want to reach out, support@weglot.com, and just say that you want to talk with Thomas, and I would be tagged. So that&#8217;s also easy if you want to reach out to me. So yeah, it up to you.</p>\n\n\n\n<p>[00:35:14] <strong>Nathan Wrigley:</strong> Thank you Thomas. I really appreciate you talking to me on the podcast today. Thanks so much indeed.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/thomas-fanchin-b31333137/\">Thomas Fanchin</a>.</p>\n\n\n\n<p>Thomas is a WordPress enthusiast and is the partnership manager for <a href=\"https://www.weglot.com/\">Weglot</a>, which is a solution for translating websites, not limited to WordPress. His role means that he’s immersed in the WordPress community. He’s passionate about connecting with, and learning from, others in the community.</p>\n\n\n\n<p>Thomas talks on the podcast about Weglot&#8217;s involvement in WordPress initiatives and events. We get into how they decide what to sponsor and what they hope to get in return.</p>\n\n\n\n<p>Thomas discusses the difficulties in tracking the effectiveness of marketing efforts at events. They’ve tried all manner of approaches, and we chat about the complex nature of measuring the return on investment, and whether it’s enough to have brand visibility as the only outcome.</p>\n\n\n\n<p>The conversation turns to the unique engagement opportunities within the WordPress and open source community, and whether these events are different from other, more corporate, events held elsewhere.</p>\n\n\n\n<p>Weglot operates both within and beyond the WordPress ecosystem, and Thomas shares the company&#8217;s focus on adaptability and replication in other communities. While profitability comparisons between WordPress and Shopify events are not easy to measure, Thomas acknowledges both platforms as strong partners for Weglot, expressing interest in engaging with new content management systems (CMS) and communities.</p>\n\n\n\n<p>Thomas wants to explore some innovative sponsor initiatives beyond typical events in the near future. He thinks that guest posts, supporting meetups, and sharing personal expertise might be potential ways for companies to effectively engage with the WordPress space.</p>\n\n\n\n<p>But not everything is new, and Thomas talks about Weglot&#8217;s approach towards flagship events like WordCamp Asia and WordCamp US. They are hard at work already figuring out what they’re going to bring along and how they’re always trying to think outside the box.</p>\n\n\n\n<p>If you&#8217;re interested in learning about the intricacies of sponsorships, the impact of sponsor engagement at events, and the future landscape of sponsor initiatives within the WordPress community, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/polyglots/\">Translate WordPress</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/community/2023/11/29/should-we-allow-sponsor-demo-rooms-or-tracks-at-events/\">Should We Allow Sponsor Demo Rooms or Tracks at Events?</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/80-angela-jin-on-how-and-why-wordcamps-might-change-in-the-future\">Angela Jin on How and Why WordCamps Might Change in the Future</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/98-marieke-van-de-rakt-on-uniting-the-wordpress-community-for-a-stronger-future\">Marieke van de Rakt on Uniting the WordPress Community for a Stronger Future</a></p>\n\n\n\n<p><a href=\"https://twitter.com/thomas_fch\">Thomas on X</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/thomas-fanchin-b31333137/\">Thomas on LinkedIn</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Dec 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Do The Woo Community: A Post State of the Word Chat with Rocio Valdivia, Pooja Derashri &amp; José Ramón\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78732\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://dothewoo.io/a-post-state-of-the-word-chat-with-rocio-valdivia-pooja-derashri-jose-ramon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:503:\"<p>Listen to insights and experiences in the Spanish WordPress community, features and updates announced at SOTW, plus getting involved in the WordPress community. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/a-post-state-of-the-word-chat-with-rocio-valdivia-pooja-derashri-jose-ramon/\">A Post State of the Word Chat with Rocio Valdivia, Pooja Derashri &#038; José Ramón</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Dec 2023 08:50:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:254:\"HeroPress: My Journey From an Intern to WordPress Themes Team Reps – मेरो यात्रा: एक प्रशिक्षार्थीबाट वर्डप्रेस थिम्स टीम प्रतिनिधिसम्म\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=6254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:184:\"https://heropress.com/essays/my-journey-from-an-intern-to-wordpress-themes-team-lead/#utm_source=rss&utm_medium=rss&utm_campaign=my-journey-from-an-intern-to-wordpress-themes-team-lead\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59265:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/12/121923-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Being part of WordCamps is like unlocking a door to a whole new world.\" /><p><a href=\"https://heropress.com/feed/#nepali\">यो लेख नेपाली भाषामा पनि उपलब्ध छ।</a></p>\n\n\n\n<p><em>Writing this essay brings me immense joy!</em>&nbsp;</p>\n\n\n\n<p>I am from a remote corner of Nepal, where a unique culture emerged, the tradition of taking computer classes after completing <span title=\"School Leaving Certificate\"><a href=\"https://en.wikipedia.org/wiki/School_Leaving_Certificate_(Nepal)\">SLC</a></span>. It was a time when nearly 2-5% of students embraced this opportunity. I also joined them in the excitement of learning how to use a computer.</p>\n\n\n\n<p>Our teacher kept emphasizing the importance of learning how to type. But sometimes, when he wasn&#8217;t around, we would search for the Internet icon, hoping to find interesting things. Sadly, we didn&#8217;t have an internet connection, but we still tried our best.   </p>\n\n\n\n<p>Also, in our little learning space, every chance to use a computer felt special. These early experiences, a mix of fear and curiosity, laid the foundation for our technology journey.&nbsp;</p>\n\n\n\n<p>It&#8217;s proof of our eagerness to learn, even when resources were limited.&nbsp;</p>\n\n\n\n<p>Looking back, those moments of exploring and trying to connect with the wider digital world were like planting seeds of curiosity. Which later grew into a strong love for technology.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-a-glimpse-into-my-roots\">A Glimpse into My Roots</h2>\n\n\n\n<p>Let&#8217;s stroll through my tech journey, from mastering algorithms to leading the WordPress theme team. It all began after completing ISC (Intermediate of Science) and believe it or not, it happened in a government school.</p>\n\n\n\n<p>After finishing school, I had to choose a path, and I went with IT. Now, the funny part is, that I was at a friend&#8217;s house one day, and I saw this cool digital ID card. I asked my friend about it, and he said it was the college ID card. At that moment, I thought, <strong>&#8220;If I study IT, I can get a modern ID card like this!&#8221;</strong></p>\n\n\n\n<p><strong><em>The interesting twist is that I ended up being the topper in the entrance exam for IT.</em></strong>&nbsp;</p>\n\n\n\n<p>When I joined, there were only 15-16 students. Surprisingly, only 7 of us made it through the entire degree because many decided to go to India, and some just realized IT wasn&#8217;t their thing. At that time, only a few people were keen on the IT field.</p>\n\n\n\n<p>During my studies, programming code seemed like a puzzle to me. It was challenging to wrap my head around it. However, when we started experimenting and learning to give commands, the real-time working of it all was still a mystery.</p>\n\n\n\n<p>As I neared the completion of my bachelor&#8217;s degree, technology was booming, and companies began realizing the importance of having a website. Simultaneously, I got involved in some social sector work, and people there started asking about IT. To understand this field better, I participated in IT events, and that&#8217;s when it hit me, I needed to do something significant in this field.</p>\n\n\n\n<p>Fast forward, armed with a bachelor&#8217;s in Information Technology from Purbanchal University. In the 3rd &#8211; 4th semester, I wasn&#8217;t entirely sure what I would be working on afterwards.&nbsp;</p>\n\n\n\n<p><strong><em>But being in this field made me realize that your degree doesn&#8217;t define what you can achieve. It&#8217;s the passion and dedication that truly matter.</em></strong></p>\n\n\n\n<p>Following my bachelor&#8217;s, the next step in my journey was pursuing a master&#8217;s degree to become a specialist. This led me to Sikkim Manipal University, where I immersed myself in the world of Information Technology from 2015 to 2017.</p>\n\n\n\n<p>Well, it wasn&#8217;t just about learning Computer Science. It was a hands-on experience with a keen focus on the latest technology and software development.&nbsp;</p>\n\n\n\n<p>During my time there, I specialized in object-oriented software development, using the newest tools and systems available. The tech adventure included delving into courses like algorithm analysis, web applications programming, and more.&nbsp;</p>\n\n\n\n<p><strong><em>Providing me with a robust skill set to navigate the ever-evolving tech world.</em></strong></p>\n\n\n\n<p>As I lead the WordPress theme team today, my journey from being an intern is a vibrant mix of continuous learning, personal growth, and a profound passion for shaping the digital landscape.&nbsp;</p>\n\n\n\n<p><strong><em>Join me in this exciting tech adventure, where every challenge is an opportunity to innovate and evolve!</em></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-attending-and-organizing-my-first-wordpress-meetup\">Attending and Organizing My First WordPress Meetup</h2>\n\n\n\n<p>Here&#8217;s an interesting part of how I got involved in WordPress. Back then, we used to install WordPress, add content to websites, and get paid NPR 5,000 for a website. We were thrilled with that!</p>\n\n\n\n<p>Later on, during the <strong>&#8220;<a href=\"https://en.wikipedia.org/wiki/Bibeksheel_Nepali\">Bibeksheel Nepali</a>&#8221; </strong>movement led by the late <a href=\"https://kafleg.com.np/an-open-letter-to-matt-mullenweg/\"><strong>Mr Ujwal Thapa</strong></a>, I got to know him. We participated in walking events together, covering the stretch from Mechi to Lumbini for a few days.&nbsp;</p>\n\n\n\n<p>During that time, Mr. Thapa emphasized the importance of contributing to the community and working together. He taught me that it&#8217;s not just about me learning and earning, everyone should have that opportunity. That changed my entire mindset!</p>\n\n\n\n<p>Now, let me take you back to 2010 when I attended my first WordPress meetup. In a gathering of 40-50 people, we discussed the basics of WordPress and how to create a site.&nbsp;</p>\n\n\n\n<p>After 2 years in 2012, I got a chance to organise a WordPress meetup. It was there that I discovered someone who created WordPress themes.&nbsp;</p>\n\n\n\n<p>I was both shocked and enthusiastic! That night, I went home, and searched for &#8220;Catch Themes&#8221; and &#8220;Graph Paper Press,&#8221; and that&#8217;s when my exploration began.</p>\n\n\n\n<p>After that, I stopped using themes from others and started exploring Catch Box of Catch Themes.&nbsp;</p>\n\n\n\n<p>Back then, I had just heard about WordPress and was eager to explore its potential. Little did I know that this casual meetup would mark the beginning of an incredible journey.</p>\n\n\n\n<p>But the experience was exhilarating, bringing together WordPress enthusiasts, sharing ideas, and building a sense of community.&nbsp;</p>\n\n\n\n<p><strong><em>It felt like planting a seed that would grow into something much larger.</em></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-volunteering-in-first-wordcamp-to-leading-contributor-day-in-wc-asia\">Volunteering in First WordCamp to Leading Contributor Day in WC Asia</h2>\n\n\n\n<p>Now moving into my WordCamp journey!&nbsp;</p>\n\n\n\n<p>After completing my bachelor&#8217;s, I came to Kathmandu in 2014. Luckily, I had the opportunity to volunteer at a WordCamp event with the help of Mr. Ujwal Thapa. Knowing the organizers made it easy for me to blend in among them.&nbsp;</p>\n\n\n\n<p>It was an exciting experience for me! From that point on, my world has revolved around WordPress, and I haven&#8217;t seen anything quite like it.</p>\n\n\n<div class=\"kb-gallery-wrap-id-6254_16174c-0b alignnone wp-block-kadence-advancedgallery\"><ul class=\"kb-gallery-ul kb-gallery-non-static kb-gallery-type-grid kb-gallery-id-6254_16174c-0b kb-gallery-caption-style-bottom-hover kb-gallery-filter-none kb-gallery-magnific-init\"><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/45717552634_4b10a9f688_k.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/45717552634_4b10a9f688_k-1024x579.jpg\" width=\"1024\" height=\"579\" alt=\"\" class=\"wp-image-6259\" /></div><div class=\"kadence-blocks-gallery-item__caption\">WordCamp Biratnagar 2018</div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/contributorday_tableleads_organizers.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/contributorday_tableleads_organizers-1024x683.jpg\" width=\"1024\" height=\"683\" alt=\"\" class=\"wp-image-6260\" /></div><div class=\"kadence-blocks-gallery-item__caption\">Contributor Day table leads and organizers of WC Asia 2023</div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/ujwal_3.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/ujwal_3.jpg\" width=\"960\" height=\"720\" alt=\"\" class=\"wp-image-6261\" /></div><div class=\"kadence-blocks-gallery-item__caption\">Mr Ujwal Thapa speaking in WordPress Meetup</div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/with_worpdressers.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/with_worpdressers-1024x768.jpg\" width=\"1024\" height=\"768\" alt=\"\" class=\"wp-image-6262\" /></div><div class=\"kadence-blocks-gallery-item__caption\">WordCamp Asia 2023</div></div></a></div></li></ul></div>\n\n\n<p>On to the year 2015, I ventured into the theme reviewing team, delving into the intricate world of WordPress themes. The learning curve was steep, but the satisfaction of contributing to the WordPress ecosystem was unparalleled. Since 2018, I have been working as a team reps.</p>\n\n\n\n<p>My WordCamp journey became a tapestry of experiences, from <strong>WordCamp Nepal in 2014</strong> to various international events like <strong>WordCamp Tokyo in 2017</strong>, <strong>WordCamp Bangkok in 2019</strong>, and more.</p>\n\n\n\n<p>Further, I got the golden chance to organize <a href=\"https://biratnagar.wordcamp.org/2018/\"><strong>WordCamp Biratnagar 2018</strong></a><strong> </strong>as a lead. At that moment, there were very few companies who relied on WordPress to earn. It was a hassle to convince people to attend and let them know about WordPress. But we made it successful though!</p>\n\n\n\n<p>The years rolled on, and by 2023, I found myself organizing <strong>WordCamp Kathmandu </strong>once again, alongside events in Sylhet, Mumbai, and Manila. The swift of WordCamps continued into 2024, with Nepal and Asia taking the spotlight again.</p>\n\n\n\n<p>Reflecting on these years, I&#8217;ve not just attended events, I&#8217;ve woven connections, shared laughter, and learned valuable lessons. Also, personal anecdotes, like meeting fellow WordPress enthusiasts in unexpected places, make these WordCamps memorable.</p>\n\n\n\n<p>Looking forward, I&#8217;m thrilled about the upcoming WordCamps and the new experiences they&#8217;ll bring. Each event adds something special to my journey with WordPress, like a unique stroke on a canvas. The adventure goes on, driven by my love for WordPress and the incredible community that makes it all meaningful.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-growth-in-career-from-volunteer-to-full-time-wordpress\">Growth in Career From Volunteer to Full-time WordPress</h2>\n\n\n\n<p>In the vibrant world of WordPress, I wear multiple hats with pride. By day, I&#8217;m a WordPress Developer and Theme Reviewer, channeling my passion into crafting digital experiences that stand out. </p>\n\n\n\n<p>My role as a team representative for the WordPress.org themes team, contributing full-time isn&#8217;t just a job, it&#8217;s a joyous commitment that I hold close to my heart.</p>\n\n\n\n<p><strong><em>Adding a special touch to this journey is the honor of being sponsored by Rank Math.&nbsp;</em></strong></p>\n\n\n\n<p>This collaboration with <a href=\"https://rankmath.com/\"><strong>Rank Math</strong></a><strong> </strong>goes beyond the professional, it&#8217;s a shared dedication to the vibrant WordPress community that fuels my passion.</p>\n\n\n\n<p>Now, let me share a bit about how this sponsorship unfolded. Well, <strong>Rank Math </strong>was on the lookout for someone to sponsor, and in that pivotal moment, I had the privilege of connecting with <strong>Bhanu Ahluwalia</strong>, the Co-founder of Rank Math.&nbsp;</p>\n\n\n\n<p>Our conversation became more than just a chat; it became the catalyst that made the sponsorship a reality. Working full-time suddenly transformed from a dream to a tangible experience.&nbsp;</p>\n\n\n\n<p>Beyond the lines of code, my free time transforms into moments of contribution. I find comfort in adding my touch to the WordPress documentation team, weaving words that guide fellow enthusiasts through the vast WordPress landscape.&nbsp;</p>\n\n\n\n<p><strong>My involvement extends:</strong></p>\n\n\n\n<ul>\n<li>As a WordCamp speaker</li>\n\n\n\n<li>Organize WordCamp as a lead organizer</li>\n\n\n\n<li>Volunteer in different WordCamps and tech events</li>\n\n\n\n<li>Worke in diverse fields like core contributions, and translation, and even dived into theme/plugin development.</li>\n</ul>\n\n\n\n<p><strong>If you&#8217;re curious about my take on these standards, you can catch a glimpse of my <a href=\"https://wordpress.tv/speakers/ganga-kafle/\">WordCamp presentation video</a>.</strong></p>\n\n\n\n<p>But my WordPress journey isn&#8217;t confined to screens, it extends to the heartbeat of meetups and open-source platforms. Actively participating and engaging with the community is not just a routine, it&#8217;s a source of inspiration and connection.</p>\n\n\n\n<p>When I&#8217;m not crafting code or contributing, you&#8217;ll find me at the seat of WPEntire, my WordPress blog, sharing insights and experiences. It&#8217;s not just a blog, it&#8217;s a canvas where my WordPress journey finds another expressive outlet.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-10-years-of-volunteering-and-getting-sponsored-by-rank-math\">10 Years of Volunteering and Getting Sponsored By Rank Math</h2>\n\n\n\n<p>I&#8217;ve been part of the WordPress community for more than ten years, volunteering and sharing my love for technology. It&#8217;s been an exciting journey, from learning the ropes to contributing to a global community.</p>\n\n\n\n<p>Being a volunteer isn&#8217;t just about coding; it&#8217;s a personal adventure of growth and connection. Every bit of code feels like a step in a journey filled with innovation and learning.</p>\n\n\n\n<p>A significant part of this journey has been the support from Rank Math. Their sponsorship isn&#8217;t just financial help; it&#8217;s a vote of confidence. It encourages me to keep contributing to a community that has become a vital part of my life.</p>\n\n\n\n<p>This collaboration with Rank Math goes beyond code. It&#8217;s a shared belief in WordPress and the power of working together. As I look back at the past ten years, I see a story of learning, growing, and building friendships.&nbsp;</p>\n\n\n\n<p>Every WordCamp and meetup is like adding a stroke to my WordPress story. I&#8217;m excited about what the future holds, and the support from Rank Math adds a personal touch to my journey with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-a-gateway-to-explore-the-world\">A Gateway to Explore the World</h2>\n\n\n\n<p>Being part of WordCamps is like unlocking a door to a whole new world. It&#8217;s not just about learning techie stuff, it&#8217;s about meeting people from all over and discovering how big and diverse our world is.</p>\n\n\n\n<p>Imagine a big gathering where folks who love working with WordPress come together. It&#8217;s like a big family reunion but with people from different countries and cultures. In this mix, we share ideas, solve problems, and learn from each other.</p>\n\n\n\n<p>For me, WordCamps has been a game-changer. They go beyond talking about websites. They help us understand each other&#8217;s worlds.&nbsp;</p>\n\n\n\n<p>When I spoke at WordCamp Manila and WordCamp Mumbai, it wasn&#8217;t just about WordPress tricks. It was about learning how people in different places use WordPress to solve unique challenges.</p>\n\n\n\n<p>At WordCamp Asia, being in charge of a team with people from all over was a bit like having a superhero squad. We had different skills and backgrounds, and that made us strong. It taught me that when we bring our unique strengths together, amazing things happen.</p>\n\n\n\n<p>But WordCamps aren&#8217;t just about work. They&#8217;re about making friends from places you&#8217;ve never been. Sharing stories about how we do things in our hometowns and realizing that even though we&#8217;re different, we&#8217;re also pretty similar.</p>\n\n\n\n<p>So, WordCamps have become more than just events for me. They&#8217;ve opened up a whole world of friendships, learning, and exploring different cultures. It&#8217;s like having a passport to a global community where everyone speaks the language of WordPress and friendship.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-my-thoughts\">My Thoughts</h2>\n\n\n\n<p>Sure, if you&#8217;re in the IT field, you can find internships on your own by doing some research. Don&#8217;t hesitate to apply and use your resources.</p>\n\n\n\n<p>For those interested in WordPress, consider spending 3-6 months as an intern. Instead of just thinking about money, focus on learning and gaining experience.&nbsp;</p>\n\n\n\n<p>WordPress is not just for blogs, it&#8217;s also a place for programming where you can make money. Depending on your skills, you can find jobs in writing, front-end development, and more.</p>\n\n\n\n<p>Surprisingly, you can even work as an HR for US companies while living in Nepal without being there physically. Being a developer is also not too difficult. If you work within the WordPress community, companies might sponsor you.</p>\n\n\n\n<p>Remember, as WordPress grows, more companies will want people like you. Technology and WordPress are always changing. For developers, it means earning in new ways. For others, it&#8217;s a chance for something new; bloggers can improve their blogs, and writers can create fresh content.</p>\n\n\n\n<p>So, WordPress offers opportunities for everyone involved. Ways of working and patterns might change, but you’ll never be outdated!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"nepali\">मेरो यात्रा: एक प्रशिक्षार्थीबाट वर्डप्रेस थिम्स टीम प्रतिनिधिसम्म</h2>\n\n\n\n<p>यो निबन्ध लेख्दा मलाई अपार आनन्द मिलेको छ !</p>\n\n\n\n<p>म नेपालको एउटा दुर्गम कुनाबाट आएको हुँ, जहाँ एक अनौठो संस्कृतिको उदय भयो, एसएलसी पूरा गरेपछि कम्प्युटर कक्षा लिने परम्परा। यो एक समय थियो जब लगभग २-५% विद्यार्थीहरूले यो अवसरलाई अँगालेका थिए!</p>\n\n\n\n<p>हाम्रा शिक्षकले टाईपिङ्ग गर्न सिक्नुको महत्त्वलाई जोड दिनुहुन्थ्यो तर कहिलेकाहीँ, जब उहाँ वरपर हुनुहुन्थ्यो, हामी रोचक चीजहरू फेला पार्ने आशामा इन्टरनेट आइकनको प्रयोग गर्थ्यौं। दुर्भाग्यवश, हामीसँग इन्टरनेट जडान थिएन, तर हामीले अझै पनि सक्दो प्रयास गर्थ्यौं।&nbsp;</p>\n\n\n\n<p>हाम्रो सानो सिक्ने ठाउँमा, कम्प्युटर प्रयोग गर्ने हरेक मौका विशेष महसुस गर्थ्यौं। यी प्रारम्भिक अनुभवहरू, डर र जिज्ञासाको मिश्रणले हाम्रो टेक्नोलोजी यात्राको जग बसाल्यो।</p>\n\n\n\n<p>यो हाम्रो सिक्न उत्सुकताको प्रमाण हो, स्रोतहरू सीमित हुँदा पनि।</p>\n\n\n\n<p>फर्केर हेर्दा, अन्वेषण गर्ने र फराकिलो डिजिटल संसारसँग जोडिने प्रयास गर्ने ती क्षणहरू जिज्ञासाको बीउ रोप्ने जस्तै थिए। जुन पछि प्रविधिप्रतिको बलियो प्रेममा परिणत भयो।</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-म-र-धर-तलहर-म-एक-झलक\">मेरो धरातलहरुमा एक झलक</h2>\n\n\n\n<p>प्रबिधि बिषयमा बिज्ञता हासिल गर्नदेखि वर्डप्रेस थिम टोलीको नेतृत्व गर्नेसम्मको मेरो प्राविधिक यात्रामा घुमौं। यो सबै ISC पूरा गरेपछि सुरु भयो र पत्याउनुहोस् वा नपत्याउनुहोस् , यो एक सरकारी विद्यालयमा भयो।</p>\n\n\n\n<p>स्कूल सकिएपछि, मैले बाटो रोज्नुपर्&#x200d;यो, र म आईटीसँग गएँ। अब, रमाइलो पक्ष के हो, म एक दिन साथीको घरमा गएको थिएँ, र मैले त्यस दिन साथीको राम्रो डिजिटल आईडी कार्ड देखे। मैले मेरो साथीलाई यसको बारेमा सोधें, र उसले यो कलेजको परिचयपत्र हो भन्यो। त्यो पल, मैले सोचे, &#8220;यदि मैले आईटी पढे भने, मैले पनि&nbsp; यस्तो आधुनिक आईडी कार्ड पाउछु!&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>चाखलाग्दो ट्विस्ट यो हो कि म IT को लागी प्रवेश परीक्षामा टपर पनि भएँ।</p>\n</blockquote>\n\n\n\n<p>म भर्ना हुँदा १५-१६ जना मात्र विद्यार्थी थिए। अचम्मको कुरा के छ भने, हामीमध्ये ७ जनाले मात्रै पूरा डिग्री हासिल गर्&#x200d;यौं किनभने धेरैले भारत जाने निर्णय गरे, र कतिपयले केहि समय पछि IT उनीहरूको कुरा होइन भन्ने महसुस गरे। त्यसबेला आईटी क्षेत्रमा थोरै मानिस मात्रै इच्छुक थिए । धेरैको रोजाई इन्जिनियर हुने हुन्थो।</p>\n\n\n\n<p>मेरो अध्ययनको क्रममा, प्रोग्रामिङ कोड मलाई के हो के हो जस्तो लाग्थ्यो। मेरो दिमागमा सहजै बस्नु चुनौतीपूर्ण थियो। जब हामीले प्रयोगशालामा प्रयोग गर्न थाल्यौं, आदेशहरू दिन सिक्यौं, त्यै पनि त्यो अझै रहस्यमय थियो ।</p>\n\n\n\n<p>जब मेरो स्नातक डिग्री पूरा गर्ने समय नजिक थियो, टेक्नोलोजी फस्टाउँदै थियो, र कम्पनीहरूले वेबसाइट हुनुको महत्त्व महसुस गर्न थाले। यससँगै म केही सामाजिक क्षेत्रको काममा संलग्न भएँ र त्यहाँका मानिसहरूले IT बारे सोध्न थाले। यस क्षेत्रलाई अझ राम्ररी बुझ्नको लागि, मैले IT कार्यक्रमहरूमा भाग लिएँ, र जब यसले मलाई छोयो, मैले यस क्षेत्रमा केही महत्त्वपूर्ण गर्न आवश्यक ठानेको थिए ।</p>\n\n\n\n<p>पूर्वाञ्चल विश्वविद्यालयबाट सूचना प्रविधिमा स्नातक हासिल गरे। पहिला तेश्रो चौथो सेमेस्टर सम्म पनि पछि&nbsp; म पछि के काम गर्नेछु भनेर पूर्णतया निश्चित थिएन।</p>\n\n\n\n<p><strong>तर यस क्षेत्रमा भएकोले मलाई तपाईको डिग्रीले तपाईले के हासिल गर्न सक्नुहुन्छ भनेर परिभाषित गर्दैन भन्ने महसुस गरायो। यो जोश र समर्पण हो जुन साँच्चै महत्त्वपूर्ण छ।</strong></p>\n\n\n\n<p>मेरो स्नातक पछि, मेरो यात्राको अर्को चरण एक विशेषज्ञ बन्नको लागि मास्टर डिग्री पछ्याउँदै थियो। यसले मलाई सिक्किम मणिपाल विश्वविद्यालयमा पुर्यायो, जहाँ मैले २०१५ देखि २०१७ सम्म सूचना प्रविधिको संसारमा डुबें।</p>\n\n\n\n<p>यो कम्प्यूटर विज्ञान सिक्ने बारेमा मात्र थिएन। यो नवीनतम प्रविधि र सफ्टवेयर विकासमा गहिरो ध्यान अनुभव गराउने थलो थियो।</p>\n\n\n\n<p>त्यहाँ मेरो समयको दौडान, उपलब्ध नयाँ उपकरण र प्रणालीहरू प्रयोग गरेर वस्तु-उन्मुख सफ्टवेयर विकासमा विशेषज्ञता हासिल गरें। मैले यहाँ धेरै प्रोग्रमिंग भाषाहरु र अन्य कुराहरु सिके ।</p>\n\n\n\n<p>यसले मलाई सधैं विकसित हुँदै गइरहेको प्राविधिक संसारमा हिनडुल गर्नको लागि बलियो सीप प्रदान गर्दै थियो।</p>\n\n\n\n<p>आज मैले वर्डप्रेस थिम टोलीको नेतृत्व गर्नु, इन्टर्नबाट मेरो यात्रा निरन्तर सिकाइ, व्यक्तिगत वृद्धि, र डिजिटल परिदृश्यलाई आकार दिनको लागि गहिरो जोशको जीवन्त मिश्रण हो।</p>\n\n\n\n<p>यो रोमाञ्चक प्राविधिक साहसिक कार्यमा मसँग सामेल हुनुहोस्, जहाँ हरेक चुनौती नवीनता र विकास गर्ने अवसर हो!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-म-र-पह-ल-वर-डप-र-स-म-टअपम-सहभ-ग-ह-द-र-आय-जन-गर-द\">मेरो पहिलो वर्डप्रेस मिटअपमा सहभागी हुँदै र आयोजन गर्दै</h2>\n\n\n\n<p><br />यहाँ म कसरी वर्डप्रेसमा संलग्न भएँ को एक रोचक कहानी छ। त्यसबेला, हामीले वर्डप्रेस स्थापना गर्ने, वेबसाइटहरूमा सामग्री थप्ने र साइटका लागि नेपाली ५,000 लिने गर्दथ्यौं। हामी त्यो संग रोमाञ्चित भयौ!</p>\n\n\n\n<p>पछि स्वर्गीय <a href=\"https://kafleg.com.np/an-open-letter-to-matt-mullenweg/\">उज्वल थापाको</a> नेतृत्वमा भएको ‘<a href=\"https://en.wikipedia.org/wiki/Bibeksheel_Nepali\">विवेकशील नेपाली</a>’ आन्दोलनको क्रममा मैले उहाँलाई चिनेँ । मेचीदेखि लुम्बिनीसम्म केही दिनसम्म सँगै हिँड्ने कार्यक्रममा भाग लिए।</p>\n\n\n\n<p>सो क्रममा श्री थापाले समुदायमा योगदान र मिलेर काम गर्नुपर्नेमा जोड दिए । उनले मलाई सिक्ने र कमाउने मात्र होइन, सबैले त्यो अवसर पाउनुपर्छ भनेर सिकाए। यसले मेरो सम्पूर्ण मानसिकता परिवर्तन गर्यो।&nbsp;</p>\n\n\n\n<p>अब, म तपाइँलाई २०१० मा फिर्ता लैजान चाहन्छु जब मैले मेरो पहिलो वर्डप्रेस भेटघाटमा भाग लिएको थिएँ। करिब ४०-५० व्यक्तिहरूको भेलामा, हामीले वर्डप्रेसको आधारभूत कुराहरू र कसरी साइट सिर्जना गर्ने बारे छलफल गर्यौं।</p>\n\n\n\n<p>२०१२ मा २ वर्ष पछि, मैले वर्डप्रेस मिटअप आयोजना गर्ने मौका पाएँ। त्यहाँ मैले वर्डप्रेस थिम सिर्जना गर्ने व्यक्ति हरुलाई चिने ।</p>\n\n\n\n<p>म स्तब्ध र उत्साहित दुवै थिएँ । त्यो रात, म घर गएँ, र &#8220;क्याच थिम&#8221; र &#8220;ग्राफ पेपर प्रेस&#8221; खोजेँ र त्यही बेला मेरो अन्वेषण सुरु भयो।</p>\n\n\n\n<p>त्यस पछि, मैले अरूबाट बनेका थिमहरू प्रयोग गर्न छोडें र क्याच थिमको थिम क्याच बक्स अन्वेषण गर्न थाले।</p>\n\n\n\n<p>त्यसबेला, मैले भर्खरै वर्डप्रेसको बारेमा सुनेको थिएँ र यसको सम्भाव्यता अन्वेषण गर्न उत्सुक थिएँ। यो अनौपचारिक भेटघाटले अविश्वसनीय यात्राको सुरुवात गर्नेछ भन्ने कुरा मलाई कमै थाहा थियो।</p>\n\n\n\n<p>तर त्यो बेलाको अनुभव रमाइलो थियो, वर्डप्रेस उत्साहीहरूलाई सँगै ल्याउने, विचारहरू साझा गर्ने, र समुदायको भावना निर्माण गर्ने।</p>\n\n\n\n<p><strong>यो एउटा बीउ रोपेको जस्तो महसुस भयो जुन पछि धेरै ठूलो बन्नेछ।</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-पह-ल-वर-डक-य-म-पम-स-वय-स-वक-भएर-सहभ-ग-ह-द-र-वर-डक-य-म-प-एश-य-क-कन-ट-र-ब-य-टर-ड-म-अग-व-ई-गर-द\">पहिलो वर्डक्याम्पमा स्वयंसेवक भएर सहभागी हुँदै र वर्डक्याम्प एशियाको कन्ट्रिब्यूटर डे मा अगुवाई गर्दै</h2>\n\n\n\n<p>अब मेरो वर्डक्याम्प यात्रामा जाउँ ।&nbsp;</p>\n\n\n\n<p>मैले स्नातक पूरा गरेपछि, म २०१४ मा काठमाडौं आएँ। सौभाग्यवश, मैले श्री उज्ज्वल थापाको सहयोगमा वर्डक्याम्प कार्यक्रममा स्वयंसेवक हुने मौका पाएँ। आयोजकहरू चिन्दा मलाई तिनीहरूबीच घुलमिल हुन सजिलो भयो।</p>\n\n\n\n<p>यो मेरो लागि एक रोमाञ्चक अनुभव थियो । त्यस बिन्दु देखि, मेरो संसार वर्डप्रेसको वरिपरि घुमेको छ, र मैले यो जस्तो केहि देखेको छैन।</p>\n\n\n<div class=\"kb-gallery-wrap-id-6254_db195f-01 alignnone wp-block-kadence-advancedgallery\"><ul class=\"kb-gallery-ul kb-gallery-non-static kb-gallery-type-grid kb-gallery-id-6254_db195f-01 kb-gallery-caption-style-bottom kb-gallery-filter-none\"><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/with_worpdressers-1024x768.jpg\" width=\"1024\" height=\"768\" alt=\"\" class=\"wp-image-6262\" /></div><div class=\"kadence-blocks-gallery-item__caption\">WordCamp Asia 2023 </div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/ujwal_3.jpg\" width=\"960\" height=\"720\" alt=\"\" class=\"wp-image-6261\" /></div><div class=\"kadence-blocks-gallery-item__caption\">Mr Ujwal Thapa speaking in WordPress Meetup</div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/contributorday_tableleads_organizers-1024x683.jpg\" width=\"1024\" height=\"683\" alt=\"\" class=\"wp-image-6260\" /></div><div class=\"kadence-blocks-gallery-item__caption\">Contributor Day table leads and organizers of WC Asia 2023</div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/45717552634_4b10a9f688_k-1024x579.jpg\" width=\"1024\" height=\"579\" alt=\"\" class=\"wp-image-6259\" /></div><div class=\"kadence-blocks-gallery-item__caption\">WordCamp Biratnagar 2018</div></div></div></li></ul></div>\n\n\n<p>२०१५ मा मैले वर्डप्रेस थिमहरूको जटिल संसारमा खोज्दै थिम समीक्षा टोलीमा प्रवेश गरें। सिक्ने क्रम ठाडो थियो, तर वर्डप्रेस संरचनामा योगदान गरेको सन्तुष्टि अतुलनीय थियो। २०१८ देखि, म टोली नेतृत्वको रूपमा काम गर्दैछु।</p>\n\n\n\n<p>मेरो वर्डक्याम्प यात्रा सन् <strong>२०१४ मा वर्डक्याम्प नेपाल</strong>देखि <strong>२०१७ मा वर्डक्याम्प टोकियो</strong>, <strong>२०१९ मा वर्डक्याम्प बैंकक</strong>, र थप अन्य विभिन्न अन्तर्राष्ट्रिय कार्यक्रमहरूसम्मको अनुभवको एउटा भण्डार बन्यो।</p>\n\n\n\n<p>यसबाहेक, मेरो नेतृत्वको रूपमा <strong><a href=\"https://biratnagar.wordcamp.org/2018/\">वर्डक्याम्प विराटनगर २०१८</a></strong> आयोजना गर्ने सुनौलो मौका पाएँ। त्यो क्षणमा, त्यहाँ धेरै कम कम्पनीहरू मात्र थिए जसले वर्डप्रेस मा भर परेर कमाउने गरेका थिए। मानिसहरूलाई उपस्थित हुन र उनीहरूलाई वर्डप्रेस बारे जानकारी दिन मनाउनको लागि यो झन्झट थियो। तर हामीले यसलाई सफल बनायौं!</p>\n\n\n\n<p>वर्षहरू बित्दै गए, र २०२३ सम्ममा, मैले सिल्हेट, मुम्बई र मनिलाका कार्यक्रमहरूसँगै फेरि एक पटक वर्डक्याम्प काठमाडौंको आयोजना गरेको थिए। वर्डक्याम्पहरुको आँधी २०२४ मा जारी रह्यो, नेपाल र एशियाले फेरि केन्द्र बनायो ।</p>\n\n\n\n<p>यी वर्षहरूलाई प्रतिबिम्बित गर्दै, मैले कार्यक्रमहरूमा मात्र भाग लिएको छैन, मैले समुदायको एउटा राम्रो संजाल बुनेको छु, खुसिहरु साझा गरेको छु, र बहुमूल्य पाठहरू सिकेको छु। व्यक्तिगत उपाख्यानहरू, जस्तै अप्रत्याशित ठाउँहरूमा वर्डप्रेसका उत्साहीहरूलाई भेट्दा यी वर्डक्याम्पलाई यादगार बनाउँदछ।</p>\n\n\n\n<p>अगाडि हेर्दै, म आगामी वर्डक्याम्पहरु र तिनीहरूले ल्याउने नयाँ अनुभवहरू बारे रोमाञ्चित छु। प्रत्येक घटनाले वर्डप्रेसको साथ मेरो यात्रामा केहि विशेष थप्छ, जस्तै क्यानभासमा अद्वितीय स्ट्रोक। साहसिक कार्य जारी छ, वर्डप्रेसको लागी मेरो प्रेम र यो सबै अर्थपूर्ण बनाउने अविश्वसनीय समुदाय द्वारा संचालित।</p>\n\n\n\n<h2 class=\"wp-block-heading\">कर्ममा वृद्धि: स्वयंसेवक सेवामा बाट पूर्ण-समय वर्डप्रेसमा</h2>\n\n\n\n<p>वर्डप्रेसको जीवन्त संसारमा, म गर्वका साथ धेरै टोपीहरू लगाउँछु। दिनहुँ, म एक वर्डप्रेस विकासकर्ता र थिम समीक्षक हुँ, मेरो लगाबलाई डिजिटल अनुभवहरू बनाउनमा सहजीकरण गर्दैछ, जुन अलिक फरक देखिन्छ।</p>\n\n\n\n<p>WordPress.org थिम टोलीका लागि टोली प्रतिनिधिको रूपमा मेरो भूमिकामा, पूर्ण-समय योगदान गर्नु भनेको जागिर मात्र होइन, यो मेरो हृदयको नजिक रहेको खुशीको प्रतिबद्धता हो।</p>\n\n\n\n<p>यस यात्रामा विशेष स्पर्श थप्नु भनेको Rank Math द्वारा प्रायोजित हुनुको सम्मान हो।</p>\n\n\n\n<p><a href=\"https://rankmath.com/\">Rank Math</a> सँगको यो सहकार्य जागिर भन्दा बाहिर जान्छ, यो जीवन्त वर्डप्रेस समुदायको लागि साझा समर्पण हो जसले मेरो जोशलाई बढाउँछ।</p>\n\n\n\n<p>अब मलाई यो प्रायोजन कसरी भयो भन्ने बारे केही कुरा गर्नुछ।&nbsp; ठिक छ, Rank Math कसैलाई प्रायोजित गर्ने खोजीमा थियो, र त्यो निर्णायक क्षणमा, मैले Rank Math का सह-संस्थापक भानु अहलुवालिया सँग जोडिने सुअवसर पाएको थिएँ।</p>\n\n\n\n<p>हाम्रो वार्तालाप कुराकानी मात्र होइन; यो प्रायोजनलाई वास्तविकता बनाउने उत्प्रेरक बन्यो। पूर्ण-समय काम गर्दा अचानक सपनाबाट मूर्त अनुभवमा परिवर्तन भयो।</p>\n\n\n\n<p>कोडको रेखाहरू भन्दा बाहिर, मेरो खाली समय योगदानको क्षणहरूमा परिवर्तन हुन्छ। मैले वर्डप्रेस कागजात टोलीमा मेरो विज्ञता थप्दा सान्त्वना पाउँछु, शब्दहरू बुनाई जसले साथीहरुलाई उत्साही बनाउछ र विशाल वर्डप्रेस परिदृश्य मार्फत मार्गदर्शन गर्दछ।</p>\n\n\n\n<p>मेरो संलग्नता विस्तार हुन्छ:</p>\n\n\n\n<ul>\n<li>म वर्डक्याम्प वक्ताको रूपमा उभिएको छु&nbsp;</li>\n\n\n\n<li>एक प्रमुख आयोजक रूपमा वर्डक्याम्प संचालन र सफलता पुर्बक सम्पन्न गरेको छु&nbsp;</li>\n\n\n\n<li>विभिन्न वर्डक्याम्पहरु र प्राविधिक कार्यक्रमहरूमा स्वयंसेवकको रूपमा सहयोगी हात दिएको छु&nbsp;</li>\n\n\n\n<li>वर्डप्रेसको मुख्य फायालमा योगदान, र अनुवाद जस्ता विविध क्षेत्रहरूमा काम गरे, र थिम र प्लगिन विकासमा पनि डुबेको छु&nbsp;</li>\n</ul>\n\n\n\n<p>यदि तपाइँ यी मापदण्डहरूमा मेरो लिने बारे उत्सुक हुनुहुन्छ भने, तपाइँ मेरो वर्डक्याम्प <a href=\"https://wordpress.tv/speakers/ganga-kafle/\">प्रस्तुतीकरण भिडियोको झलक</a> हेर्न सक्नुहुन्छ।</p>\n\n\n\n<p>तर मेरो वर्डप्रेस यात्रा स्क्रिनमा मात्र सीमित छैन, यो भेटघाट र खुला स्रोत प्लेटफर्महरूको मुटुको धड्कनमा विस्तार हुन्छ। सक्रिय रूपमा सहभागी हुनु र समुदायसँग संलग्न हुनु एक दिनचर्या मात्र होइन, यो प्रेरणा र जडानको स्रोत हो।</p>\n\n\n\n<p>जब म कोड बनाउँदै वा योगदान गरिरहेको छैन, तपाईंले मलाई <a href=\"https://www.wpentire.com/\">WPEntire</a> को सीटमा भेट्टाउनुहुनेछ, मेरो वर्डप्रेस ब्लग, अन्तर्दृष्टि र अनुभवहरू साझा गर्दै। यो केवल एक ब्लग होइन, यो एक क्यानभास हो जहाँ मेरो वर्डप्रेस&nbsp; यात्राले अर्को अभिव्यक्त दिने ठाउँ फेला पार्छ।</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-१०-वर-षक-स-व-म-rank-math-ब-ट-प-र-य-ज-त-ह-द\">१० वर्षको सेवामा Rank Math बाट प्रायोजित हुँदै</h2>\n\n\n\n<p>म दशवर्षदेखि वर्डप्रेस समुदायको हिस्सा भएको छु, स्वयंसेवा गर्दै र टेक्नोलोजीको लागि मेरो प्रेम साझा गर्दै। यो एक रोमाञ्चक यात्रा भएको छ, सिक्ने देखि विश्वव्यापी समुदायमा योगदान गर्न सम्म।</p>\n\n\n\n<p>स्वयंसेवक हुनु भनेको कोडिङ मात्र होइन; यो वृद्धि र जडान को एक व्यक्तिगत साहस हो । कोडको प्रत्येक अंश नवीनता र सिकाइले भरिएको यात्रामा एक कदम जस्तै महसुस गर्दछ।</p>\n\n\n\n<p>यो प्रायोजन आर्थिक सहयोगको बारेमा मात्र होइन, यो मेरो वर्डप्रेस यात्राको व्यक्तिगत अध्याय हो, अविश्वसनीय जडानहरू र साझा प्रतिबद्धतालाई मुख्य आकर्षण गर्दै जसले यस समुदायलाई विशेष बनाउँछ।</p>\n\n\n\n<p><a href=\"https://rankmath.com/\">Rank Math</a> संग यो सहयोग र सहकार्य कोड बाहिर जान्छ। यो वर्डप्रेसमा साझा विश्वास र सँगै काम गर्ने शक्ति हो। जब म विगत सात वर्षलाई फर्केर हेर्छु, म सिक्ने, बढ्दै जाने र मित्रता निर्माण गर्ने कथा देख्छु।</p>\n\n\n\n<p>प्रत्येक वर्डक्याम्प र भेटघाट मेरो वर्डप्रेस कथामा तलाथप्नु जस्तै हो। म भविष्यमा के हुन्छ भन्ने बारे उत्साहित छु, र Rank Math को समर्थनले वर्डप्रेसको साथ मेरो यात्रामा व्यक्तिगत स्पर्श थप्छ। म खुसि छु ।</p>\n\n\n\n<h2 class=\"wp-block-heading\">विश्वलाई अन्वेषण गर्ने एक प्रवेशद्वार</h2>\n\n\n\n<p>वर्डक्याम्पको एउटा अंग हुनु भनेको नयाँ संसारको ढोका खोल्नु हो। यो प्राविधिक सामानहरू सिक्ने मात्र होइन, यो सबै ठाउँका मानिसहरूलाई भेट्ने र हाम्रो संसार कति ठूलो र विविध छ भनेर पत्ता लगाउने बारेमा पनि हो।</p>\n\n\n\n<p>एउटा ठूलो जमघटको कल्पना गर्नुहोस् जहाँ वर्डप्रेससँग काम गर्न मन पराउने मानिसहरू एकसाथ आउँछन्। यो एउटा ठूलो पारिवारिक पुनर्मिलन जस्तो छ तर विभिन्न देश र संस्कृतिका मानिसहरूसँग। यस मिश्रणमा, हामी विचारहरू साझा गर्छौं, समस्याहरू समाधान गर्छौं, र एकअर्काबाट सिक्छौं।</p>\n\n\n\n<p>मेरो लागि, वर्डक्याम्पहरु एक खेल-परिवर्तक भएको छ। तिनीहरू वेबसाइटहरूको बारेमा कुरा गर्न बाहिर जान्छन्। तिनीहरूले हामीलाई एकअर्काको संसार बुझ्न मद्दत गर्छन्।</p>\n\n\n\n<p>जब मैले वर्डक्याम्प मनिला र वर्डक्याम्प मुम्बईमा बोले, यो केवल वर्डप्रेस बारेमा मात्र थिएन। यो विभिन्न ठाउँहरूमा मानिसहरूले अनौठो चुनौतीहरू समाधान गर्न वर्डप्रेस प्रयोग गर्ने तरिका सिक्ने बारेमा पनि थियो।</p>\n\n\n\n<p>वर्डक्याम्प एशियामा एक टोलीको इन्चार्ज हुनु भनेको सुपरहिरो भएको जस्तो थियो। हामीसँग विभिन्न सीप र पृष्ठभूमिहरू थिए, र यसले हामीलाई बलियो बनायो। यसले मलाई सिकायो कि जब हामी हाम्रो अद्वितीय शक्तिहरू सँगै ल्याउँछौं, आश्चर्यजनक चीजहरू हुन्छन्।</p>\n\n\n\n<p>तर वर्डक्याम्पहरु कामको बारेमा मात्र होइन। तिनीहरू तपाईं कहिल्यै नगएको ठाउँहरूबाट साथीहरू बनाउने बारेमा पनि हुन्। हामी हाम्रो गृहनगरमा कसरी काम गर्छौं भन्ने बारे कथाहरू सुनाउदै र महसुस गर्दै कि हामी फरक भए तापनि, हामी पनि धेरै समान छौं।</p>\n\n\n\n<p>त्यसो भए, वर्डक्याम्पहरू मेरो लागि घटनाहरू भन्दा बढी भएका छन्। तिनीहरूले मित्रता, सिक्ने, र विभिन्न संस्कृतिहरू अन्वेषण गर्ने सम्पूर्ण संसार खोलेका छन्। यो विश्वव्यापी समुदायमा पासपोर्ट भएको जस्तै हो जहाँ सबैले वर्डप्रेस र मित्रताको भाषा बोल्छन्।</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-म-र-भ-वन-हर\">मेरा भावनाहरू</h2>\n\n\n\n<p>पक्का, यदि तपाईं आईटि क्षेत्रमा हुनुहुन्छ भने, तपाईंले केही अनुसन्धान गरेर आफैंमा इन्टर्नशिपहरू फेला पार्न सक्नुहुन्छ। लागू गर्न र आफ्नो स्रोतहरू प्रयोग गर्न नहिचकिचाउनुहोस्।</p>\n\n\n\n<p>वर्डप्रेसमा रुचि राख्नेहरूका लागि, एक इन्टर्नको रूपमा ३-६ महिना खर्च गर्न तयार हुनुहोस्। पैसाको बारेमा मात्र सोच्नुको सट्टा, सिक्ने र अनुभव प्राप्त गर्नमा ध्यान केन्द्रित गर्नुहोस्।</p>\n\n\n\n<p>वर्डप्रेस ब्लगहरूको लागि मात्र होइन, यो प्रोग्रामिङको लागि ठाउँ पनि हो जहाँ तपाईं पैसा कमाउन सक्नुहुन्छ। तपाइँको सीपको आधारमा, तपाइँ लेखन, डिजाईन विकास गर्न, र थप मा काम पाउन सक्नुहुन्छ।</p>\n\n\n\n<p>अचम्मको कुरा के छ भने, तपाईं शारीरिक रूपमा त्यहाँ नभई नेपालमा बसेर अमेरिकी कम्पनीहरूमा एचआरको रूपमा काम गर्न सक्नुहुन्छ। विकासकर्ता बन्न पनि गाह्रो छैन। यदि तपाइँ वर्डप्रेस समुदाय भित्र काम गर्नुहुन्छ भने, कम्पनीहरूले तपाइँलाई प्रायोजित गर्न सक्छन्।</p>\n\n\n\n<p>याद गर्नुहोस्, वर्डप्रेस बढ्दै जाँदा, धेरै कम्पनीहरूले तपाईंजस्ता मानिसहरू चाहन्छन्। टेक्नोलोजी र वर्डप्रेस सधैं परिवर्तन हुँदैछ। विकासकर्ताहरूको लागि, यसको अर्थ नयाँ तरिकामा कमाइ हुन्छ। अरूको लागि, यो केहि नयाँ को लागी एक मौका हो; ब्लगरहरूले आफ्नो ब्लगहरू सुधार गर्न सक्छन्, र लेखकहरूले नयाँ सामग्री सिर्जना गर्न सक्छन्।</p>\n\n\n\n<p>त्यसोभए, वर्डप्रेसले संलग्न सबैका लागि अवसरहरू प्रदान गर्दछ। काम गर्ने तरिका र ढाँचाहरू परिवर्तन हुन सक्छ, तर तपाईं कहिल्यै पुरानो हुनुहुने छैन!</p>\n<p>The post <a href=\"https://heropress.com/essays/my-journey-from-an-intern-to-wordpress-themes-team-lead/\">My Journey From an Intern to WordPress Themes Team Reps &#8211; मेरो यात्रा: एक प्रशिक्षार्थीबाट वर्डप्रेस थिम्स टीम प्रतिनिधिसम्म</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Dec 2023 02:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ganga Kafle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"Gutenberg Times: State of the Word, Redesign Developer resources, Block Theme updates — Weekend Edition 278\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=26698\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://gutenbergtimes.com/state-of-the-word-redesign-developer-resources-block-theme-updates-weekend-edition-278/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23618:\"<p>Howdy, </p>\n\n\n\n<p>2023 is coming to the end. This is the last edition for 2023, as I take a few vacation days over the Holidays and be with ailing family members. In January, it&#8217;ll be six years of almost weekly news about the block editor, and its progress into a first class site building tool. Thank you for being a faithful subscriber to the Gutenberg Times, and all your encouraging comments over all those years.</p>\n\n\n\n<p>For a highlight reel of 2023, I recommend you watch <a href=\"https://www.youtube.com/watch?v=c7M4mBVgP3Y&t=1s\">the recording of the State of the Word 2023 by Matt Mullenweg</a>, if you missed it on the live stream. It was a great presentation with an outlook for 2024 and beyond. If you are not the video-watching type, you&#8217;ll also find quite a few links to Recap posts below. </p>\n\n\n\n<p>Wishing you and yours festive Holidays, and a prosperous, healthy and happy New Year! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-state-of-the-word\">State of the Word</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-list-of-recap-posts-from-around-the-word-press-space\">List of Recap posts from around the WordPress space</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-q-amp-a-after-state-of-the-word-2023\">Q &amp; A after State of the Word 2023</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#1-gutenberg\">Gutenberg Updates</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-upcoming-events-strong\">Upcoming events</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-state-of-the-word\">State of the Word</h3>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=c7M4mBVgP3Y&t=1s\"><strong>State of the Word</strong> recording</a> is available on YouTube. </p>\n\n\n\n<p>What stood out for me in terms of what&#8217;s coming next year?Here is my list: </p>\n\n\n\n<ul>\n<li><strong><a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a></strong> is a massive initiative. Empowering users to take their site with them from one CMS to another is such a pain right now. It&#8217;s not only from Squarespace or Wix to WordPress, it&#8217;s also from one WordPress host to another, and also from one-Page Builder to Core. A giant step towards an open web. <a href=\"https://github.com/wordpress/data-liberation\"> GitHub repository</a> and WP Slack channel:  <a href=\"https://wordpress.slack.com/archives/C069AKUBPHB\" target=\"_blank\" rel=\"noreferrer noopener\">#data-liberation</a>.</li>\n\n\n\n<li>The promise of connecting the Block editor to Custom fields is intriguing. <strong>Mario Santos</strong> posted a <a href=\"https://github.com/WordPress/gutenberg/issues/53300#issuecomment-1808020238\">proposal for the first iteration in WordPress 6.5</a>. </li>\n\n\n\n<li>The <a href=\"https://github.com/WordPress/gutenberg/discussions/categories/interactivity-api\"><strong>Interactivity API</strong></a>, has been mentioned in a few Weekend Editions. It has been used internally for a few core blocks, in WordPress 6.4 and  will become a public API in WordPress 6.5. </li>\n\n\n\n<li><strong>Patterns </strong>will become first class citizens of the site editor with their upcoming partially syncing feature. It means you can change the styling of a pattern that&#8217;s used over multiple pages without updating the content. </li>\n\n\n\n<li><strong><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></strong> will also change how we preview and develop for WordPress. We use it as another way to work with the <a href=\"https://github.com/bph/gutenberg/discussions/81\">Gutenberg Nightly</a>. </li>\n\n\n\n<li>Mullenweg revealed that <strong>WordCamp US </strong>will be in <strong>Portland, Oregon </strong>with two contributor days and a two &#8211; day conference, <strong>September 17 &#8211; 20, 2024</strong>. Sounds like an exciting new format!  Furthermore, I am excited about more WordCamps in 2024, especially in Europe with the shorter travel distances for me now. For now, I only have plans to be at <a href=\"https://asia.wordcamp.org/2024/\">WordCamp Asia</a> in Taipei, Taiwan and <a href=\"https://europe.wordcamp.org/2024/\">WordCamp Europe </a>in Torino. </li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"2-list-of-recap-posts-from-around-the-word-press-space\">List of Recap posts from around the WordPress space</h4>\n\n\n\n<p><strong>Matt Mederios</strong> was probably the first to publish a <strong><a href=\"https://thewpminute.com/state-of-the-word-2023/\">State of the Word 2023 Recap</a>. </strong></p>\n\n\n\n<p><a href=\"https://twitter.com/ioanamuresan\"><strong>Ioana Mureşan</strong> </a>wrote the article on the WPTavern <a href=\"https://wptavern.com/state-of-the-word-2023-hola-wordpress\"><strong>State of the Word 2023: ¡Hola WordPress!</strong></a> and includes demo videos from the talk so you can review them in due time. I bookmarked this article for later reference, too. </p>\n\n\n\n<p><strong>Joost de Valk</strong> wrote for the Post Status blog: <a href=\"https://poststatus.com/state-of-the-word-2023-excitement-all-around/\"><strong>State of the Word 2023: excitement all around!</strong></a></p>\n\n\n\n<p><a href=\"https://twitter.com/tomwillmot\"><strong>Tom Willmot</strong></a>, CEO of Human Made, published his recap: <a href=\"https://humanmade.com/wordpress-for-enterprise/state-of-the-word-2023-takeaways-for-enterprise/\"><strong>State of the Word 2023: Takeaways for Enterprise</strong></a>. </p>\n\n\n\n<p><strong>Courtney Robertson</strong> posted here recap for GoDaddy: <a href=\"https://www.godaddy.com/resources/news/wordpress-state-of-the-word-2023\"><strong>WordPress State of the Word 2023</strong></a></p>\n\n\n\n<p><strong>Torque Magazine</strong> also reported on the event: <a href=\"https://torquemag.io/2023/12/envisioning-the-future-of-wordpress-state-of-the-word-2023/\"><strong>Envisioning the Future of WordPress: State of the Word 2023</strong></a></p>\n\n\n\n<p>Last but no least, there is the <a href=\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\"><strong>State of the Word 2023 Recap</strong></a> on the WordPress.org site by <strong>Nicholas Garofalo</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h4 class=\"wp-block-heading\" id=\"3-q-amp-a-after-state-of-the-word-2023\">Q &amp; A after State of the Word 2023</h4>\n\n\n\n<p>The recording of the <a href=\"https://www.youtube.com/watch?v=S01uBD2pyQY\"><strong>Q &amp; A portion of the State of the Word</strong></a> is also available on YouTube. Due to time constrains , only a few questions, could be answered. Matt Mullenweg started answering the <a href=\"https://make.wordpress.org/project/2023/12/12/overflow-questions-from-state-of-the-word-2023/\">overflow questions</a> online. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-gutenberg\">Gutenberg Updates</h3>\n\n\n\n<p><strong><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v17.3.0-rc.1\">Gutenberg 17.3 RC 1</a></strong> is available now for testing. The stable release is scheduled for Dec. 20, 2023. Release lead is <strong>Madhu Dollu</strong>, JavaScript Developer at Automattic. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland</strong> interviewed <strong>Matias Ventura</strong> to get the <a href=\"https://www.youtube.com/watch?v=GWN5Vyq3pRE\"><strong>WordPress Gutenberg &#8211; The Inside Story!</strong></a> If you haven&#8217;t been around the project for that long, listening to the two of them discuss the Genesis of the project and its early days, gives you a great insight in how decisions were made, about the scope and the four phases of the project. The list of chapters makes it possible to view the one hour and twenty minutes video in several sittings. It&#8217;s a fabulous conversation where both men bring in context and can look at bigger pictures. You might not agree with some decisions made, but listening to Ventura, you will be in a better place understanding the context of decisions in terms of user experience and use cases, and their place in the project. </p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=GWN5Vyq3pRE\"><img width=\"652\" height=\"197\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-12-at-16.46.31.png?resize=652%2C197&ssl=1\" alt=\"Matias Ventura in a conversation with Jamie Marsland. \" class=\"wp-image-26733\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-d02c05917781faad43b455819cf71f89\">🎙️ Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-93-gutenberg-17-1-command-palette-data-views-and-grid-layout/\">Gutenberg Changelog #93 – Gutenberg 17.1, Command Palette, Data Views and Grid Layout</a> &#8211; a chat with <strong>Isabel Brison</strong></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"5-strong-upcoming-events-strong\">Upcoming events</h3>\n\n\n\n<p><strong>Dec 19th, 23 &#8211; 16:00 UTC</strong> : <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/297143342/\"><strong>Developer Hours: Modern WordPress development with the wp-scripts package</strong></a></p>\n\n\n\n<p><strong>Jan 16, 24 &#8211; 21:00 UTC</strong> <a href=\"https://make.wordpress.org/core/2023/11/23/hallway-hangout-lets-explore-wordpress-6-5/\"><strong>Hallway&nbsp;Hangout: Let’s explore WordPress 6.5</strong></a></p>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/297143342/\"><img width=\"600\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/image.png?resize=600%2C338&ssl=1\" alt=\"Announcement graphic of the next Developer hours on Dec 19 at 16:00 UTC \" class=\"wp-image-26749\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong> found that WordPress users have trouble understanding the interdependency between global width and custom content width with Block themes and created <a href=\"https://www.pootlepress.com/2023/12/beginners-guide-to-customizing-page-width-options-in-wordpress-gutenberg/\"><strong>Beginners Guide to Customizing Page Width Options in WordPress Gutenberg</strong></a>. &#8220;The page width options in WordPress Gutenberg, combined with the ability to set these values in global styles in block themes, offer an unprecedented level of control and flexibility in web design.&#8221; Marsland wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his video, <a href=\"https://www.youtube.com/watch?v=GyYgMdrXJiY\"><strong>Creating a one-page website</strong></a>, <strong>Wes Theron</strong> takes you through the steps on building a one-page website with WordPress. Theron starts with a discussion of what kind of content would be placed on a one-page website, goes through an example of a business website, and walks through the various steps on how to add each section to a page.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Thomas Zwirner</strong> created a single block plugin called <a href=\"https://wordpress.org/plugins/download-list-block-with-icons/\"><strong>Download list with icons</strong></a>. It provides you with a block to manage a download list with file type-specific icons. No configuration is necessary. The Block can be used immediately after installation.</p>\n\n\n\n<a href=\"https://wordpress.org/plugins/download-list-block-with-icons/\"><img width=\"652\" height=\"236\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-14-at-17.44.30.png?resize=652%2C236&ssl=1\" alt=\"Screenshot of the download list block\" class=\"wp-image-26758\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jacob Martella</strong> <a href=\"https://twitter.com/ViewFromTheBox/status/1732075066727288918\">introduced </a>the <a href=\"https://crosswindsframework.com/\">Crosswind Framework</a>, a set of tools, out of the box templates, patterns, and themes and additional blocks for your building websites with WordPress and the Site Editor. Its promise is a complete, nocode way to build websites. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/create-block-theme/\"><strong>Create Block Theme</strong></a> plugin by WordPress core contributors has received an update: with improved child theme export, increases consistency over the plugin pages and forms, and regularly updated Google Fonts available locally. </p>\n\n\n\n<p><strong>Ganesh Dahal</strong> recently published a <a href=\"https://developer.wordpress.org/news/2023/12/05/a-walk-through-tutorial-on-using-create-block-theme-plugin/\"><strong>A walk-through tutorial on using the Create</strong></a> Block Theme plugin, that should help you get started and take full advantage of the Theme building plugin. </p>\n\n\n\n<p>Brian Gardner shared the updates for his themes: <a href=\"https://wordpress.org/themes/frost/\"><strong>Frost</strong></a> - is now sporting, among other refinements,  a progress bar pattern, better shadow presets, hover styles in theme.json.  The Power Studio<a href=\"https://wordpress.org/themes/powder-studio/\"><strong> Theme</strong></a> just landed in the WordPress theme repository and offers a wide variety of wireframe patterns, styles, and templates, and color choices inspired by Tailwind CSS. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"7-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>At WordCamp Vancouver,  <strong>Flynn O&#8217;Connor</strong> gave a talk on <strong><a href=\"https://wordpress.tv/2023/11/13/exploring-block-themes/\">Exploring block themes</a></strong>, that is now available on WordPress TV. From the description: &#8220;This session provides an exploration of block themes, the modern approach to building in WordPress. We will examine how block themes differ from traditional PHP-based themes and highlight their core components, including theme.json. Reviewing the advantages of block themes and how they empower users to easily customize the visual appearance of their websites without touching the code. This session offers valuable insights into the world of block themes and their impact on the future of WordPress development.&#8221; </p>\n\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> made a call for response in the <a href=\"https://wordpress.slack.com/archives/C015GUFFC00/p1702356362566639\">#fse-outreach-experiments </a>channel: <strong><a href=\"https://wordpress.slack.com/archives/C015GUFFC00/p1702356362566639\">Opportunity to share your theme building workflow with contributors working on theme tooling</a></strong>. McCarthy already identified about 30+ theme builders who were active in the channel before. If you want to participate in the initiative, chime in on the Slack thread, or email me at pauli@gutenbergtimes.com. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Maggie Cabrera</strong> shared her experience on being co-developer lead for the 2024 default theme in an <a href=\"https://onemaggie.com/2023/12/open-letter-to-a-future-default-theme-lead/\"><strong>Open letter to a future default theme lead</strong></a>. &#8220;While most of the work will be reviewing contributors’ work, the key part of your role is keeping an eye on the big picture and being ready to make high-level decisions. You won’t always have the answers, but you will have people around you to help you figure out the best outcome.&#8221; she wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ellen Bauer</strong> gives you a view behind the scenes, and shares <a href=\"https://www.youtube.com/watch?v=hXq6pp7IvIE\"><strong>how she creates patterns for a WordPress Block Theme</strong></a>. She first shows you her pattern building workflow and then builds a project pattern. </p>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Nick Diego</strong> announced the <a href=\"https://make.wordpress.org/meta/2023/12/15/developer-resources-gets-a-refresh/\">Developer Resources redesign going public.</a> The design is now block theme based and allows for much better on page navigation and helps developers with breadcrumbs and expandable right side navigation. Developer Resources are available via <a href=\"https://developer.wordpress.org/\">developer.WordPress</a>.org and houses all Handbooks for Block Editor, Themes, Plugins, Playground, and Common APIs. </p>\n\n\n\n<img width=\"652\" height=\"311\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-16-at-13.18.58.png?resize=652%2C311&ssl=1\" alt=\"Screenshot of developer.wordpress.org\" class=\"wp-image-26771\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> recording his tutorial on the <a href=\"https://wordpress.tv/2023/12/15/new-wordpress-developer-apis-the-interactivity-api/\"><strong>Interactivity API, as new WordPress API </strong></a>now experimental and hopefully becoming a public API in WordPress 6.5. &#8220;he main goal of the Interactivity API is to provide a standard and simple way to handle the frontend interactivity of Gutenberg blocks. This standard would make it easier for developers to create rich, interactive user experiences, from simple cases like counters or popups to more complex features like instant search, or carts and checkouts. In this session, you will learn more about this new developer API, through a live&#8221; Bossenger wrote in the tutorial&#8217;s description. </p>\n\n\n\n<a href=\"https://wordpress.tv/2023/12/15/new-wordpress-developer-apis-the-interactivity-api/\"><img width=\"652\" height=\"369\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-16-at-14.40.40.png?resize=652%2C369&ssl=1\" alt=\"Still image from the Tutorial Video \" class=\"wp-image-26784\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Also at WordCamp Vancouver, Ryan Welcher talked about <a href=\"https://wordpress.tv/2023/11/13/extending-wordpress-using-the-slotfill-system/\"><strong>Extending WordPress using the SlotFill&nbsp;system</strong></a> - &#8221;The SlotFill system can be used to extend blocks and the UI for the Block Editor and Site Editor screens, making it a critically important tool for any WordPress developer. This talk will take a deep dive into how this system works, show how and where you can currently extend WordPress, and finally, how to create your own custom SlotFills!&#8221;</p>\n\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Bartosz Gadomski</strong> wrote a post about <a href=\"https://bartoszgadomski.com/filtering-the-theme-json-file-values-such-as-default-color-palette-and-other-global-styles-in-wordpress/\"><strong>Filtering the theme.json file values (such as default color palette and other global styles) in WordPress</strong></a> and dives deeper into the <a href=\"https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/\">four new filters</a> available since WordPress 6.1 to access values programmatically. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Palace Neptuno, Madrid, with State of the Word 2023 displays.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Dec 2023 13:45:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: What’s in My Bag, 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=101009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2023/12/the-bag-post/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16401:\"<img width=\"604\" height=\"340\" src=\"https://i0.wp.com/ma.tt/files/2023/11/2023-11-bag-1024x576.jpeg?resize=604%2C340&ssl=1\" alt=\"\" class=\"wp-image-107037\" />\n\n\n\n<ol>\n<li><a href=\"https://www.apple.com/shop/buy-mac/macbook-pro/16-inch\">16” M3 Max MacBook Pro</a>, with all the memory and storage. I went from carrying two laptops earlier in the year, a 14” as well to just this. I like the Space Black color because it’s novel but might go back to silver next time. Brand new so just a few stickers so far!</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B09V4LZS9S/?tag=photomatt08-20\">Black Magic Mouse</a>, steady and useful when I’m doing lots of emails. Looking to replace this, as it uses Lightning. At home I’ve been using the <a href=\"https://www.amazon.com/gp/product/B07Z81WS5L/?tag=photomatt08-20\">Mojo Pro Performance Silent Gaming Mouse</a> because it’s wired and quiet when you click, so something wireless and quiet could be nice for when on the go… I do like the gestures of the Magic Mouse though. I&#8217;ll be testing out some new mice over the holidays.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B09P8CNRK1/?tag=photomatt08-20\">Universal Airplane Phone Holder</a>, also good along with #4 for mounting an iPhone for using the <a href=\"https://support.apple.com/en-us/HT213244\">Continuity camera</a> or <a href=\"https://ma.tt/files/2023/11/IMG_1637-scaled.jpg\">selfies</a> (after taking that he said &#8220;please don&#8217;t go to jail&#8221;). Also super cheap, &lt;$20 for two.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B0B5S7X6BN/?tag=photomatt08-20\">Capstone Continuity Camera mount for MacBook laptops</a>, easy way to mount your iPhone to your laptop to use as a webcam. Looks amazing, but a bit of a pain, which is why I’m excited about #6.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B09MF6TJLW/?tag=photomatt08-20\">Anker 655 USB-C 8-in-1 Hub</a>. I use this mostly for Ethernet, but since everything is USB-C now I can also use this with either phone or the iPad. I seem to have bad luck with USB hubs, I’m always burning through them, but this one has lasted a while. This thing is heavy! I could go smaller/lighter here.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0CM8V52PG/?tag=photomatt08-20\">Opal Tadpole webcam</a>, this is the <a href=\"https://opalcamera.com/\">Opal</a> product everyone has been waiting for. Quality close to iPhone at a smaller size, plugs in via USB-C so you don’t have to worry about connectivity or charging, doesn’t need any special software, looks amazing. Only fits a laptop though, not a bigger monitor. The way the cable works is really clever, great design.</li>\n\n\n\n<li>This is one of my most delightful new additions, a <a href=\"https://www.amazon.com/gp/product/B083SCPFQK/?tag=photomatt08-20\">Pixel G1s RGB Video Light</a>, it can cast warm light for a Zoom call or you can send it to a specific color to enhance the ambience of room for a party. It can rotate through a rainbow of colors. I ended up giving this to all my friends, and now when we&#8217;re in the same place we can instantly vibe out a room with two or three of these devices, and turn off any unpleasant default lighting a space may have. It charges via USB-C, natch. Hat tip: <a href=\"https://rjwalters.info/\">Robb Walters</a>.</li>\n\n\n\n<li><a href=\"https://pro.ultimateears.com/pages/ue-premier\">UE Premier custom headphones</a>. The best aural experience you can have. Invest the time in visiting an audiologist to get earphones and earplugs customized for your ears.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B00E9W11QM?tag=photomatt08-20\">Belkin Rockstar headphone splitter</a>, great for sharing audio with others, especially if they have #8.</li>\n\n\n\n<li>Small USB-C to 1/8th inch converter, to be extra though <a href=\"https://www.amazon.com/dp/B09F8M9PDG/?tag=photomatt08-20\">upgrade to this one from Belkin with power</a>.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BKGR5B76/?tag=photomatt08-20\">Rolling Square inCharge XL 6-in-1 Multi Charging Cable</a>, nice compact all-in-one I’ve been playing with. They make some <a href=\"https://www.amazon.com/stores/RollingSquare/page/FAB0F15F-9BCA-46AF-A453-A2157CD94CC9?tag=photomatt08-20\">other interesting accessories</a>. A 100w Swiss army knife of cables, and the thing they do combining Lightning and Micro-USB is so cool.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B0C85BVS5V/?tag=photomatt08-20\">Baseus has made a retractable 100w/5a USB-C beautiful cord</a>. This is probably the one you’ll want to carry around. Someday it will replace all other cables when we achieve USB-C nirvana.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B08JG2YRFB/?tag=photomatt08-20\">Chafon USB-C multi-cable is my ultimate workhorse</a>, what I use the most. It’s available at different lengths. I like the way the attachments can be moved around, but there is some fragility being entered at every connection so I like to travel with these not linked so they don’t bend or break.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BY8Q69DC?tag=photomatt08-20\">Tiny Miisso 6000mah battery pack with cables built in</a>.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0C34DL6Z7/?tag=photomatt08-20&th=1\">Pixel Fold</a>. I always try to have an Android device for testing and the pixel fold has been a interesting one, because I found myself using it in ways that feel like sci-fi. Reading a book on the Kindle where you can turn the pages it&#8217;s really nice. It&#8217;s just a fun tool.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0B1N7SGMZ/?tag=photomatt08-20&th=1\">Pixel Buds Pro</a>, they sound remarkably good. Airpods for Android.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0CHWRXH8B/?tag=photomatt08-20\">Airpods Pro</a>, now with USB-C as God intended. I have a little robot on mine. Just amazing, and how great that you can buy them anywhere in the world. This is the first thing I’d replace if I lost it.</li>\n\n\n\n<li><a href=\"https://www.apple.com/shop/buy-iphone/iphone-15-pro\">iPhone 15 Pro</a>, now that it has USB-C, my favorite iPhone ever. No notes.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00T9CHYOU/?tag=photomatt08-20\">Maruman N196A Nemosine Notebook</a>, great paper. I have a small Pilot Couleur pen tucked into the spiral binding. Both brands are Japanese and I think I picked them up on a trip there, probably at the amazing <a href=\"https://store.tsite.jp/daikanyama/english/\">Daikanyama T-Site</a>.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00Q5VZ8PU/?tag=photomatt08-20\">OHTO Needle Point Knock 0.7mm pen</a>, a nice daily driver. I was carrying around a <a href=\"https://www.montblanc.com/en-us/ballpoint-pens_cod19971654707127749.html\">Montblanc Heritage Egyptomania Doué ballpoint pen</a> but I lost it somewhere.</li>\n\n\n\n<li><a href=\"https://ugmonk.com/pages/analog\">Notecards from Ugmonk Analog</a>. I really enjoy everything they make, great company, I keep these on every desk as well. These cards are often what drives my day.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B08B495319/?tag=photomatt08-20\">Kindle Paperwhite Signature Edition, finally with USB-C</a>! I prefer the <a href=\"https://www.amazon.com/dp/B07F7TLZF4/?tag=photomatt08-20\">Oasis</a>, but they inexplicably haven’t updated it to be USB-C, so I carry the Paperwhite instead.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BJLF3QVN/?tag=photomatt08-20\">11-inch iPad Pro</a>, always great in a pinch. I have the pen in case I magically develop an ability to draw and the keyboard and alway-connected 5G makes this great for hopping on Slack or <a href=\"https://texts.com/\">Texts</a>.</li>\n\n\n\n<li><a href=\"https://www.bestbuy.com/site/insignia-35w-foldable-compact-dual-usb-c-port-wall-charger-for-iphone-ipad-macbook-air-samsung-smartphones-tablets-and-more-white/6504662.p?skuId=6504662\">35w dual USB-C charger, from Insignia</a> I probably picked up at Best Buy. <a href=\"https://www.amazon.com/gp/product/B09N94ZVFX/?tag=photomatt08-20\">Here is a 40w Amazon alternative I recommend and usually carry</a>. This is one of the items I give away the most, so I must have given away my Highsay version.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B091Z6JNX4/?tag=photomatt08-20\">Ugreen 100w 4-port compact charger</a>, this is what I break out when I want to charge my laptop quickly.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B09H6PJDWB/?tag=photomatt08-20\">Belkin 37-Watt Dual USB Car Charger</a>, I use this very rarely now but it’s great in a pinch, especially on older cars that have very weak USB ports.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0CG9192B4/?tag=photomatt08-20\">Epicka travel adapter</a>. Nice that it has some built-in ports, but I rarely use them. I probably should switch back to the smaller and lighter Muji adapter.</li>\n\n\n\n<li><strong>Still my favorite power cable:</strong> <a href=\"https://www.amazon.com/dp/B0BVW27Y1Y/?tag=photomatt08-20\">Baseus 60w</a>. I tried the higher watt models, they didn&#8217;t always work on planes. This is a 6-foot extension cord and can charge a laptop directly. Really a joy. When they do an all-USB-C version I&#8217;ll probably upgrade..</li>\n\n\n\n<li><a href=\"https://www.apple.com/shop/product/MT0H3AM/A/apple-watch-magnetic-fast-charger-to-usb-c-cable-1-m\">Apple Watch Magnetic Fast Charger</a>, of course with USB-C</li>\n\n\n\n<li>This year, I’ve been focused more on my overall health. As I’m getting into the habit of moving my body everyday, the <a href=\"https://www.apple.com/apple-watch-ultra-2/\">Apple Watch Ultra 2</a> has been motivating because it’s great at letting me know how much I don’t run. Jokes aside, I’m a data person so seeing the numbers of my habits have helped me optimize my goals.&nbsp;</li>\n\n\n\n<li>A candle can make a space feel cozy. Though I don’t travel with my own candle, I like to have my trusted <a href=\"https://www.amazon.com/dp/B08GLRLH25/?tag=photomatt08-20\">Rechargeable Candle Lighter</a>. Light fire with USB!&nbsp;</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B000MF60UC/?tag=photomatt08-20\">Swiss Army Card</a>, let’s talk about cool gadgets. I use every feature of this card on a regular basis during my travels. It’s incredibly compact and slim. I’ve had to reorder this card a couple of times because they will confiscate the tiny knife.&nbsp;</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B01KYTR0HM/?tag=photomatt08-20\">Petzl e+LITE Headlamp</a>, as a former boy scout, I’m always prepared for anything including a potential blackout.&nbsp;&nbsp;</li>\n\n\n\n<li><a href=\"https://lockpicktools.com/folding-pocket-set/\">Lockpick set</a>.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B08VW8QH4N/?tag=photomatt08-20\">Carabiner</a> is always good to have on hand.</li>\n\n\n\n<li>You know, a <a href=\"https://www.amazon.com/dp/B09HS3JKDC/?tag=photomatt08-20\">Disposable mask</a> is just good practice. This mask shape is my favorite and very comfortable.&nbsp;</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0062ALC9U/?tag=photomatt08-20\">Immunity Throat Spray</a> was recommended to me by Paul Stamets. I’m not sure if it’s a placebo, but I haven’t gotten sick. Thus, 3 sprays twice a day will keep the doctor away… for me at least.&nbsp;</li>\n\n\n\n<li>Lately, I’ve been curious about the quality of air. I carry the <a href=\"https://www.amazon.com/dp/B07YY7BH2W/?tag=photomatt08-20\">Aranet4 CO2 monitor</a> to gain insight about different spaces.&nbsp;<a href=\"https://www.hsph.harvard.edu/healthybuildings/2021/09/09/impacts-of-indoor-air-quality-on-cognitive-function/\">Higher CO2 literally makes your brain slower</a>!</li>\n\n\n\n<li>Winter is coming… <a href=\"https://www.amazon.com/dp/B08FD7W4SD/?tag=photomatt08-20\">BioDerma Chapstick</a> is my go-to for dry lips.&nbsp;</li>\n\n\n\n<li>I must admit I don’t really eat the mints from this <a href=\"http://www.marunao.com/cms_en/products/308/\">Marunao Mint Case</a>. However, I have a high admiration for this elegantly crafted case. It has a soft finish feel and a satisfying magnetic closure.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07BKMY834?tag=photomatt08-20\">Kikkerland Red Plaid Earphone Case</a> is where I store my custom molded ear plugs.&nbsp;</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07DX1G5YM?tag=photomatt08-20\">SmartMouth travel packets</a> was the best recommendation I received in 2019. It really tackles mouth hygiene well for all day freshness.&nbsp;</li>\n\n\n\n<li>Cloth card holder / wallet, simple minimalist way to carry some extra cards and a few bills. I believe <a href=\"https://tim.blog/\">Tim</a> uses one of these as well.</li>\n\n\n\n<li><a href=\"https://twitter.com/helenhousandi/status/746057671531429889\">WordPress ring</a>.</li>\n\n\n\n<li><a href=\"https://www.sea2see.org/products/treviso-sun?variant=20495073771618\">Sea2See Sunglasses.</a> Sunglasses made from recycled plastic collected from the ocean. I discovered this from a goodie bag at the <a href=\"https://brilliantminds.co/\">Brilliant Minds conference</a> and have since purchased more to have it everywhere I go.</li>\n\n\n\n<li>Small plastic holder I got from my sister that helps me carry around stickers without them getting crinkled.</li>\n\n\n\n<li>Hermes business card holder. There are some occasions where exchanging business cards is a ritual. Also great to wedge it in a door jamb to keep it from autolocking.&nbsp;</li>\n\n\n\n<li>Passport, never leave home without it. Always be ready for adventure! My passport photo is actually AI-generated, because, why not? We live in the metaverse.</li>\n\n\n\n<li><a href=\"https://www.sleepmastereurope.com/\">Eye Mask</a>. I like these because the material feels nice on the skin and the wraparound is excellent for blocking out the light and some sound since it covers your ears. Great for sleeping or just needing a moment away from overstimulating environments. Similar one <a href=\"https://us.drowsysleepco.com/products/eye-mask\">here</a> (the version I have doesn’t appear readily available outside of Europe).&nbsp;</li>\n\n\n\n<li>REI Goretex mittens. They’re shell liners, lightweight and water resistant. The ones I have are an older version and no longer in stock. <a href=\"https://www.rei.com/product/194829/rei-co-op-minimalist-gtx-mittens-20?color=BLACK\">Version 2.0 available.</a> There&#8217;s no bad weather, only bad clothing.</li>\n\n\n\n<li>Gloves, nice in the winter but I carry them year round in case I need to carry wood or something. Also the fingertips have the conductive material that makes it touchscreen compatible for devices.</li>\n\n\n\n<li>This is a <a href=\"https://www.amazon.com/dp/B0035N09CS/?tag=photomatt08-20\">grey wool buff</a>, which works as a scarf, a hat, or an eye cover if I’m trying to sleep. I tried this out because of one of <a href=\"http://tynan.com/gear2017\">Tynan’s also-great gear posts</a>.</li>\n\n\n\n<li><a href=\"https://www.gorewear.com/us/en-us/m-gore-windstopper-thermo-beanie-100391\">Gore Thermo Beanie</a>, my favorite feature are the slits by the ears for sunglasses. Kept my eyes and ears protected while in Antarctica with Tim. He and I recorded a podcast episode in our tent talking about our personal fears, bucket lists, and more. <a href=\"https://pca.st/qmwhc7zz\">Have a listen</a>!</li>\n\n\n\n<li><a href=\"https://aersf.com/collections/backpacks/products/fit-pack-3\">Aer Fit Pack 3 backpack</a>, embroidered black-on-black with Automattic and WordPress logos. I upgraded this year from version 2 to 3, which changed some of the interior pockets a bit, and most notably added outside side pockets, which I have found super useful. This is the bag that makes it all work.</li>\n</ol>\n\n\n\n<p>Not pictured: <a href=\"https://flipperzero.one/\">Flipper Zero</a>, which was actually in my pocket and I forgot to put it in the photo. I have found this device really handy and fun to play with, just a delightful piece of technology.</p>\n\n\n\n<p>Here&#8217;s what I was rocking earlier in the year:</p>\n\n\n\n<img width=\"604\" height=\"453\" src=\"https://i0.wp.com/ma.tt/files/2023/11/bag-early-2023-1024x768.jpg?resize=604%2C453&ssl=1\" alt=\"\" class=\"wp-image-106304\" />\n\n\n\n<p>I&#8217;m not going to label it all, just posting for posterity. It&#8217;s mostly the same except I gave up on carrying around the Airpods Max, the grippy tripod, and haven&#8217;t found a great disco phone light yet.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Dec 2023 12:43:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Do The Woo Community: Resources and Opportunities in WordPress for Speaking, Contributing and Connecting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78697\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/wordcamps-resources-jobs-supporting-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:423:\"<p>WordCamp opportunities, supporting underrepresented and connecting the WordPress community with resources and sites.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/wordcamps-resources-jobs-supporting-community/\">Resources and Opportunities in WordPress for Speaking, Contributing and Connecting</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Dec 2023 12:31:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"HeroPress: Better Development With WordPress, WP Photos, And More!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"https://heropress.com/better-development-with-wordpress-wp-photos-and-more/#utm_source=rss&utm_medium=rss&utm_campaign=better-development-with-wordpress-wp-photos-and-more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9783:\"<img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/839655ae1936ee3c0.52974282-1024x768.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Boy in a boat on a Bangladesh beach at sunset.\" /><div class=\"kb-row-layout-wrap kb-row-layout-id6201_381c02-47 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6201_11d963-76 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6201_1ef628-4f wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> &#8211; <a href=\"https://heropress.com/essays/wordpress-taught-better-developer/\">How WordPress Taught Me To Be a Better Developer</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image is-style-default\">\n<img width=\"300\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2016/05/ed_finkler-300x300.jpg\" alt=\"Ed Finkler\" class=\"wp-image-999\" /></div>\n\n\n\n<p>Ed Finkler was a WordPress developer for a long time and then moved on to &#8220;real programming&#8221;. He&#8217;s on the of few that still have respect for The WordPress Way, and is grateful for what it taught him.</p>\n\n\n\n<p><em>Ultimately what I find most satisfying in life is not the particular actions I’ve chosen, but <strong>the impact they have upon the people around me</strong>.</em></p>\n\n\n\n<p>Ed&#8217;s essay is <a href=\"https://heropress.com/essays/wordpress-taught-better-developer/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6201_108596-f6\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6201_71411b-5e alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6201_18957b-7a inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6201_a44261-b0 wp-block-kadence-advancedheading\"><a href=\"https://hallwaychats.com\">WPPhotos.Info</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image\">\n<img width=\"300\" height=\"225\" src=\"https://heropress.com/wp-content/uploads/2023/12/975656edaa198dd64.92618733-scaled-1-300x225.jpg\" alt=\"\" class=\"wp-image-6206\" /></div>\n\n\n\n<p>This week&#8217;s <a href=\"https://wpphotos.info\">WPPhotos Info</a> is called &#8220;<a href=\"https://wpphotos.info/thermosolar-plant/\">Thermosolar plant in Seville</a>&#8220;. </p>\n\n\n\n<p>This photo was taken by <a href=\"https://wordpress.org/photos/author/nilovelez/\">Nilo Velez</a> and it is the thermosolar plant inside the Heineken factory in Seville. They use it to boil water and save energy when they are making beer.</p>\n\n\n\n<p><a href=\"https://wpphotos.info/thermosolar-plant/\">Read more of the story at WPPhotos.info!</a></p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6201_92eb7e-24\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6201_700552-40 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6201_feb2c3-de inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6201_646446-89 wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n\n<p>There were <em>eighteen</em> WordPress podcast episodes released this week! There&#8217;s also a new podcast this week, <a href=\"https://wppodcasts.com/podcast/the-wordpress-edge/\">The WordPress Edge</a>!</p>\n\n\n\n<ul>\n<li><a href=\"https://underrepresented-in-tech.castos.com/episodes/our-thoughts-on-feminism#new_tab\">Our Thoughts on Feminism</a> from <a href=\"https://wppodcasts.com/podcast/underrepresented-in-tech/\">Underrepresented in Tech</a></li>\n\n\n\n<li><a href=\"https://wp-tonic-show-a-wordpress-podcast.castos.com/episodes/891-wp-tonic-this-week-in-wordpress-saas-the-challenges-of-building-kadencewp-on-wordpress#new_tab\">#891 – WP-Tonic This Week in WordPress &amp; SaaS: The Challenges of Building KadenceWP On WordPress</a> from <a href=\"https://wppodcasts.com/podcast/wp-tonic/\">WP-Tonic</a></li>\n\n\n\n<li><a href=\"https://unbilleteachattanooga.com/episodio-240/#new_tab\">Episodio 240: Así nos lo montamos para ir a tantos eventos</a> de <a href=\"https://wppodcasts.com/podcast/un-billete-a-chattanooga/\">Un billete a Chattanooga</a></li>\n\n\n\n<li><a href=\"https://share.transistor.fm/s/2ca52c75#new_tab\">State of the Word 2023</a> from <a href=\"https://wppodcasts.com/podcast/the-wp-minute/\">The WP Minute</a></li>\n\n\n\n<li><a href=\"https://viewsource.fm/s2/5#new_tab\">We want to see more releases like WordPress 6.4</a> from <a href=\"https://wppodcasts.com/podcast/viewsource/\">viewSource</a></li>\n\n\n\n<li><a href=\"https://dothewoo.io/page-builders-documentation-and-an-scaling-for-swifties/#new_tab\">Page Builders, Documentation and an Scaling for Swifties</a></li>\n\n\n\n<li>Posted onDecember 8, 2023 <a href=\"https://wppodcasts.com/podcast/do-the-woo-a-woocommerce-podcast/\">Do the Woo &#8211; A WooCommerce Podcast</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6201_ddcc4c-63\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6201_2a1478-17 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6201_1e2866-6e inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading6201_fc6775-27 wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/2246576df3eb751b6.70554510-2048x1536-1.jpg\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/2246576df3eb751b6.70554510-2048x1536-1-1024x768.jpg\" alt=\"\" class=\"wp-image-6229\" /></a><a href=\"https://wordpress.org/photos/author/sharankrishna/\">sharankrishna</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/13965785a624c15b8.38688020-scaled.jpeg\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/13965785a624c15b8.38688020-768x1024.jpeg\" alt=\"\" class=\"wp-image-6226\" /></a><a href=\"https://wordpress.org/photos/author/sheelagc44/\">sheelagc44</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/84657976a91e6c58.90548471-scaled.jpg\"><img width=\"576\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/84657976a91e6c58.90548471-576x1024.jpg\" alt=\"\" class=\"wp-image-6224\" /></a><a href=\"https://wordpress.org/photos/author/vishalrana2404/\">vishalrana2404</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/257657926fd43a316.15730428-scaled.jpeg\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/257657926fd43a316.15730428-1024x768.jpeg\" alt=\"\" class=\"wp-image-6228\" /></a><a href=\"https://wordpress.org/photos/author/devtanbir/\">Tanbir Ahmod</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/497657723b56b1e82.88549465-scaled.jpg\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/497657723b56b1e82.88549465-1024x768.jpg\" alt=\"\" class=\"wp-image-6225\" /></a><a href=\"https://wordpress.org/photos/author/smrajib/\">smrajib</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/40665771219281808.24779285-scaled.jpg\"><img width=\"1024\" height=\"689\" src=\"https://heropress.com/wp-content/uploads/2023/12/40665771219281808.24779285-1024x689.jpg\" alt=\"\" class=\"wp-image-6227\" /></a><a href=\"https://wordpress.org/photos/author/anildulal/\">anildulal</a>\n\n\n\n\n<p></p>\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p>The header photo for this post is a <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/839655ae19/\">photo</a> by <a href=\"https://wordpress.org/photos/author/ardhrubo/\">Dhrubo</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That&#8217;s it for this week! If you&#8217;d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/better-development-with-wordpress-wp-photos-and-more/\">Better Development With WordPress, WP Photos, And More!</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Dec 2023 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Do The Woo Community: A Post Mortem Marketing Analysis of Black Friday aka Stuff You Should Do\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78693\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://dothewoo.io/a-post-mortem-marketing-analysis-of-black-friday-aka-stuff-you-should-do/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:453:\"<p>Adam and Emma discuss the importance of conducting a post-mortem analysis after a major marketing campaign, such as Black Friday.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/a-post-mortem-marketing-analysis-of-black-friday-aka-stuff-you-should-do/\">A Post Mortem Marketing Analysis of Black Friday aka Stuff You Should Do</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Dec 2023 11:47:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Matt: Podcast with Texts founder Kishan and Techcrunch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=109295\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2023/12/kishan-techcrunch/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1280:\"<p><a href=\"https://kishanbagaria.com/\">Kishan Bagaria</a> and I had chance to <a href=\"https://techcrunch.com/2023/12/13/why-automattic-spent-50m-on-texts-com/\">catch up with Alex Willhelm on the Techcrunch Equity podcast</a>, it&#8217;s a bit of a time travel since we recorded this on November 28<sup>th</sup> and there has been a ton of activity in the messaging space including the whole <a href=\"https://www.techmeme.com/231211/p17#a231211p17\">Beeper Mini launch and smackdown from Apple</a>. However it&#8217;s worth listening to get to know Kishan and hear some of Automattic&#8217;s broader, long-term strategy in this space. </p>\n\n\n\n<p>To give our current take with regards to iMessage: Right now we run on desktop only, basically automating Apple&#8217;s first-party app. This obviously won&#8217;t work on iOS or Android. With every network we support we want to have a good, non-adversarial relationship that puts the user first, with the utmost standards for privacy and security, and understanding the principles and values each network is trying to uphold. We&#8217;re watching this space unfold very closely, and trying to help where we can. Check out the episode here:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div>    <div></div>    </div>\n</div>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Dec 2023 03:35:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordCamp Central: 2023 Annual Meetup Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=4810030\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://central.wordcamp.org/news/2023/12/2023-annual-meetup-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1760:\"<p>In November, we launched the <a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\">Annual Meetup Survey</a>. This year, we propose a unified survey for all Meetup members and organizers. Because of lack of time, we were not able to coordinate the translation to other languages as we did in previous editions, and I&#8217;d love to apologize to all meetup members and organizers who were waiting for the survey to be available in their languages. Next year we&#8217;ll plan it in advance.</p>\n\n\n\n<p>Please take a moment to complete the <a href=\"https://wordpressdotorg.survey.fm/2023-meetup-annual-survey\">Annual Meetup Survey</a> – even if you haven’t participated in a meetup recently! This survey is an important opportunity to share your feedback on WordPress meetups in 2023 and how we can improve the program in the future. Even if you did not attend meetup events in 2023, your input is valuable! The survey takes less than 5 minutes to fill out, and the results will help strengthen WordPress meetups in the years to come.</p>\n\n\n\n<p>We hope to achieve a 100% response rate among Meetup organizers and members around the world, and get actionable insights about two challenges that the WordPress ecosystem is facing right now:</p>\n\n\n\n<ul>\n<li>How can we increase the number of WordPress events?</li>\n\n\n\n<li>How can we increase the number of WordPress users worldwide?</li>\n</ul>\n\n\n\n<p>The survey will remain open until January, Dec 14, 2024.</p>\n\n\n\n<p>To open the survey in a new tab, please use the following link: <a href=\"https://wordpressdotorg.survey.fm/2023-meetup-annual-survey\" target=\"_blank\" rel=\"noreferrer noopener\">https://wordpressdotorg.survey.fm/2023-meetup-annual-survey</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Dec 2023 15:06:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: #103 – Emma Young on Exploring WordPress, the Software, the Events and the Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=151850\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/podcast/103-emma-young-on-exploring-wordpress-the-software-the-events-and-the-community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48040:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case getting excited about WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players. If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Emma Young. Emma is the head of content for Hostinger, and is on the podcast today to chat through her new found love of WordPress and the community which surrounds it.</p>\n\n\n\n<p>Emma&#8217;s journey is quite inspirational. From having almost no experience with WordPress just a few years ago, she&#8217;s now immersed deeply in all that WordPress has to offer. Just over a year ago, she&#8217;d been using WordPress a little, but that was it. Then she found employment in the space and has been to all three 2023 flagship WordCamps, as well as the WordPress Community Summit. So the whole conversation is colored with this newness, and energy, which is quite infectious.</p>\n\n\n\n<p>We explore the delicate balance between profitability and community values in her job. Emma sheds light on Hostinger&#8217;s commitments in the WordPress space, and how they tread the tight rope of being a good community citizen while still turning a profit.</p>\n\n\n\n<p>We also delve into the company&#8217;s recent involvement in WordPress events and WordCamps, discussing the benefits they have reaped from these. It&#8217;s things like brand awareness and invaluable feedback from the community. Emma&#8217;s passion for networking and continuous improvement is evident as she shares her personal experiences. We discussed the inclusive nature of the WordPress community and the various pathways individuals with different personality types can follow to feel at home. Emphasizing the ample opportunities available for everyone to contribute.</p>\n\n\n\n<p>We get into the collaborative nature of the WordPress community, exploring the cameraderie, philanthropy, and human connections that thrive within WordPress events and projects. Emma shares her insights from her recent involvement in helping to organize WordCamp Europe, and her dedication to contributing to documentation.</p>\n\n\n\n<p>If you&#8217;re looking for a way to find your place in the WordPress community, this podcast is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, You can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Emma Young.</p>\n\n\n\n<p>I am joined on the podcast today by Emma Young. Hi Emma.</p>\n\n\n\n<p>[00:03:34] <strong>Emma Young:</strong> Hello.</p>\n\n\n\n<p>[00:03:35] <strong>Nathan Wrigley:</strong> Very nice to have you on the podcast today. We are going to talk about the WordPress community. We&#8217;re really going to hone in on the community, and Emma&#8217;s recent contributions. Her journey very recently, in really getting stuck into WordPress events and all of that kind of thing.</p>\n\n\n\n<p>Before we get into that Emma, I wonder if you wouldn&#8217;t mind just spending a moment, giving us your bio. You can go as far back as you like. But I guess, given that this is a WordPress podcast, maybe if we center it around WordPress and the community and so on.</p>\n\n\n\n<p>[00:04:04] <strong>Emma Young:</strong> Yeah. So just briefly, I had a lot of failed attempts at WordPress blogs growing up. But they were a lot of fun, and I think led me to content in general, and where I got probably the most involved in the WordPress community. So yeah, all of that leading to traveling to different places, and ending up working for Hostinger, where I used WordPress every single day.</p>\n\n\n\n<p>Which led to, I don&#8217;t know, diving feet first, head first, whole body first into the WordPress community earlier this year. One thing just led very nicely to the other. It was just this nice little circle, universe kind of shoving me towards the WordPress community. And me just jumping, or kind of like slowly running, like on the beach, like the 90s rom com, like with open arms and the community just being like, welcome.</p>\n\n\n\n<p>I guess really started diving in last year with the contributions to the docs team. Somebody introduced, hey have you ever heard of Five for the Future? Have you ever heard of contributing to WordPress?</p>\n\n\n\n<p>And I was like, what, you could do that? Yeah, let&#8217;s look into it. It&#8217;s super easy. Signed up, and then, you know, I love documentation. I love words. I love everything that the docs team stands for. And then I just got super obsessed with it. What else do you need? What else can I do? And that was mid last year. And then I think since then, I don&#8217;t know, I feel like we&#8217;ll unfold a lot more of that in this podcast. I don&#8217;t want to give too many spoilers. Yeah, I don&#8217;t really have that much bio before that time.</p>\n\n\n\n<p>[00:05:25] <strong>Nathan Wrigley:</strong> Okay. That&#8217;s totally fine. It sounds as if you were, I&#8217;m going to use the phrase digital nomad. I could be completely wrong in that intuition. But is there a bit of that? Were you using WordPress over the last decade, as a way of earning a living whilst doing things in different parts of the globe? Or was it more of a hobby thing? You definitely mentioned that you&#8217;d used WordPress repeatedly, but I don&#8217;t know on what level that was helping supplement what you were doing.</p>\n\n\n\n<p>[00:05:49] <strong>Emma Young:</strong> Yeah, like on a personal level, I wasn&#8217;t making any money. It was more like blogs and trying to give my family a little bit, family and friends a little insight into what I was doing. But digital nomad is for sure a great way to put it. I don&#8217;t stay put in one place. I think for a while there, it was like every six months we were moving. I actually live out of my suitcase right now as well. But with all of that, most of the jobs that I had was using WordPress in one way or another. So it&#8217;s always been like a common denominator through all of my travels and work.</p>\n\n\n\n<p>[00:06:18] <strong>Nathan Wrigley:</strong> Do you know what? I&#8217;ve never heard the idea of a website to keep your parents updated. And yet, that&#8217;s such an obvious way of doing things. I had a period of time where I was roaming the world, and the internet simply didn&#8217;t exist. You know, you had to go through pains of getting on an international call, which inevitably was really difficult to achieve.</p>\n\n\n\n<p>But yeah, the idea of creating a blog or something, with imagery and descriptions of what you&#8217;re doing that your parents and, well, anybody that is interested in what you&#8217;re up to. Yeah, that seems like a really perfect use case.</p>\n\n\n\n<p>So you mentioned that the last year has really been the time where you&#8217;ve got stuck into it. Is that because of a collision with a job that you&#8217;ve taken on, or anything like that? Or was it intentional from your part, which then led to a job? Which way round did that go?</p>\n\n\n\n<p>[00:07:03] <strong>Emma Young:</strong> The chicken and the egg. Both. I don&#8217;t know. The job I guess was the reintroduction into it, which made me go from just using WordPress slightly, and daily work activities. And for the blog, I think, really jumping into the WordPress community.</p>\n\n\n\n<p>Started working at Hostinger. I&#8217;m head of content for their marketing team. And majority of what I do is providing educational content to help people with their WordPress sites. So it was a very easy transition to hear like, oh wait, you can just do this for WordPress, and you can help twice as many people. If it&#8217;s easier for somebody to use WordPress, then it&#8217;s going to be easier for the people that are looking at our tutorials.</p>\n\n\n\n<p>So while it first came through my company, that was just kind of like the door. And then when we started learning about WordCamp and participating in that, that was kind of, oh, what&#8217;s Five For the Future? How do you contribute? How do you actually help out with all of this? What are some problems you can help with? That was the second part, but that&#8217;s definitely been a huge part of it.</p>\n\n\n\n<p>[00:08:02] <strong>Nathan Wrigley:</strong> Given the nature of this podcast, it would be great if we don&#8217;t make this slide into an advert for Hostinger, but I think we should dive into that a little bit. What is the position of Hostinger, vis a vis WordPress? I mean, it is a hosting company and obviously we all know that WordPress is incredibly popular with hosting companies, because of the benefits that it has. The fact that it&#8217;s free and open source, and they can offer it to their customers and so on.</p>\n\n\n\n<p>What is the position that they&#8217;ve got? Do they send you to events in order to promote? Do they send you to events in order to network? And also you mentioned the kind of content that you create. Is it specifically aligned to Hostinger&#8217;s implementation of WordPress? Or is it a bit of, okay, here&#8217;s just how to use WordPress more generally. So it&#8217;s not necessarily tied to, well, you must be on Hostinger to make use of this article and so on.</p>\n\n\n\n<p>[00:08:49] <strong>Emma Young:</strong> Yeah. It&#8217;s gonna be interesting to try to teeter the line. But yeah, so Hostinger&#8217;s managed WordPress hosting is what we offer. And WordCamps are all of the above. I guess you could say. Yes, we go there to help the community. We also go there for feedback. We go there to promote as well, and to network.</p>\n\n\n\n<p>But I think everything can be boiled down to majority of our users use WordPress. So if WordPress isn&#8217;t working well, and isn&#8217;t continuing to improve and have innovation and have new features, then nobody&#8217;s going to want to use it. So then what are the people that use Hostinger going to want to use?</p>\n\n\n\n<p>That is the foundation of their site. While you do need hosting, obviously to get your site online, WordPress being the majority of, what&#8217;s that? I don&#8217;t know what the statistic is these days, around 48% of users online, or 51%. It&#8217;s still a majority, at least halfway. So that is a priority for us as a company, you know. So we want that to be the best that it can be, because it&#8217;s the first line of the first iteration, the first foundation that everybody else is going to use, and we can build on top of that.</p>\n\n\n\n<p>[00:09:53] <strong>Nathan Wrigley:</strong> What do you have as your content workflow? What is the process of deciding which pieces of content you&#8217;re going to create next? You know, is it driven by support? Is it just driven by ideas that your team have? What&#8217;s going on there?</p>\n\n\n\n<p>[00:10:06] <strong>Emma Young:</strong> Yeah, so it&#8217;s been quite a few years that we&#8217;ve had support, but also tutorials. So we have like SEO content, that anybody can kind of search for if they have some type of query or problem. And then we have support that&#8217;s geared specifically for our users, like how to exactly do this with our dashboard.</p>\n\n\n\n<p>But focusing more on the SEO content. Yeah, it&#8217;s just for anybody. It doesn&#8217;t matter if you&#8217;re using this company or that company. It&#8217;s just as long as you use WordPress. How to set something up, how to get the best out of it, how to recover from the most recent Google updates so that like your site&#8217;s still optimised.</p>\n\n\n\n<p>Basically anything from a complete beginner to like, okay, which plugin is the better one for this very specific use that you want it for. Just anything underneath that umbrella.</p>\n\n\n\n<p>[00:10:53] <strong>Nathan Wrigley:</strong> I&#8217;ve always thought it would be really difficult for a company like you to pitch where it puts its content, and how it portrays itself at events and things like that. Because clearly you have to be profitable, you have to pay your staff. And so that&#8217;s really important. Without that, the business collapses, and there would be no content of any description.</p>\n\n\n\n<p>But on the other hand, the WordPress community, unlike I think lots of other commercial communities, there is this sense of open source, and not being quite so aggressive with the advertising. Just a conversation about that really. How do you pitch these things? How do you decide, okay, we&#8217;re going to do one Hostinger related piece of content for every three WordPressy pieces of content?</p>\n\n\n\n<p>When we show up at events we&#8217;re going to set a certain amount of people on the booth, and they&#8217;re obviously assigned to promoting the product, and getting people to sign up. But then we&#8217;ll also put two of them out, and they were not connected to the booth, that kind of thing. So let&#8217;s just chat that through. How does Hostinger manage that difficult tightrope walk?</p>\n\n\n\n<p>[00:11:51] <strong>Emma Young:</strong> That&#8217;s actually a great question. I think it all comes down to like open source. Obviously, this is my personal opinion, but like the idea of open source and helping each other. You scratch my back, I scratch yours. It&#8217;s been something that&#8217;s been in my life, I guess, since before I can remember. Both my parents worked for open source companies as well, and products.</p>\n\n\n\n<p>Yeah, I think that&#8217;s kind of why I like Hostinger so much. Because the end goal, as much as you&#8217;re saying like, marketing is to make money. Every company wants to make money. As much as we&#8217;re like, oh, the money&#8217;s not important, it is. But there is a line, and at the end of the day the biggest focus is on the client, and on the customer, and the person that&#8217;s reading the tutorial.</p>\n\n\n\n<p>Is this actually even helpful for them? Do they even care what this is about? Are you just regurgitating from SERPs, like from the top 10 things that pull up? Or are you actually checking the steps, making sure that you&#8217;re actually going to get to the solution as fast as possible? And are you answering all of these questions before they even become a problem, so that it&#8217;s all there prepared for you?</p>\n\n\n\n<p>And at least for my content team, that is our mission and vision. That we want anybody who reads this to not have to like scroll all the way to the bottom after the history of everything, but just to actually help.</p>\n\n\n\n<p>And I think that&#8217;s the nice thing about this line, is that&#8217;s what the WordPress community is about. That&#8217;s what open source project, everything is just working towards a similar goal. At the end of the day it&#8217;s just, was it helpful? And did it solve somebody&#8217;s problem?</p>\n\n\n\n<p>And if we happen to make money along the way, awesome. But not all of our content is out there to make money. Some of it, yes. But a lot of it, it&#8217;s just there to answer your question. Hey, if you have a problem, we can help you because we&#8217;ve done it X amount of times before with different content.</p>\n\n\n\n<p>[00:13:30] <strong>Nathan Wrigley:</strong> I would imagine if you&#8217;ve been attending some of the bigger WordPress events in the last couple of years, you will have seen the presence of Hostinger. Because you&#8217;ve been fairly aggressive with the, you know, you&#8217;ve been sponsoring a lot. You&#8217;ve been taking some of the big sponsorship packages, and things like that.</p>\n\n\n\n<p>And I know you&#8217;ve only been there for a short amount of time. So this might be out of your wheelhouse. But I was curious as to when that process began. I don&#8217;t know if it&#8217;s been going on for years and years and years, or if it&#8217;s a much more recent push to be part of the WordPress community. So my intuition, my feeling, is that it&#8217;s really over the last two, two and a half years that Hostinger has become more focused on this. So just very quickly, is that right? Have I got that about right?</p>\n\n\n\n<p>[00:14:09] <strong>Emma Young:</strong> Yeah, pretty much. Not this year, but last year was the first time that we actually, you know, participated in WordCamps, flagship ones. And then also more local ones. But, yeah, you&#8217;re right. The last two years, pretty much.</p>\n\n\n\n<p>[00:14:22] <strong>Nathan Wrigley:</strong> We have quite a broad audience, but there&#8217;s definitely product owners, and hosting company representatives listening to this podcast. And very often when we get into conversations about this kind of thing, we talk about the fact that there isn&#8217;t really an ROI on attending WordPress events.</p>\n\n\n\n<p>And often it&#8217;s a sunk cost, you know, you&#8217;re going, you&#8217;re showing your face, you&#8217;re talking to an already converted crowd in many ways. Those people are, you know, they&#8217;ve been in the WordPress space for a long time, they&#8217;ve figured out what hosting it is that they want.</p>\n\n\n\n<p>I just wondered what your intuition was around that. Is attendance at those kind of events, is it more about just making your presence felt, being a good citizen, showing up. Rather than, okay, we&#8217;re going to definitely come out of this with 100, 200, 300 new customers. Because I&#8217;m guessing that isn&#8217;t really what comes out of it.</p>\n\n\n\n<p>[00:15:08] <strong>Emma Young:</strong> Wow, that would be amazing. I think the biggest thing that we can call a win is the first years WordCamps to this one is, people are not being like, who are you guys? Never heard of you before. And it&#8217;s like, I&#8217;m going to come check out your booth. Like that is a big win just for branding, you know.</p>\n\n\n\n<p>Another one is, I don&#8217;t think the intention is to go in there and be like, we have to get a thousand new customers. But in a sense, we can grow quite a bit and, you know, reap the benefits of like a snowball effect by getting feedback from everybody that&#8217;s there.</p>\n\n\n\n<p>Like you said, everybody has a niche, or something specific that they work on, and they&#8217;re the expert of. And then they can give us feedback on, and we can improve from there. And in the long run, yeah, we can benefit from that. But it&#8217;s not like short term and boom, boom, boom.</p>\n\n\n\n<p>[00:15:48] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s not a quick win, is it? I remember the first time I saw your logo was at WordCamp Europe, and you had one of the big booths. So obviously, in my head, there was a bit of disconnect there. I&#8217;m thinking, woah, I know that is a very sizable investment, but also I&#8217;ve not heard of that company before. Whereas all the other ones who&#8217;d made the similar investment, and indeed the ones that were on the slightly smaller booth shall we say, I&#8217;d heard of all of them. So that was just curious to me.</p>\n\n\n\n<p>And then I went to another event, and there you were again. And so it repeated itself. I feel that&#8217;s the game, isn&#8217;t it. It&#8217;s the long game. It&#8217;s about being recognised. It&#8217;s about showing up. Not necessarily, as you said, trying to get that return on investment, although that would be brilliant.</p>\n\n\n\n<p>And so for product owners who are new into the space, I guess there is some lesson to learn there. Those WordPress events, I think sometimes people show up expecting that kind of return on the investment. And often it maybe isn&#8217;t the case. But the long tail of showing up again and again, I could reel off lots and lots of companies who have benefited from that.</p>\n\n\n\n<p>Although it is a bit of a hidden benefit, and it won&#8217;t necessarily go on this year&#8217;s profit and loss spreadsheet. It might in the end be worthwhile doing. And I&#8217;m guessing, the fact that you&#8217;re still doing it is proof that you believe there is a benefit to it, albeit it isn&#8217;t entirely tangible.</p>\n\n\n\n<p>[00:17:05] <strong>Emma Young:</strong> Yeah, exactly. And it&#8217;s definitely like a learn from, I don&#8217;t want to say mistakes because if you&#8217;re learning from it. But learning from your past experiences, and what are you going to tweak this time? What are we going to do better? What are we going to stop? Because, oh, shouldn&#8217;t have done that.</p>\n\n\n\n<p>That&#8217;s something that, you don&#8217;t get like a nice checklist that is like, hey, you&#8217;re new to WordPress and the community, do this, this and this. It&#8217;s kind of like, good luck. And the networking helps, because like especially with community, you can get help from other people that have been in there longer, and can give us advice.</p>\n\n\n\n<p>We&#8217;ve gotten a lot of advice from people in the community. I think one of the best things about it is, in everyday life we have our competitors, other hosting companies. But then at WordCamps, and more community focused events, it&#8217;s like on pause.</p>\n\n\n\n<p>And me and Courtney from GoDaddy had some dinner, you know. GoDaddy people we&#8217;re just like, I think this is the best way to showcase the beauty of WordPress communities. It&#8217;s like Monday, game on. But today like, hey girl, how&#8217;s it been? So like I said, that&#8217;s even on pause.</p>\n\n\n\n<p>We learned from that, and it was advice from other people that it was hey, you can&#8217;t look at it as in like, how many people come to your booth? How many hosting plans did you sell? This, this or that. It&#8217;s, hey, but look at it in this way, and look at all the doors that you&#8217;re opening in the future. And I think people that are coming into this should really remember that when they&#8217;re like what did we get from sponsoring this WordCamp? It&#8217;s not just about that.</p>\n\n\n\n<p>[00:18:20] <strong>Nathan Wrigley:</strong> I think that there are quite a few pitfalls. If you are new to the community, and let&#8217;s say that you&#8217;ve been, well, let&#8217;s keep talking about events. Let&#8217;s say that you&#8217;ve been attending events in other walks of life. So nothing to do with open source, or anything like that, specifically WordPress.</p>\n\n\n\n<p>It may be that the etiquette, for want of a better word, is slightly different. And there may be pitfalls that you fall into. And I think it is kind of good to have a plan going into that first set of events, just to take the temperature of the room a little bit, and try to figure out what other people are doing.</p>\n\n\n\n<p>It just feels a little bit more community related at WordPress events. Well, obviously there&#8217;s a real great opportunity to sell if you wish to. But it does feel that the aggressive sales side of things is not quite so obvious. And you&#8217;ve just pointed to the fact that you put your weapons down, for want of a better phrase. Once the event closes for the night, and go out and have dinner with the other people, and talk about what they&#8217;re doing, and try to figure out things.</p>\n\n\n\n<p>And then obviously go off into things like contributor day, and literally do the work together. So it&#8217;s not like you&#8217;re just having a chat over a drink, you&#8217;re actually doing work. But, taken your company T-shirt off for a moment and you&#8217;re just friends. So I guess what I&#8217;m trying to say there is, yeah, take the temperature of the room on the first few times that you go, because it may not be what you expect it to be. And your intuitions may be slightly wrong there.</p>\n\n\n\n<p>Let&#8217;s talk about you for a little bit though, personally. Because I&#8217;m just curious as to what you&#8217;re getting out of all this. You&#8217;ve obviously been doing this for, well, the amount of time that you said, just over a year or something like that. And you also said, I think you said, not just feet first, like whole body first or something like that.</p>\n\n\n\n<p>What&#8217;s the deal there? Why so much in the space of time? So just to clarify, my understanding is that a year or so ago, you hadn&#8217;t been to any kind of WordPress event. Now, obviously, with the help of the company that you work for, so we need to know that, you&#8217;ve been to the three flagship events.</p>\n\n\n\n<p>So you went to WordCamp Asia, you went to WordCamp Europe, WordCamp US. You&#8217;ve been to WordCamp Madrid, which is really big. You know, it&#8217;s not one of the smaller ones. Why so much? I mean, maybe the answer is simply, well, that&#8217;s my job. But it feels like there&#8217;s more to it than that.</p>\n\n\n\n<p>[00:20:22] <strong>Emma Young:</strong> It actually isn&#8217;t my job. Now I kind of adapted to that role because I like it, you know. But, I still do run the content team, you know. Organic traffic, woo. But yeah, I think my first flagship, my first WordCamp in general was a flagship.</p>\n\n\n\n<p>And it was the beginning of this year, just in January, in Bangkok. And the first time I was ever going to be there. I had been contributing and I was like, yeah yeah, great. You know, I can really help out with this because I like it. I think I was doing it on my spare time, not work time. And it just happened to work very parallel, and overlap with work, that they were like, if she enjoys, it this is perfect.</p>\n\n\n\n<p>But then I was, I don&#8217;t know what came over me, but I was like, let&#8217;s just not go. But let&#8217;s volunteer. Let&#8217;s do, I had no idea what that meant. I&#8217;ve never been to a WordCamp. Let&#8217;s also volunteer at the one that probably has the most hype, because it&#8217;s the first one after the pandemic.</p>\n\n\n\n<p>And then, I don&#8217;t know, I had public speaking PTSD from being inside my house for three years, only talking to people through the screen. And I kind of challenged myself, and I volunteered as an interviewer. I was like, let&#8217;s just not go to an event where you have to mingle, but let&#8217;s make it a job. And let&#8217;s actually have to find people and sit down and encourage them to talk me. Let&#8217;s just make my life harder, you know.</p>\n\n\n\n<p>And it was the best experience ever. I don&#8217;t even know how to explain how much fun I had from like the first day from volunteers. Meeting colleagues from different countries that also came together to be at this WordCamp.</p>\n\n\n\n<p>I just remember walking into like volunteers orientation being like, this was the dumbest thing you&#8217;ve ever done, Emma. Like yeah, you like to travel. Yeah, you like WordPress. Nope, just awkwardly moonwalk out of here and just hide in a corner for the next three days and it&#8217;ll be fine, you&#8217;ll just get fired, it&#8217;s okay.</p>\n\n\n\n<p>Yeah, I don&#8217;t know, I think it was Milan who was like, oh hey girl. I was like, oh hey dude. And that was it. That was all it took. Like some dude who I had never met before, just come up to be like, hey girl, what&#8217;s your name is? Just like playing around. And the rest was history.</p>\n\n\n\n<p>And I enjoyed that so much that I was like I want more of this. I see the point of this. I see the benefit of this, and it also helps my company on the side. So that&#8217;s, I think what led to, you know, being super involved with WordCamp Europe, and volunteering for that.</p>\n\n\n\n<p>I tried to do something different, and put myself in kind of like a learning experience. Instead of volunteering as an interviewer, I was like maybe I can be an MC. Let&#8217;s see how I feel on stage. So maybe one day I could be a speaker, I don&#8217;t know.</p>\n\n\n\n<p>And right before that same thing, I was like, this is the dumbest idea Emma. Like, why do you keep doing this to yourself? And then when I went out there, I don&#8217;t even know how to explain it. I was like, this is awesome. Nobody cares if I mess up. Nobody cares if I made a mistake. Nobody realises if I made a mistake. I can be as silly as I want to be. Just as long as I say all the things I&#8217;m supposed to.</p>\n\n\n\n<p>And it was to an audience of all the same WordPress nerds is me. We would all geek out on the same thing. I could make all of the same jokes that I would say to somebody that I was having coffee with at WordCamp, but to a huge audience. And they would get it because we have the same interests.</p>\n\n\n\n<p>I mean like I&#8217;ve done like calls or workshops and trainings, and I still get like butterflies. I don&#8217;t know, it was just a different experience. I had like zero fears when I was emceeing. That was kind of an internal thing that I was using to see how I would do moving forward.</p>\n\n\n\n<p>And the WordPress community, WordCamp&#8217;s helped me kind of work through that. And now it&#8217;s just gone and gone and gone, and now I&#8217;m part of the next WordCamp Europe&#8217;s organising team. And it&#8217;s just crazy that not even a few months ago was the first time I&#8217;d ever been to WordCamp Europe.</p>\n\n\n\n<p>[00:23:43] <strong>Nathan Wrigley:</strong> So in summary, no regrets.</p>\n\n\n\n<p>[00:23:46] <strong>Emma Young:</strong> Oh, zero. I encourage everybody to do it. Or come find me and I will try to give you the best pep talk there is.</p>\n\n\n\n<p>[00:23:52] <strong>Nathan Wrigley:</strong> So a couple of things to throw in there. First of all, I suspect that not everybody is the same as you. So you strike me, forgive me if I&#8217;m getting this wrong, but you strike me as fairly outgoing. And maybe the baggage that you were carrying is that you walked into the room. You were more than willing, when Milan walked up to you, you were more than willing to just throw it off and get stuck in. And all it took was for a friendly face to come over and say hi, and that was it. You were off to the races.</p>\n\n\n\n<p>But would you say that for somebody who was, let&#8217;s say more introverted, or a little bit more concerned about how the event might go down, they haven&#8217;t done anything like this before. They just want to lurk. Is that okay in your opinion? You know, you don&#8217;t have to be a certain personality type.</p>\n\n\n\n<p>And the kind of roles that you took on, I guess it&#8217;s important to say as well, are very public facing. Whereas you really don&#8217;t have to have that as part of your arsenal. It is quite possible to contribute meaningfully, just sitting at a desk with your computer, not necessarily being outgoing or vivacious. Just chatting to the people that are nearby. Concerned with the thing that you&#8217;re concerned with. Could be docs. Could be TV. Could be, I don&#8217;t know, SEO. Could be anything that any of the tables occupy.</p>\n\n\n\n<p>So firstly that. You were well equipped for this. But it&#8217;s not necessarily that that needs to be the case for everybody, right?</p>\n\n\n\n<p>[00:25:03] <strong>Emma Young:</strong> Yeah, no, 100%. There were also some people from my team that contributed as well for photography. You know, that&#8217;s a great one if you&#8217;re very into like arts and more creative, where you don&#8217;t have to speak to anybody. Everybody sees it, well, not everybody. But oftentimes when they see a camera at this event, they&#8217;re like, okay, I&#8217;d love to smile for it.</p>\n\n\n\n<p>But like you said, with the contributions as well. That&#8217;s one of the best ways to start. You can test out every single thing to see where you are the most comfortable with. Where you feel you can help the most, or where you&#8217;re enjoying helping the most. And it&#8217;s not like an outwardly facing, hey, get on stage, kind of contribution. Maybe you&#8217;re very interested in just writing stuff and testing some things out, or QA-ing a plugin or a theme that somebody wants approved. But very important as well.</p>\n\n\n\n<p>And same with volunteering actually. You know, there&#8217;s lots of different teams that you don&#8217;t have to go on stage. You don&#8217;t have to ask people to do interviews. You can simply, if you do want to be a volunteer and help with WordCamps that way, you know, just being somebody who can direct somebody to the bathroom. Or like where the emergency kit is. Or working the lost and found, where you talk to people every once in a while.</p>\n\n\n\n<p>If you don&#8217;t want to talk to anybody at all, maybe social media, where you sit behind the laptop and people bring you images and you post on there. You know, there&#8217;s lots of different ways that you can volunteer for the WordCamps that aren&#8217;t as outgoing or extroverted.</p>\n\n\n\n<p>But you also don&#8217;t have to do any of that. You can also just go there and enjoy it as an attendee, and talk to people when you want to talk to people. Approach them. If somebody says like, hey, how&#8217;s it going? No, sorry, not now. No one&#8217;s going to take offense to it. I think at one of the WordCamps, they actually had interaction badges.</p>\n\n\n\n<p>[00:26:35] <strong>Nathan Wrigley:</strong> Yeah. It was WordCamp US in San Diego, I think that was right. There was a little indicator on your lanyard, which indicated how open you were to being talked to out of the blue.</p>\n\n\n\n<p>[00:26:46] <strong>Emma Young:</strong> And I think that like extra measures like that is helpful. But there&#8217;s a place for everybody. You don&#8217;t have to go as aggressive as I did. You can be a lot more introverted. Even if you want to try, and I encourage you to be a speaker for the first time, to try it. Even as an introvert. Somebody who&#8217;s never, maybe done a presentation to a large group of people, or at all.</p>\n\n\n\n<p>We have like different channels on WordPress Slack, and different resources that we try to help encourage people and feel more comfortable, or help you give just the encouragement and pep talk that you need, to even just apply for it. But I think that&#8217;s another beauty about the community is, there is a place for everybody, where you can be more an extroverted person, more of an introvert. Or somebody who&#8217;s half the time extrovert and half the time, like me, has to go hide in a corner for a couple hours. Recharge your battery and then be wooo again.</p>\n\n\n\n<p>[00:27:35] <strong>Nathan Wrigley:</strong> Back on the mission, yeah. I think the WordPress community is really a bit of a microcosm. It is big enough to be a microcosm of the community in general. There are people who are very outgoing. There are people who are not so. There is a task for people who are outgoing. There&#8217;s a task for people who are not outgoing. You don&#8217;t need to fit any particular mold.</p>\n\n\n\n<p>But also, I think the bit that you mentioned, and I really can&#8217;t put my finger on why this is, but I do think that the WordPress community is populated by nice people. And so if you do attend, and you do decide to, oh, let&#8217;s say you really push the boat out and you decide to be a speaker. The reception that you&#8217;ll get, I&#8217;m more or less able to guarantee, it will be fabulous.</p>\n\n\n\n<p>It&#8217;s not one of those talent shows on TV where you stand up there, do your thing, and then there&#8217;s a panel of people who just sort of scratch their chins and give you some commentary on where you could have improved it. How it could have been better. It&#8217;s really not like that. It&#8217;s the opposite. It&#8217;s like you get a bunch of tens every time. And so, really have that in the back of your mind.</p>\n\n\n\n<p>A few minutes ago, though, you said something which stuck in my head and I don&#8217;t even know if you meant to say it, but it was kind of the nub of everything. And you were describing walking into the room for the first time, and you said something along the lines of, I got it. I understood why it mattered. You said something like that.</p>\n\n\n\n<p>And I think that&#8217;s really important. Why does it matter? For you, Emma why does contributing, being involved. What is the point of it? Maybe it&#8217;s something that you get out of it. Maybe it&#8217;s going in that direction. Maybe it&#8217;s the other direction. Maybe you feel, okay great, I&#8217;m doing something philanthropic. I&#8217;m doing something which is not for my own benefit, it&#8217;s for the world. What was the meaning of that sentence? Because that is the heart of it, I think.</p>\n\n\n\n<p>[00:29:12] <strong>Emma Young:</strong> Yeah. Ooh okay. I don&#8217;t actually know. Let me try to unpack this while I use filler words, while I&#8217;m trying to think through my thoughts.</p>\n\n\n\n<p>[00:29:21] <strong>Nathan Wrigley:</strong> I&#8217;ll give you intuitions from my end, if you don&#8217;t mind. I&#8217;ll tell you why I think it&#8217;s important. I have this notion that the web offered the promise of so much. And when it was invented by Tim Berners-Lee and other people, back in the day, nobody really knew what it could be.</p>\n\n\n\n<p>But there was this great promise that it could be this fabulous, unifying force. Not only would the world&#8217;s information be accessible, but we&#8217;d be able to communicate with people in a way that, really, the expense was driven down. The ability to communicate would be approaching zero. You needed access to a computer, and nowadays a mobile phone.</p>\n\n\n\n<p>And so the promise was just such a radical departure from everything that humanity had had before. And then part of that culture, right at the beginning, was free and open source. Now, I know that in the decades since then, large corporations have jumped in and the internet has become a very profitable, noisy place, where it&#8217;s possible to feel, well, it&#8217;s just dominated by giant companies.</p>\n\n\n\n<p>And I think, for me, that&#8217;s one of the reasons that I love projects like WordPress. Because it offers that promise from decades ago of what the web could be. Does it cost you anything? Yeah, it&#8217;ll cost you a bit in hosting. Is it broadly free? Yes, it&#8217;s broadly free. Do you have to pay to contribute? No. Can you benefit from other people&#8217;s labour? Yes. Are you required to give back? No. Would it be nice if you did? Yes.</p>\n\n\n\n<p>It&#8217;s just this feeling, this wonderful feeling that I can&#8217;t, like I said, put my finger on. But there&#8217;s just something excellent about that whole idea. So there&#8217;s what I think.</p>\n\n\n\n<p>[00:30:56] <strong>Emma Young:</strong> Yeah, I agree. And the entire time we were talking, I was like, what is the word? What word like encompasses everything that you&#8217;re saying, what I&#8217;m thinking. And I&#8217;m like, I can&#8217;t just say community because, come on Emma, you work with words. But it is, like, it&#8217;s it&#8217;s collaborative.</p>\n\n\n\n<p>And I like that you brought up communication. I love strategic communication. Different styles of it, between different cultures. And I feel like that is where all of that is a nice melting pot. People from all over the world, people with different things, we all have one thing in common, where all of these things come together, finally. No, maybe not finally.</p>\n\n\n\n<p>But like, what a community, what the definition of community in my head, at least, is supposed to be, happens. So we don&#8217;t have to worry about statuses. We don&#8217;t have to worry about the company that you&#8217;ve worked for, we don&#8217;t have to worry about our culture.</p>\n\n\n\n<p>Like, we are all there for one reason, and it&#8217;s WordPress. We are all interested in one thing. We all want that one thing to succeed, and it&#8217;s collaborative. Like you were saying, with the way that all the things that the internet promised us, it&#8217;s going to bring us together. It&#8217;s going to be all of these ways to communicate. It&#8217;s going to like, you know, bridge the gap between your grandparents that live in Australia and here.</p>\n\n\n\n<p>And it did fix a lot of those things. But then during that adventure and journey, we lost a lot of communication, and a lot of collaboration, and community, and the sense of community. Unless you have one of those, you&#8217;re lucky enough to have one of those in your physical place. This is a place where it can solve that with the bonus addition of, we all just like it.</p>\n\n\n\n<p>I think that, in addition to what you were saying earlier with, everybody is genuinely nice people, and good people. There&#8217;s not some malicious agenda on the back of their mind where it&#8217;s like, ha, I&#8217;m gonna be nice to your face, but stab you in the back. Like, there is zero of that, at least from my point of view.</p>\n\n\n\n<p>In addition to all of this, it&#8217;s just a nice place to be. You make new friends, you have great conversations, you laugh pretty much for four days straight if you&#8217;re at a live event. If you&#8217;re working online with them, there&#8217;s lots of inside jokes, and it&#8217;s just, I don&#8217;t know, it&#8217;s just community. I can&#8217;t think of a better word.</p>\n\n\n\n<p>[00:32:54] <strong>Nathan Wrigley:</strong> I think I might have the word. I think the word might be humanity.</p>\n\n\n\n<p>[00:32:58] <strong>Emma Young:</strong> Yeah.</p>\n\n\n\n<p>[00:32:59] <strong>Nathan Wrigley:</strong> We live in a different world than the world of 30 years ago, before the internet was invented. But it is an enterprise where there&#8217;s a common purpose. I&#8217;ve literally met people at WordCamps who have never used WordPress. I know that sounds strange, but they somehow got themselves to a WordCamp in the past, and they just liked the feeling.</p>\n\n\n\n<p>There was something about the attendance of that event, which gave them that warm and fuzzy glow. And so they still attend, and they&#8217;ve never used WordPress. Their intention is not necessarily to ever use WordPress, but they enjoy the camaraderie that they get. They enjoy the fact that they can show up and be a part of that enormous jigsaw puzzle, and help people in a philanthropic way. You don&#8217;t necessarily have to get anything in return. And it&#8217;s just a very human enterprise, I think.</p>\n\n\n\n<p>[00:33:47] <strong>Emma Young:</strong> Yeah. And all the things that like show up with the events, you know, like the prices aren&#8217;t ridiculous to get a ticket. You don&#8217;t have to go out and separate from people to get food. You grab some food, you sit with some strangers, you introduce yourself to somebody new, or by yourself if you want to. Everything is there, and open, and welcoming.</p>\n\n\n\n<p>Yeah, it&#8217;s very different to other conferences, and I like that people that don&#8217;t actually use WordPress or have no intention to, continue to go to these. WordPress is doing something right.</p>\n\n\n\n<p>[00:34:18] <strong>Nathan Wrigley:</strong> Where have you landed then on what you&#8217;re going to be doing? Because obviously you&#8217;re fairly new. You still might have your tendrils out trying to figure out, okay, if I go to another event and there&#8217;s a contributor day, that feels like my thing.</p>\n\n\n\n<p>You mentioned that there are things like photography. There are things like docs, which I know you work with words and obviously there&#8217;s a connection there, so maybe that&#8217;s where you&#8217;ve landed. It may be that you want to try other things. What&#8217;s your intuition about that? Where do you think your endeavors will go, if you decide to contribute in the future?</p>\n\n\n\n<p>[00:34:43] <strong>Emma Young:</strong> Yes. So right now most of my, I guess, contributions been going to the organising, for the WordCamp Europe. But before that, it was primarily docs, just because I like it. I like organising. I like just documentation in general, and consistency.</p>\n\n\n\n<p>But I do think there was a conversation, quite a few conversations at the community summit, which I also went to, which is maybe not something that happens, I&#8217;ve only been involved for a short amount of time. About like content repurposing, and really like bridging the gap between teams, and merging together, and aligning with each other. I think if I could get more involved with that, to help speed that along or even just give more attention to it. We could help all of the contributions, just not one team specifically improve together.</p>\n\n\n\n<p>[00:35:26] <strong>Nathan Wrigley:</strong> Emma, it&#8217;s been really interesting chatting to you today. Thank you for joining us. If anybody is not entirely sure how much they want to contribute, whether they want to contribute, and they&#8217;ve listened to this and they&#8217;ve been inspired by what you&#8217;ve said, where would be the best place to locate you? I don&#8217;t know, it may be an email address, or a Twitter handle, or a website, or whatever you like.</p>\n\n\n\n<p>[00:35:43] <strong>Emma Young:</strong> Yeah, probably LinkedIn. I am terrible with Twitter. So I will give you that so you can link it down below, or so people can find me. Because yes, I would definitely just, you can pick my brain, ask me any questions, and I would be more than willing to help and answer in any way.</p>\n\n\n\n<p>[00:35:58] <strong>Nathan Wrigley:</strong> Thank you, Emma Young. Thank you for joining us on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:36:02] <strong>Emma Young:</strong> Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/emma-sophie-young\">Emma Young</a>.</p>\n\n\n\n<p>Emma is the Head of Content for Hostinger and is on the podcast today to chat through her new found love of WordPress and the community which surrounds it.</p>\n\n\n\n<p>Emma&#8217;s journey is quite inspirational. From having almost no experience with WordPress just a few years ago, she’s now immersed deeply in all that WordPress has to offer. Just over a year ago she&#8217;d been using WordPress a little, but that was it. Then she found employment in the space and has been to all three 2023 flagship WordCamps, as well as the Community Summit. So the whole conversation is coloured with this newness and energy, which is quite infectious.</p>\n\n\n\n<p>We explore the delicate balance between profitability and community values in her job. Emma sheds light on Hostinger&#8217;s commitments in the WordPress space and how they tread the tightrope of being a good community citizen, whilst still turning a profit. We also delve into the company&#8217;s recent involvement in WordPress events and WordCamps, discussing the benefits they have reaped from these; it’s things like brand awareness and invaluable feedback from the community.</p>\n\n\n\n<p>Emma&#8217;s passion for networking and continuous improvement is evident as she shares her personal experiences. We discuss the inclusive nature of the WordPress community and the various pathways individuals with different personality types can follow to feel at home, emphasising the ample opportunities available for everyone to contribute.</p>\n\n\n\n<p>We get into the collaborative nature of the WordPress community, exploring the camaraderie, philanthropy, and human connections that thrive within WordPress events and projects. Emma shares her insights from her recent involvement in helping to organise WordCamp Europe, and her dedication to contributing to documentation.</p>\n\n\n\n<p>If you’re looking for a way to find your place in the WordPress community, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://www.hostinger.co.uk/\">Hostinger</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/emma-sophie-young\">Emma&#8217;s LinkedIn</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Dec 2023 14:53:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Akismet: The 6 Best WordPress Form Builder Plugins Compared\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=283524\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://akismet.com/blog/best-wordpress-form-builder-plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:37912:\"<p>A well&#8209;designed form can help your website visitors reach out to you, generate new leads, and grow your email list. While you can add forms to your website by writing code, most WordPress website owners use a WordPress form builder to take care of this task. But, with a <a href=\"https://wordpress.org/plugins/search/forms\" target=\"_blank\" rel=\"noreferrer noopener\">search for ‘forms’</a> on the WordPress plugin directory retrieving hundreds of results, it can be challenging to know which is the best option for your&nbsp;site.</p>\n\n<p>To help, we&#8217;ve put together this essential guide to WordPress form builders, which will assist you in deciding on the best WordPress form plugin for your site. We&#8217;ll explore the key features any good WordPress form builder plugin should have, look at seven of the top choices, and answer all of your burning questions about WordPress forms. Let&#8217;s dive&nbsp;in!</p>\n\n\n<span id=\"more-283524\"></span>\n\n\n\n<img width=\"1600\" height=\"1066\" src=\"https://akismet455732288.files.wordpress.com/2023/11/image.jpeg\" alt=\"contact form on a website\" class=\"wp-image-283526\" />\n\n\n<h2 class=\"wp-block-heading\">What features should a quality form builder&nbsp;have?</h2>\n\n<p>While each WordPress form plugin offers different features, here are some that all should&nbsp;include:</p>\n\n<h3 class=\"wp-block-heading\">An integration with Akismet to block&nbsp;spam</h3>\n\n<p>Sadly, online forms are a target for bots that attempt to flood your site (and email inbox) with <a href=\"https://akismet.com/blog/how-to-stop-contact-form-spam-on-wordpress/\">contact form spam</a> submissions, which can leave you wading through a sea of spam to find one genuine entry from your&nbsp;visitors.</p>\n\n<p>This makes it essential that your WordPress form plugin defends against spam, and <a href=\"https://akismet.com/\">Akismet</a> is the gold&#8209;standard <a href=\"https://akismet.com/blog/best-anti-spam-wordpress-plugins-compared/\">spam protection for WordPress</a>. The service has blocked an astonishing 545,500,000,000+ pieces of spam to&nbsp;date.</p>\n\n\n<img width=\"1600\" height=\"787\" src=\"https://akismet455732288.files.wordpress.com/2023/11/image.png\" alt=\"Akismet homepage\" class=\"wp-image-283527\" />\n\n\n\n<p>Akismet gets to work silently in the background and protects your forms from spam without requiring any form of CAPTCHA or manual user input. Instead, it uses advanced AI technology and one of the world&#8217;s largest anti-spam databases to filter out WordPress form spam. It does all of this with more than 99.9% accuracy.&nbsp;</p>\n\n\n\n<p>The great news is that most leading WordPress form builders offer an integration with Akismet, so you can easily guard your forms with the best WordPress spam protection available.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Customization options</h3>\n\n\n<p>Consistency is key when it comes to branding and the visual appearance of your site. A quality WordPress form builder should allow you to easily modify the colors, fonts, and layouts of your forms, so they reflect your brand&#8217;s style and blend seamlessly into the overall design of your&nbsp;site.</p>\n\n<h3 class=\"wp-block-heading\">Templates for common form&nbsp;types</h3>\n\n\n<p>Most modern form plugins try to simplify the creation process with a drag-and-drop builder, but it can still take time to add and configure and style exactly what you need.&nbsp;</p>\n\n\n<p>To help, some solutions offer a range of templates or patterns covering common form types, which act as a great foundation while allowing you the flexibility to adjust and customize as&nbsp;needed.</p>\n\n\n<h3 class=\"wp-block-heading\">Notification settings</h3>\n\n\n<p>Your form builder lets you decide what happens after a visitor clicks submit on your form. For example, do they go to a “thank you” page, see a confirmation message, or get a copy of their submission via&nbsp;email?</p>\n\n\n<p>For most types of forms, you&#8217;ll also want to ensure that you or a member of your team is promptly notified of new form submissions. So it&#8217;s important to check out the notification options offered by each WordPress form builder.&nbsp;</p>\n\n\n<p>Most plugins will provide a range of options that allow you to configure the emails you receive each time a form is submitted, as well as choose if you want to send your data to any third&#8209;party services or store the data in your WordPress&nbsp;database.</p>\n\n<h2 class=\"wp-block-heading\">A review of the best form plugins for&nbsp;WordPress</h2>\n\n\n<img width=\"1600\" height=\"686\" src=\"https://akismet455732288.files.wordpress.com/2023/11/image-1.png\" alt=\"Jetpack Forms homepage\" class=\"wp-image-283528\" />\n\n\n<h3 class=\"wp-block-heading\">1. <a href=\"https://jetpack.com/forms/\">Jetpack&nbsp;Forms</a></h3>\n\n<p><a href=\"https://jetpack.com/forms/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack Forms</a> is one of the best WordPress form builders. It works from within the WordPress block editor, making it easy to add forms to any post or page on your&nbsp;site.</p>\n\n<p>Jetpack Forms comes with a large set of patterns that allow you to quickly create common form types, including a basic contact form and registration and feedback forms. You can also build your own from scratch using the handy drag&#8209;and&#8209;drop builder, which allows you to select from a wide range of field&nbsp;types.</p>\n\n\n<img width=\"1600\" height=\"741\" src=\"https://akismet455732288.files.wordpress.com/2023/11/image-2.png\" alt=\"Jetpack form patterns in a grid\" class=\"wp-image-283529\" />\n\n\n\n<p>Jetpack’s innovative AI assistant can also be used to help you effortlessly create advanced forms. Just describe the type of form you want, and Jetpack AI will get to work creating it. And you can use the AI Assistant to edit your existing forms. For example, you can ask it to autopopulate a country drop-down, or to add a field for event attendees to let you know their dietary requirements.&nbsp;</p>\n\n\n\n<img width=\"994\" height=\"739\" src=\"https://akismet455732288.files.wordpress.com/2023/11/image-3.png\" alt=\"Jetpack AI assistant translating a post\" class=\"wp-image-283530\" />\n\n\n\n<p>You can use Jetpack Forms to create as many forms as you need and capture unlimited responses. You can also configure email notifications for each one, which are sent using the native WordPress email function.&nbsp;</p>\n\n\n<p>All form responses are stored in the “feedback” menu of your WordPress dashboard, and you can export them straight to Google Sheets or download them as a CSV file for further analysis. Jetpack Forms also integrates with several popular services, including <a href=\"https://jetpackcrm.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack CRM</a> for contact management and <a href=\"https://www.creativemail.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Creative Mail</a> for email&nbsp;marketing.</p>\n\n<p>Jetpack is a free WordPress form plugin that lets you match your site&#8217;s design and branding by selecting the background and text color for the block and submit button. You can make form fields mandatory to ensure that you’re collecting the information you need from each visitor, configure a custom confirmation message, or redirect users to a “thank you”&nbsp;page.</p>\n\n<p>Jetpack Forms helps keep form spam at bay with a powerful two&#8209;pronged approach. First, all forms contain a honeypot field, which is designed to trick bots and prevent them from submitting your form in the first place. Jetpack Forms also works seamlessly with Akismet to add invisible AI&#8209;powered spam detection to your site, scan all form submissions to identify spam, and ensure that you only get notified about genuine form&nbsp;submissions.</p>\n\n\n<p>Like Akismet, Jetpack Forms was built by the team behind WordPress.com, so you know that it&#8217;s a powerful and safe WordPress form builder designed for ease of use. It’s considered one of the best WordPress form plugins available.&nbsp;</p>\n\n\n<h4 class=\"wp-block-heading\">Key features of Jetpack&nbsp;Forms:</h4>\n\n\n<ul><li>The ability to create forms from within the WordPress&nbsp;editor</li>\n\n<li>A range of templates&nbsp;provided</li>\n\n<li>A drag&#8209;and&#8209;drop form&nbsp;builder</li>\n\n<li>Integration with Akismet for powerful spam&nbsp;filtering</li>\n\n<li>A range of field types including text, date picker, drop&#8209;down, checkbox, and radio&nbsp;buttons</li>\n\n<li>AI&#8209;powered form&nbsp;creation</li>\n\n<li>Mobile responsive&nbsp;designs</li>\n\n<li>Unlimited forms and&nbsp;submissions</li>\n\n<li>Configurable email&nbsp;notifications</li>\n\n<li>Integration with CRM and email marketing&nbsp;services</li>\n\n<li>Google Sheets&nbsp;integration</li>\n\n<li>Customizable actions upon form&nbsp;submission</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Pros of Jetpack&nbsp;Forms:</h4>\n\n\n<ul><li>Jetpack Forms offers a range of powerful features that allow you to create custom forms for free from within the WordPress&nbsp;editor.</li>\n\n<li>The Jetpack form builder works perfectly with Akismet to catch any spam form&nbsp;submissions.</li>\n\n<li>Jetpack Forms is part of the wider Jetpack plugin, which offers a range of useful site management, performance, and security&nbsp;features.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Cons of Jetpack&nbsp;Forms:</h4>\n\n\n<ul><li>Jetpack Forms is designed to meet the needs of the average WordPress site owner, so it doesn’t have some specialty features, such as multipage forms, that are found in many paid WordPress form builder&nbsp;plugins.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>Jetpack Forms has a simple visual form builder that works within the WordPress editor. It&#8217;s simple to configure your form settings, actions, and design. Plus, patterns and AI-powered tools make it quick and easy to create the perfect form for your needs.&nbsp;</p>\n\n\n\n<p>Detailed <a href=\"https://jetpack.com/support/jetpack-blocks/contact-form/\" target=\"_blank\" rel=\"noreferrer noopener\">documentation is available</a>, and you can also access email support from Jetpack&#8217;s Happiness Engineers.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p>Jetpack Forms is part of the<a href=\"https://wordpress.org/plugins/jetpack/\"> Jetpack plugin</a>, which is free to download from the WordPress plugin directory. <a href=\"https://jetpack.com/ai/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack’s AI Assistant</a> offers 20 free requests, with unlimited requests (for both forms and the many other features offered by Jetpack AI) available for about $8 per&nbsp;month.</p>\n\n\n<img width=\"2114\" height=\"1022\" src=\"https://akismet455732288.files.wordpress.com/2023/11/screen-shot-2023-11-15-at-2.07.06-pm.png\" alt=\"WPForms homepage\" class=\"wp-image-283532\" />\n\n\n\n<h3 class=\"wp-block-heading\">2. <a href=\"https://wordpress.org/plugins/wpforms-lite/\" target=\"_blank\" rel=\"noreferrer noopener\">WPForms</a></h3>\n\n\n<p>WPForms is a popular plugin for WordPress that helps you create a wide range of forms for your&nbsp;site.</p>\n\n<p>Like most plugins in this list, WPForms is built around an intuitive drag&#8209;and&#8209;drop builder, and offers a range of templates for some of the most popular form types. Once you’ve created your form, you can embed it in any post or page using the WPForms block and tailor its appearance to match your site’s&nbsp;branding.</p>\n\n\n<p>This WordPress form plugin offers full control over what you do with the data you collect, including the option to send all form submissions by email or store the entries in your database.&nbsp;</p>\n\n\n<p>Premium versions of WPForms offer integrations with popular email and CRM services, including Mailchimp and Salesforce, along with payment gateways which allow you to create payment&nbsp;forms.</p>\n\n\n<p>All versions of WPForms integrate with Akismet so that you can keep form entry spam at bay with the leading spam detection plugin for WordPress.&nbsp;</p>\n\n\n<h4 class=\"wp-block-heading\">Key features of&nbsp;WPForms:</h4>\n\n\n<ul><li>Integration with Akismet to protect your forms from&nbsp;spam</li>\n\n<li>Pre&#8209;made templates for common form&nbsp;types</li>\n\n<li>A drag&#8209;and&#8209;drop form&nbsp;builder</li>\n\n<li>Support for custom field&nbsp;types</li>\n\n\n<li>Multipage forms</li>\n\n\n<li>Mobile responsive&nbsp;forms</li>\n\n<li>Unlimited forms and&nbsp;submissions</li>\n\n<li>Advanced customization options, including Webhook support&nbsp;(Pro)</li>\n\n<li>Integrations with popular CRM and email marketing services&nbsp;(Pro)</li>\n\n<li>Email notifications for form&nbsp;entries</li>\n\n<li>A wide range of field types, including file&nbsp;upload</li>\n\n<li>The ability to accept payments&nbsp;(Pro)</li>\n\n<li>Form abandonment notifications&nbsp;(Pro)</li>\n\n<li>Support for a range of complex forms, including surveys, ratings, and polls&nbsp;(Pro)</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Pros of&nbsp;WPForms:</h4>\n\n\n<ul><li>WPForms uses a drag&#8209;and&#8209;drop interface that simplifies building forms and changing form&nbsp;settings.</li>\n\n<li>WPForms’ premium versions make it possible to use forms to accomplish tasks that go beyond a traditional contact form, including taking payments and creating&nbsp;posts.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Cons of&nbsp;WPForms:</h4>\n\n\n<ul><li>WPForms does not allow you to create forms from within the WordPress&nbsp;editor.</li>\n\n<li>Some features of WPForms, including advanced field types and integrations with email or CRM systems, are only available in premium versions of the&nbsp;plugin.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n<p>WPForms’ drag&#8209;and&#8209;drop interface makes the plugin easy to use. Comprehensive documentation is available, and email support is offered for premium&nbsp;customers.</p>\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p>WPForms Light is available in the WordPress plugin directory and allows you to create basic forms for free. Several different premium versions of WPForms are available, which range from the Basic plan at $499 a year to the Elite plan, which unlocks all features, for $599.50 a&nbsp;year.</p>\n\n\n<img width=\"1411\" height=\"526\" src=\"https://akismet455732288.files.wordpress.com/2023/11/image-5.png\" alt=\"Gravity Forms homepage\" class=\"wp-image-283534\" />\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://www.gravityforms.com/\" target=\"_blank\" rel=\"noreferrer noopener\">3. Gravity&nbsp;Forms</a></h2>\n\n<p>Gravity Forms is a well&#8209;known premium form plugin for WordPress that offers a range of advanced&nbsp;features.</p>\n\n\n<p>Like many WordPress form plugins, Gravity Forms allows you to create forms without any programming knowledge using a drag-and-drop interface.&nbsp;</p>\n\n\n\n<p>You can include 30 different field types within your forms to build almost any type — create contact forms, quizzes, surveys, and even user registration forms.&nbsp;</p>\n\n\n<p>Gravity Forms offers various field types, along with features that allow you to create in a range of styles, including conversational forms or multipage forms. The plugin integrates with many popular services, like email marketing programs, CRM systems, and payment&nbsp;gateways.</p>\n\n<p>Gravity Forms also helps you keep your submissions spam&#8209;free by integrating with Akismet, meaning you can benefit from world&#8209;class AI&#8209;powered spam protection on all the forms on your&nbsp;site.</p>\n\n<h4 class=\"wp-block-heading\">Key features of Gravity&nbsp;Forms:</h4>\n\n\n<ul><li>A visual form&nbsp;builder</li>\n\n<li>Akismet&#8209;powered spam&nbsp;protection</li>\n\n<li>Integrations with external services, including email automation tools and payment&nbsp;processors</li>\n\n<li>Customizable notifications, emails, and on&#8209;submit&nbsp;actions</li>\n\n<li>The ability to register users and update profiles through registration&nbsp;forms</li>\n\n<li>Support for quizzes, polls, and&nbsp;surveys</li>\n\n\n<li>Conditional logic</li>\n\n\n<li>A variety of field&nbsp;types</li>\n\n<li>Form response analytics&nbsp;tools</li>\n\n\n<li>Responsive forms</li>\n\n\n\n<li>Multipage forms</li>\n\n\n<li>Conversational style&nbsp;forms</li>\n\n<li>Support for merge&nbsp;tags</li>\n\n<li>Hooks and functions, which allow developers to expand plugin&nbsp;functionality</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Pros of Gravity&nbsp;Forms:</h4>\n\n\n<ul>\n<li>Gravity Forms allows you to create advanced forms using a simple drag-and-drop interface and easily integrates with a range of external services.&nbsp;</li>\n\n\n<li>There are a wide variety of add&#8209;ons that can expand upon the plugin’s functionality without needing to hire a&nbsp;developer.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Cons of Gravity&nbsp;Forms:</h4>\n\n\n<ul><li>Many form appearance settings can only be customized by using custom CSS or a third&#8209;party&nbsp;plugin.</li>\n\n<li>Unlike the other WordPress form plugins on this list, Gravity Forms does not offer a free&nbsp;version.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n<p>While Gravity Forms has a drag&#8209;and&#8209;drop form builder, the number of advanced integrations and settings may be confusing if you’re only looking to create simple forms. A <a href=\"https://docs.gravityforms.com\" target=\"_blank\" rel=\"noreferrer noopener\">comprehensive knowledge</a> base is available, and all users benefit from email&nbsp;support.</p>\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p>Gravity Forms has a range of <a href=\"https://www.gravityforms.com/pricing/\" target=\"_blank\" rel=\"noreferrer noopener\">pricing plans</a>, each of which activates more features and integrations. Plans vary. The Basic plan starts at $59 a year and the Elite plan, which enables all features and integrations, is $259 a year. The anti&#8209;spam integration with Akismet is available on all&nbsp;plans.</p>\n\n\n<img width=\"2736\" height=\"1104\" src=\"https://akismet455732288.files.wordpress.com/2023/11/screen-shot-2023-11-15-at-3.03.19-pm.png\" alt=\"Ninja Forms homepage\" class=\"wp-image-283536\" />\n\n\n<h2 class=\"wp-block-heading\">4. <a href=\"https://wordpress.org/plugins/ninja-forms/\">Ninja&nbsp;Forms</a></h2>\n\n<p>Ninja Forms is a popular WordPress form builder that offers a basic, free version alongside a range of premium&nbsp;add&#8209;ons.</p>\n\n<p>Ninja Forms’ free version allows you to create simple forms using a drag&#8209;and&#8209;drop&nbsp;form</p>\n\n<p>builder. The plugin contains a number of templates, or you can select from over 27 different field types to create the perfect custom form for your site. Like all plugins on this list, Ninja Forms allows you to create an unlimited number of forms and places no limit on the number of submissions you can&nbsp;receive.</p>\n\n<p>Ninja Forms offers several different options for notifications, and it allows you to display custom confirmation messages to your users or redirect them to a different page on your site. You can protect any form you create against spam, thanks to its Akismet&nbsp;integration.</p>\n\n<p>The functionality of Ninja Forms can be extended through a large number of official add&#8209;ons, which allow you to add features such as user registration, payment integration, conditional logic, and multistep&nbsp;forms.</p>\n\n<h4 class=\"wp-block-heading\">Key features of Ninja&nbsp;Forms:</h4>\n\n\n<ul><li>Pre&#8209;built form&nbsp;templates</li>\n\n<li>A drag&#8209;and&#8209;drop form&nbsp;builder</li>\n\n<li>27+ field&nbsp;types</li>\n\n<li>Form customization&nbsp;options</li>\n\n<li>Spam management with&nbsp;Akismet</li>\n\n<li>Ajax form&nbsp;submissions</li>\n\n<li>Conditional logic&nbsp;(pro)</li>\n\n<li>Webhook support&nbsp;(pro)</li>\n\n<li>Front&#8209;end post submissions&nbsp;(pro)</li>\n\n<li>The ability to create user registration and management forms&nbsp;(pro)</li>\n\n<li>File uploads&nbsp;(pro)</li>\n\n<li>Form analytics&nbsp;(pro)</li>\n\n<li>Integrations with popular email and CRM services&nbsp;(pro)</li>\n\n<li>PayPal and Stripe payment integrations&nbsp;(pro)</li>\n\n\n<li>Hooks and filters, which enable developers to extend functionality&nbsp;</li>\n</ul>\n\n\n<h4 class=\"wp-block-heading\">Pros of Ninja&nbsp;Forms:</h4>\n\n\n<ul><li>Ninja Forms automatically uses the colors and fonts from your WordPress theme to help your forms match the look and feel of the rest of your site without the need to use&nbsp;CSS.</li>\n\n<li>The add&#8209;on system that Ninja Forms uses allows you to only pay for the additional features you&nbsp;need.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Cons of Ninja&nbsp;Forms:</h4>\n\n\n<ul><li>While you can guard against form submission spam using the Akismet integration, this has to be enabled by adding the <a href=\"https://ninjaforms.com/docs/akismet-anti-spam-action/\">Akismet action</a> and selecting the field you wish to protect on each form you&nbsp;create.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n<p>The drag&#8209;and&#8209;drop builder and simple configuration options offered by Ninja Forms make the plugin generally easy to use. Adding Akismet protection requires several additional steps compared to some other plugins in this list. This may be more complicated than necessary if you just want to create a simple WordPress contact form that’s protected from&nbsp;spam.</p>\n\n<p>A help center is provided for all users, as is support through the plugin’s WordPress support forum. Users with a Ninja Forms membership plan can also access email&nbsp;support.</p>\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p>Ninja Forms has a free version available on the WordPress plugin directory, which allows you to create basic forms. Various paid <a href=\"https://ninjaforms.com/add-ons/\" target=\"_blank\" rel=\"noreferrer noopener\">add&#8209;ons</a> are available to extend the plugin&#8217;s functionality for $49 each. Membership plans are also available, ranging from $99 &#8211; $299 a year, each of which includes a selection of add&#8209;ons and access to premium&nbsp;support.</p>\n\n\n<img width=\"1968\" height=\"892\" src=\"https://akismet455732288.files.wordpress.com/2023/11/screen-shot-2023-11-16-at-10.30.25-am.png\" alt=\"Contact Form 7 listing in the WordPress repository\" class=\"wp-image-283538\" />\n\n\n<h2 class=\"wp-block-heading\">5. <a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\" rel=\"noreferrer noopener\">Contact Form&nbsp;7</a></h2>\n\n<p>Contact Form 7 was one of the first free contact form plugins created for WordPress. You can use Contact Form 7 to create basic WordPress contact forms or more advanced forms with a range of field types like text boxes, check boxes, drop&#8209;downs, file uploads, and dates. You can also set fields as required to help ensure your form submissions aren’t missing essential&nbsp;information.</p>\n\n<p>You’re able to protect fields on any form you create against spam, thanks to Contact Form 7&#8217;s <a href=\"https://contactform7.com/spam-filtering-with-akismet/\" target=\"_blank\" rel=\"noreferrer noopener\">Akismet integration</a>. Contact Form 7 allows you to configure the email notifications you receive for each form, as well as set custom confirmation messages displayed to users when they submit your&nbsp;form.</p>\n\n<h4 class=\"wp-block-heading\">Key features of Contact Form&nbsp;7:</h4>\n\n\n<ul><li>The ability to create unlimited&nbsp;forms</li>\n\n\n<li>Unlimited submissions</li>\n\n\n<li>Email notifications on form&nbsp;submission</li>\n\n<li>Support for file&nbsp;uploads</li>\n\n<li>Form styling via CSS and&nbsp;HTML</li>\n\n\n<li>Akismet Anti-spam integration&nbsp;</li>\n</ul>\n\n\n<h4 class=\"wp-block-heading\">Pros of Contact Form&nbsp;7:</h4>\n\n\n<ul><li>Contact Form 7 is a lightweight plugin that won’t hinder your site&nbsp;performance.</li>\n\n<li>Because Contact Form 7 is a popular WordPress form plugin, there are a number of third&#8209;party add&#8209;ons that you can use to enhance its&nbsp;features.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Cons of Contact Form&nbsp;7:</h4>\n\n\n<ul><li>You have to use custom CSS and HTML to style the form, which can make it more challenging to match your&nbsp;brand.</li>\n\n<li>While you can add contact forms you have created to your posts and pages using the Contact Form 7 block, you can&#8217;t create forms from within the WordPress&nbsp;editor.</li>\n\n<li>Contact Form 7 doesn’t store contact form submissions. This means that to use Akismet’s ability to review form submissions, you’ll need an <a href=\"https://wordpress.org/plugins/flamingo/\" target=\"_blank\" rel=\"noreferrer noopener\">additional plugin</a> that stores entries in your site&#8217;s&nbsp;database.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n<p>While there is a very <a href=\"https://wordpress.org/support/plugin/contact-form-7/\" target=\"_blank\" rel=\"noreferrer noopener\">active support community</a> on the plugin’s WordPress support forum, along with <a href=\"https://contactform7.com/docs/\">comprehensive documentation</a>, some users may find Contact Form 7 to be more difficult to use than others on this list. It uses text&#8209;based <a href=\"https://contactform7.com/tag-syntax/\">form tags</a> rather than a drag&#8209;and&#8209;drop interface, and you have to style forms through CSS, which might make it difficult for&nbsp;beginners.</p>\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p>Contact Form 7 is available free of charge from the <a href=\"https://wordpress.org/plugins/contact-form-7/\">WordPress plugin&nbsp;directory</a>.</p>\n\n\n<img width=\"1968\" height=\"930\" src=\"https://akismet455732288.files.wordpress.com/2023/11/screen-shot-2023-11-16-at-10.34.10-am.png\" alt=\"Formidable Forms listing in the WordPress repository\" class=\"wp-image-283539\" />\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https://wordpress.org/plugins/formidable/\" target=\"_blank\" rel=\"noreferrer noopener\">6. Formidable&nbsp;Forms</a></h3>\n\n\n<p>Formidable Forms is a freemium WordPress form plugin built around a drag-and-drop builder. The plugin has an integrated live preview feature that helps you see how your form will look to visitors as you build it.&nbsp;</p>\n\n\n<p>It offers comprehensive options for form styling and comes with many templates that speed up the process of creating common form types, such as contact forms or review&nbsp;forms.</p>\n\n<p>Both the free and premium versions of Formidable Forms help you keep spam at bay by integrating with Akismet. The plugin&#8217;s premium versions offer integrations with external email marketing and CRM services, as well as a number of additional features that allow you to create a plethora of different form&nbsp;types.</p>\n\n<h4 class=\"wp-block-heading\">Key features of Formidable&nbsp;Forms:</h4>\n\n\n<ul><li>A drag&#8209;and&#8209;drop form&nbsp;builder</li>\n\n<li>A visual form&nbsp;styler</li>\n\n<li>Unlimited forms and&nbsp;submissions</li>\n\n\n<li>Form templates</li>\n\n\n<li>Akismet spam&nbsp;protection</li>\n\n<li>Email notifications and form&nbsp;autoresponders</li>\n\n<li>Fully responsive&nbsp;forms</li>\n\n\n<li>Field placeholders</li>\n\n\n<li>File uploads&nbsp;(pro)</li>\n\n<li>Conditional logic&nbsp;(pro)</li>\n\n<li>Multipage forms&nbsp;(pro)</li>\n\n<li>User registration&nbsp;(pro)</li>\n\n<li>A range of views, tables, and charts to analyze data&nbsp;(pro)</li>\n\n<li>Form automation&nbsp;(pro)</li>\n\n<li>Integration with third&#8209;party tools&nbsp;(pro)</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Pros of Formidable&nbsp;Forms:</h4>\n\n\n<ul><li>Formidable Forms features an advanced form styler that allows you to fully customize the look and feel of your&nbsp;forms.</li>\n\n<li>The premium versions of Formidable Forms enable a wide range of features that allow you to create complex forms and actions without any coding&nbsp;knowledge.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Cons of Formidable&nbsp;Forms:</h4>\n\n\n<ul><li>Your forms are not automatically protected from spam with Akismet, as it has to be enabled on each form you&nbsp;create.</li>\n\n<li>Unlike some WordPress form builders, such as Jetpack Forms, Formidable Forms does not include any integrations with email marketing or CRM services in the free&nbsp;version.</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n<p>The plugin&#8217;s drag&#8209;and&#8209;drop interface and visual form styler make Formidable Forms easy to use. A <a href=\"https://formidableforms.com/knowledgebase/\">knowledge base</a> is provided, and support for the free version is offered via the plugin&#8217;s WordPress support forum. Premium users can also access email&nbsp;support.</p>\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n\n<p>Formidable Forms has a basic, free version available from the <a href=\"https://wordpress.org/plugins/formidable/\">WordPress plugin directory</a>.<a href=\"https://formidableforms.com/pricing/\" target=\"_blank\" rel=\"noreferrer noopener\"> Premium versions</a> range from $79 &#8211; $599 per year, with each plan providing additional functionality on top of the base plugin.&nbsp;&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">Comparison of the top form builder&nbsp;plugins</h2>\n\n\n<table><tbody><tr><td>&nbsp;</td><td>Jetpack Forms</td><td>WPForms</td><td>Gravity Forms</td><td>Ninja Forms</td><td>Contact Forms 7</td><td>Formidable Forms</td></tr><tr><td>Protect forms from spam with Akismet?</td><td>Yes</td><td>Yes</td><td>Yes</td><td>Yes</td><td>Yes</td><td>Yes</td></tr><tr><td>Drag-and-drop interface?</td><td>Yes</td><td>Yes</td><td>Yes</td><td>Yes</td><td>No</td><td>Yes</td></tr><tr><td>Create forms from within the WordPress editor?</td><td>Yes</td><td>No</td><td>No</td><td>No</td><td>No</td><td>No</td></tr><tr><td>CRM and email marketing integration?</td><td>Yes</td><td>Paid only</td><td>Yes</td><td>Paid only</td><td>No</td><td>Paid Only</td></tr><tr><td>Configurable form submission actions?</td><td>Yes</td><td>Yes</td><td>Yes</td><td>Yes</td><td>Limited</td><td>Yes</td></tr><tr><td>Built by the team behind WordPress.com?</td><td>Yes</td><td>No</td><td>No</td><td>No</td><td>No</td><td>No</td></tr><tr><td>Cost</td><td>Free&nbsp;</td><td>Limited free version. Paid version plans cost $99 -$599/yr</td><td>$59-$299/yr</td><td>Limited free version. Individual add-ons from $49.Memberships from $99-$299/yr</td><td>Free</td><td>Limited free version, premium versions range from $79-$599 a year.</td></tr></tbody></table>\n\n\n<h2 class=\"wp-block-heading\">Factors to consider when choosing a form&nbsp;builder</h2>\n\n\n<h3 class=\"wp-block-heading\">Akismet integration</h3>\n\n\n<p>To keep your WordPress forms spam&#8209;free, it&#8217;s important that the WordPress form builder you choose has an Akismet integration. By using Akismet to protect your forms, you can benefit from an advanced AI&#8209;powered spam filtering system that is trusted by over 100 million sites and boasts 99.9%&nbsp;accuracy.</p>\n\n\n<img width=\"1600\" height=\"851\" src=\"https://akismet455732288.files.wordpress.com/2023/11/image-6.png\" alt=\"stats about spam blocked and websites protected by Akismet\" class=\"wp-image-283541\" />\n\n\n<h3 class=\"wp-block-heading\">Ease of&nbsp;use</h3>\n\n\n<p>The WordPress form builder you choose should be easy to use for visitors and site administrators alike. For your visitors, this means looking for a WordPress form plugin, like Jetpack Forms, that uses Akismet to protect your forms from spam, so they don&#8217;t have to solve a pesky CAPTCHA before submitting your form.&nbsp;</p>\n\n\n<p>For site administrators, this means choosing a plugin that offers an intuitive drag&#8209;and&#8209;drop interface and allows you to easily make changes to the appearance and design of your&nbsp;forms.</p>\n\n<h3 class=\"wp-block-heading\">Tools with submission&#8209;based&nbsp;actions</h3>\n\n<p>It’s one thing being able to collect form submissions from your visitors, but it’s also important that you’re able to extract and take action on the information your visitors have given&nbsp;you.</p>\n\n<p>All form plugins in our review allow you to receive email notifications of form submissions, but relying on email notifications alone can require you to manually enter data into a spreadsheet or&nbsp;CRM.</p>\n\n<p>So, you should also look for a form builder, like <a href=\"https://jetpack.com/forms/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack Forms</a>, that stores your submissions in your WordPress admin dashboard, so you can see them in one place. You should also look for a plugin that allows you to easily export data or send it to an external&nbsp;tool.</p>\n\n\n<img width=\"1600\" height=\"748\" src=\"https://akismet455732288.files.wordpress.com/2023/11/image-7.png\" alt=\"stored responses in Jetpack Forms\" class=\"wp-image-283542\" />\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions about form builder&nbsp;plugins</h2>\n\n<h3 class=\"wp-block-heading\">What makes a good WordPress form&nbsp;builder?</h3>\n\n<p>Top WordPress form plugins enable you to quickly create a range of different form types to quickly collect appropriate responses for site visitors. The best WordPress form plugin for your site, such as Jetpack Forms, should also integrate seamlessly with <a href=\"https://akismet.com/\">Akismet</a> for industry&#8209;leading spam protection that doesn&#8217;t hinder the user&nbsp;experience.</p>\n\n<h3 class=\"wp-block-heading\">How much does a good form builder plugin cost on&nbsp;WordPress?</h3>\n\n<p>Many good WordPress form builders, such as <a href=\"https://jetpack.com/forms/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack Forms</a>, are free of charge. Some plugins that offer features for complex forms, such as user registration and integration with payment gateways, have premium options that range from $49&#8209;$599 a&nbsp;year.</p>\n\n<h3 class=\"wp-block-heading\">Can I block WordPress contact form spam when using a form&nbsp;builder?</h3>\n\n\n<p>Yes, you can block contact form spam by making sure that your plugin has a honeypot feature like <a href=\"https://jetpack.com/forms/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack Forms</a> and integrates with Akismet — the leading <a href=\"https://akismet.com/wordpress/\">anti-spam solution for WordPress</a>.&nbsp;</p>\n\n\n<p>This state&#8209;of&#8209;the&#8209;art service uses advanced machine learning and artificial intelligence technology to analyze submissions in real time without getting in the way of real, human&nbsp;users.</p>\n\n<h3 class=\"wp-block-heading\">Should I use CAPTCHA on my contact&nbsp;form?</h3>\n\n\n<p>If you want to maximize conversions, you should not require users to complete a CAPTCHA.&nbsp;</p>\n\n\n\n<p>Researchers from <a href=\"https://web.stanford.edu/~jurafsky/burszstein_2010_captcha.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Stanford University</a> found that CAPTCHAs can drive people away from your forms. The data shows that 29% of users leave a page when confronted with a CAPTCHA. This is particularly concerning if you rely on forms to capture leads or receive valuable customer feedback.&nbsp;</p>\n\n\n\n<img width=\"770\" height=\"925\" src=\"https://akismet455732288.files.wordpress.com/2023/11/image-8.png\" alt=\"CAPTCHA examples prompting users to select red spheres\" class=\"wp-image-283543\" />\n\n\n<p>On average, sites using reCAPTCHA <a href=\"https://medium.com/rareview/why-your-captcha-is-killing-conversions-f9be6fe17d1f\" target=\"_blank\" rel=\"noreferrer noopener\">experience a 3.2% reduction</a> in their conversion rates compared to those that do not, which could significantly impact revenue generated from your&nbsp;site.</p>\n\n<p>CAPTCHAs can also have a significant impact on the accessibility of your forms. Individuals with vision or hearing impairments often find it impossible to complete a CAPTCHA, even with assistive&nbsp;technology.</p>\n\n\n<p>For these reasons, millions of WordPress site owners have turned to Akismet to protect their sites with world-class, <a href=\"https://akismet.com/blog/convertkit-customerstory/\">non-intrusive spam protection</a>.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">How do I enable the best anti&#8209;spam protection for my contact&nbsp;forms?</h3>\n\n<p>To protect your site with the world&#8217;s leading anti&#8209;spam solution, you need to select a WordPress form builder, like <a href=\"https://jetpack.com/features/discussion/contact-forms/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack Forms</a>, that integrates with Akismet. You&#8217;ll first need to get an Akismet API key. These are available for free if you&#8217;re running a personal blog or through an affordable subscription for commercial&nbsp;sites.</p>\n\n\n<p>You then need to download and activate the Akismet anti-spam plugin. Some form plugins, like Jetpack Forms, will start protecting your forms with Akismet straight away, whereas, in others, you&#8217;ll need to enable the Akismet spam protection within the plugin&#8217;s settings.&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">Akismet: AI&#8209;powered anti&#8209;spam for WordPress&nbsp;forms</h2>\n\n<p>Once you&#8217;ve built your website&#8217;s forms, it&#8217;s time to protect them from spam, and <a href=\"https://akismet.com/\">Akismet</a> is your complete solution for spam detection and&nbsp;prevention.</p>\n\n\n<p>Akismet blocks form spam using advanced AI technology that works in the background. It automatically analyzes submissions in real time and lets genuine entries through while discarding spam.&nbsp;</p>\n\n\n<p><a href=\"https://wordpress.org/plugins/akismet/\">The Akismet plugin</a> is simple to install and configure and works seamlessly with many popular WordPress form builders to protect your site without ever getting in the way of the user&nbsp;experience.</p>\n\n\n<p>Akismet is a safe, efficient, and secure solution from the team behind WordPress.com and is trusted by some of the biggest companies in the world, including Microsoft and ConvertKit. It has blocked a staggering 545 billion pieces of spam (and counting) with an industry-leading 99.9% accuracy rate.&nbsp;</p>\n\n\n<p><a href=\"https://akismet.com/pricing/\">Select your plan today</a> and say goodbye to spam&nbsp;forever.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Dec 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Do The Woo Community: End of the Year Emerging Tech with Kathy Zant and Dave Lockie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78681\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://dothewoo.io/end-of-the-year-emerging-tech/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:558:\"<p>In this episode, Kathy and Dave discuss the influence of AI and blockchain on content creation, the rise of businesses using OpenAI API, and the potential of using blockchain for content authentication. They also explore the options for WordPress content and online identity verification.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/end-of-the-year-emerging-tech/\">End of the Year Emerging Tech with Kathy Zant and Dave Lockie</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Dec 2023 12:42:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: State of the Word 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=109082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2023/12/state-of-the-word-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:509:\"<p>I was really impressed with the warmth of the WordPress community in Madrid, Spain for <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> this year. The in-person crowd had a ton of energy, and we had tens of thousands stream it live on platforms like Facebook and Youtube. If you missed it, and want to hear about all the fun stuff that happened in WordPress in 2023 and what&#8217;s coming for the future, here&#8217;s the video:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Dec 2023 03:17:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: State of the Word 2023: ¡Hola WordPress!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=151746\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com/state-of-the-word-2023-hola-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9062:\"<p><br />Exciting day for the WordPress community, as Matt Mullenweg delivered his first State of the Word address from a non-US location. Live from charming Madrid, Spain, he shared annual insights into the WordPress project, celebrating its remarkable 20 year journey and expressing his heartfelt gratitude to the diverse community that propels it forward.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Reflecting on the Year&#8217;s Successes:  A Dynamic and Innovative Community </h2>\n\n\n\n<p>Matt took a moment to reflect on the achievements within the WordPress ecosystem over the past year. From its humble beginnings as a blogging tool to evolving into a robust website-building platform and now a powerful application framework, WordPress has reached its 20-year milestone (woo-hoo!) with resounding success.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<ul>\n<li>Noteworthy mentions include WordPress&#8217;s prowess in <em>scalability</em> (as witnessed during <a href=\"https://www.linkedin.com/posts/burhanhamid_i-couldnt-sleep-last-night-i-was-anxious-activity-7138301063371091969-Je5R?utm_source=share&utm_medium=member_desktop\">Taylor Swift&#8217;s Time Person of the Year announcement</a>  (with 100k requests / second) and <em>security</em>, demonstrated by sites like WhiteHouse.gov and Nasa.gov.</li>\n\n\n\n<li>The <a href=\"https://playground.wordpress.net/\">WordPress Playground</a> continues to astonish, allowing users to set up a fully functional WordPress site in the browser in a matter of seconds &#8211; showcasing the community&#8217;s spirit of innovation.<br /><br />Here&#8217;s a brief demo (narrated by Adam Zieliński):  </li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong><em>That will never cease to amaze me. [&#8230;] It&#8217;s the closest thing to sci-fi we have going on right now in WordPress.</em></strong></p>\n<cite>Matt</cite></blockquote>\n\n\n\n<ul>\n<li>Introducing the <a href=\"https://wordpress.org/themes/twentytwentyfour/\">Twenty Twenty Four</a> theme, a masterpiece with 35 built-in patterns catering to artists, entrepreneurs, and anyone seeking the full potential of Gutenberg. Explore the theme&#8217;s highlights in the image below &#8211; and try it out (<a href=\"https://wordpress.org/themes/twentytwentyfour/\">available in the repo here</a>).</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"500\" height=\"279\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/12/Twenty-twenty-four-theme-State-of-the-Word-Madrid-2023-500x279.png\" alt=\"Highlights of the Twenty Twenty Four theme - State of the Word 2023 Madrid\" class=\"wp-image-151785\" />Highlights of the Twenty Twenty Four theme\n\n\n\n<p>Other highlights included 70 WordCamps in 33 countries, 1.3k new contributors in 2023, the upcoming <a href=\"https://asia.wordcamp.org/2024/\">WordCamp Asia</a> in Taipei, Taiwan as well as Openverse being awarded the <a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\">Open Education Award for Excellence in Education Infrastructure</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Peering into the Future: Collaboration and Workflow Environments</h2>\n\n\n\n<p>Matías Ventura, WordPress Lead Architect, unveiled the plans for the Site Editor, aiming to enhance the experience for both writers and designers. The focus is now shifting towards collaboration and workflow environments (Phase 3 of the project), with a working prototype already available. While there&#8217;s no concrete timeline, you can dive into the Gutenberg plugin to test these developments and share your feedback on <a href=\"http://github.com/wordpress/gutenberg\">GitHub</a>.</p>\n\n\n\n<p>Matías showcased the prototype&#8217;s main features, emphasizing:</p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Patterns: becoming more versatile </h3>\n\n\n\n<p>Explore a new era of <strong>patterns</strong>, allowing users to dive into exciting new features, like: </p>\n\n\n\n<p>a. Swapping related patterns</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<p>b. Applying theme JSON to specific pattern</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<p>Additionally, Matías announced the creation of a hybrid type of pattern, offering text editing while maintaining control of the global design:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3 class=\"wp-block-heading\">2. Custom fields: the best of both worlds </h3>\n\n\n\n<p>Offering the ability to connect blocks to <strong>custom fields</strong> seamlessly, bringing together the best of both developer-friendly and user-friendly capabilities:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3 class=\"wp-block-heading\">3. Performance: for both creators and visitors </h3>\n\n\n\n<p>From a new dashboard tracking Gutenberg commits to editor <strong>performance</strong> improvements, WordPress is gearing up for version 6.5, promising significant speed enhancements:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"500\" height=\"282\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/12/WP-6.5-faster-that-WP-6.4-State-of-the-Word-Madrid-2023-500x282.png\" alt=\"WP 6.5 faster that WP 6.4 State of the Word Madrid 2023\" class=\"wp-image-151786\" />WordPress 6.5 expected to be significantly faster than WordPress 5.4\n\n\n\n<p>On the front end performance, Matías shared the team&#8217;s focus is on the <strong>Interactivity API </strong>and demo-ed the improvements &#8211; instant transitions and instant search. You can check it out on <a href=\"https://wpmovies.dev/\">https://wpmovies.dev/</a>. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3 class=\"wp-block-heading\">4. Admin design: your own WordPress</h3>\n\n\n\n<p>Empowering users to customize their admin area to fit their unique needs:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">AI in WordPress: Playground Blueprints </h2>\n\n\n\n<p>Looking ahead, Matt explored the opportunities of AI tools, introducing Playground blueprints on the WordPress site. This feature enables the creation of playground sites using natural language. He encouraged community members to commit to using AI to expand their knowledge:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>&#8230;<strong><em> our growth and development will only be limited by our curiosity. </em></strong></p>\n<cite>Matt</cite></blockquote>\n\n\n\n<p>Related: practicing what he preaches, Matt shared that in order to enhance accessibility, the State of the Word recordings will soon be available in five languages, thanks to AI tools lipsync-ing addresses in Spanish, Portuguese, French, German, and Japanese. Available over the coming few days!</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Charting the Course for 2024: Data Liberation</h2>\n\n\n\n<p>Matt emphasized a new focus for 2024:  unlocking the web&#8217;s full potential, by focusing on 1-click data migration &#8211; from other platforms to WordPress and among WordPress sites. He invited community members to join the initiative, and shared that the teams will have all necessary tools at their disposal to deliver on this priority. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">SOTW Reveal: WordCamp US Heading to&#8230; </h2>\n\n\n\n<p>In an exciting revelation, WordCamp US is set to unfold its magic in Portland, Oregon, for the next two years. Matt describes the city as &#8216;super fun and weird in amazing ways.&#8217;  More to follow from the organisers. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>For a deeper dive into the State of the Word address check out the full recording below:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p></p>\n\n\n\n<p><strong>Resources mentioned during the address: </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://asia.wordcamp.org/2024/\">WC Asia 2024</a></li>\n\n\n\n<li><a href=\"https://wordpressdotorg.survey.fm/2023-meetup-annual-survey\">2023 anual meetup survey</a></li>\n\n\n\n<li><a href=\"http://wp.org/meet\">wp.org/meet</a></li>\n\n\n\n<li><a href=\"http://wp.org/showcase\">wp.org/showcase</a></li>\n\n\n\n<li><a href=\"http://wp.org/remember\">wp.org/remember</a></li>\n\n\n\n<li><a href=\"http://developer.wp.org/playground\">developer.wp.org/playground</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/twentytwentyfour/\">Twenty twenty four theme</a></li>\n\n\n\n<li><a href=\"http://github.com/wordpress/gutenberg\">github.com/wordpress/gutenberg</a> </li>\n\n\n\n<li><a href=\"https://wpmovies.dev/\">https://wpmovies.dev/</a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Dec 2023 23:46:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Ioana Mureşan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"BuddyPress: BuddyPress 12.0.0 “Nonno”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=332130\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://buddypress.org/2023/12/buddypress-12-0-0-nonno/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12104:\"<p>We&#8217;re very excited to announce the immediate availability of <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0.zip\">BuddyPress 12.0.0 “Nonno”</a>, named after the excellent pizza restaurant located in the 15th arrondissement of Paris, France. Get it now&nbsp;from the&nbsp;<a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin repository</a>, or right from your WordPress Dashboard.</p>\n\n\n\n<p>It took the BuddyPress Team almost a year to finish baking the <a href=\"https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=12.0.0\">100 changes</a> to perfection, write the <a href=\"https://github.com/buddypress/buddypress/tree/master/docs/user\" target=\"_blank\" rel=\"noreferrer noopener\">user</a> &amp; <a href=\"https://github.com/buddypress/buddypress/tree/master/docs/developer\" target=\"_blank\" rel=\"noreferrer noopener\">developer</a> documentation resources and build the <a href=\"https://wordpress.org/plugins/bp-classic/\">backward compatibility Add-on</a> that make up our second major release of 2023.</p>\n\n\n\n<p>One of these changes is probably the largest shift we have made since BuddyPress was born 15 years ago. </p>\n\n\n\n<p>Our new BP Rewrites API solves a <a href=\"https://buddypress.trac.wordpress.org/ticket/4954\" target=\"_blank\" rel=\"noreferrer noopener\">10-year-old issue</a> and allows BuddyPress to comply with the WordPress way of generating rules to analyze requested URLs and route the visitor to the right site content: the&nbsp;<a href=\"https://developer.wordpress.org/apis/rewrite/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Rewrite API</a>. Though we have tried to minimize the changes required for BuddyPress plugins and themes to preserve backward compatibility, the following two constraints couldn’t be worked around:</p>\n\n\n\n<ul>\n<li>WordPress fully analyzes a URL later in the load process than our BP Legacy URL parser</li>\n\n\n\n<li>Supporting plain permalinks &amp; customizable slugs required us to completely rethink the way we build BuddyPress URLs</li>\n</ul>\n\n\n\n<p>Because of these insurmountable limitations, we chose to build the <a href=\"https://wordpress.org/plugins/bp-classic/\">BP Classic Add-on</a> to extend backward compatibility until all of the plugins you use on your site have been updated to use the new system. If you are using one or more third party BuddyPress plugins that have not been updated for the last 4 months or if you are still using the BP Default theme (which was <a href=\"https://bpdevel.wordpress.com/2013/11/13/the-future-of-the-bp-default-theme/\" target=\"_blank\" rel=\"noreferrer noopener\">deprecated 10 years ago</a>), we strongly advise you to download and activate <a href=\"https://wordpress.org/plugins/bp-classic/\">BP Classic</a> before upgrading to 12.0.0.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The first step for a Modern BuddyPress</h2>\n\n\n\n<p>The <strong>BP Rewrites API</strong> is a massive revolution opening the way for a progressive BuddyPress evolution. Based on 10 years of experience gained through hard work, we are beginning to reimagine what it means to organize and manage communities within WordPress. Here are the immediate benefits of this new API:</p>\n\n\n\n<ol>\n<li>You can customize each piece of any URL generated by BuddyPress to better reflect your unique community using the new&nbsp;<a href=\"https://github.com/buddypress/buddypress/blob/master/docs/user/administration/settings/urls.md\" target=\"_blank\" rel=\"noreferrer noopener\">URLs settings screen</a>.</li>\n\n\n\n<li>Pretty or plain, BuddyPress just works no matter which option you choose for your permalink settings.</li>\n\n\n\n<li>Routing BuddyPress URLs is faster, more reliable, extensible, testable and fully compliant with WordPress best practices.</li>\n</ol>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">A new &#8220;members only&#8221; community visibility level</h2>\n\n\n\n<p>We&#8217;ve heard from BuddyPress end-users that being able to easily restrict access to their community is a necessary feature. And, thanks to the BP Rewrites API, we are now able to make this possible. With this first iteration, a site admin can now choose whether <a href=\"https://github.com/buddypress/buddypress/blob/master/docs/user/administration/settings/options.md#community-visibility\" target=\"_blank\" rel=\"noreferrer noopener\">the community is fully public or is only accessible to logged-in members</a>. In future versions, we hope to add granularity to this choice, so that community administrators can choose to highlight their members but share activities only inside the community&#8217;s &#8220;gates,&#8221; for example.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">BP Nouveau is ready for Twenty Twenty-Four</h2>\n\n\n<div class=\"wp-block-image\">\n<img width=\"651\" height=\"557\" src=\"https://buddypress.org/wp-content/uploads/1/2023/12/bp-nouveau-twenty24.png\" alt=\"BP Member\'s profile screenshot\" class=\"wp-image-332137\" /><button class=\"lightbox-trigger\" type=\"button\">\n			\n				\n			\n		</button>        <div class=\"wp-lightbox-overlay zoom\" tabindex=\"-1\">\n                <button type=\"button\" class=\"close-button\">\n                    \n                </button>\n                <div class=\"lightbox-image-container\"><div class=\"wp-block-image\">\n<img src=\"https://buddypress.org/feed/\" alt=\"BP Member\'s profile screenshot\" class=\"wp-image-332137\" /></div></div>\n                <div class=\"lightbox-image-container\"><div class=\"wp-block-image\">\n<img src=\"https://buddypress.org/feed/\" alt=\"BP Member\'s profile screenshot\" class=\"wp-image-332137\" /></div></div>\n                <div class=\"scrim\"></div>\n        </div></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>The BP Nouveau template pack has been improved to better support Block Themes in general and Twenty Twenty-Four in particular. As shown in the above screen capture, our default template pack now includes a new Priority Navigation feature.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/buddypress/\">BuddyPress</a></blockquote>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"dashicons dashicons dashicons-heart\"></span> Many thanks to 12.0.0 contributors</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/awol/\">awol</a>, <a href=\"https://profiles.wordpress.org/bkaindl/\">Bernhard Kaindl (bkaindl)</a>, <a href=\"https://profiles.wordpress.org/bouncingsprout/\">Ben Roberts (bouncingsprout)</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone B Gorges (boonebgorges)</a>, <a href=\"https://profiles.wordpress.org/btwebdesign/\">btwebdesign</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly (coffee2code)</a>, <a href=\"https://profiles.wordpress.org/corzel/\">corzel</a>, <a href=\"https://profiles.wordpress.org/dancaragea/\">Dan Caragea (dancaragea)</a>, <a href=\"https://profiles.wordpress.org/dcavins/\">David Cavins (dcavins)</a>, <a href=\"https://profiles.wordpress.org/diabolique/\">Diabolique</a>, <a href=\"https://profiles.wordpress.org/dj-basstone/\">Heikki Paananen (dj-basstone)</a>, <a href=\"https://profiles.wordpress.org/DJPaul/\">Paul Gibbs (DJPaul)</a>, <a href=\"https://profiles.wordpress.org/emaralive/\">emaralive</a>, <a href=\"https://profiles.wordpress.org/fanly/\">Fanly</a>, <a href=\"https://profiles.wordpress.org/fawp/\">fawp</a>, <a href=\"https://profiles.wordpress.org/fernandot/\">Fernando Tellado (fernandot)</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn (iandunn)</a>, <a href=\"https://profiles.wordpress.org/iamthewebb/\">iamthewebb</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet (imath)</a>, <a href=\"https://profiles.wordpress.org/itapress/\">itapress</a>, <a href=\"https://profiles.wordpress.org/jaz_on/\">Jason Rouet</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby (johnjamesjacoby)</a>, <a href=\"https://profiles.wordpress.org/kalich5/\">Michal Janata (kalich5)</a>, <a href=\"https://profiles.wordpress.org/koenhuybrechts/\">koen Huybrechts (koenhuybrechts)</a> <a href=\"https://profiles.wordpress.org/lenasterg\">Lena Stergatou (lenasterg)</a>, <a href=\"https://profiles.wordpress.org/lidialab/\">Lidia Pellizzaro (lidialab)</a>, <a href=\"https://profiles.wordpress.org/magland/\">magland</a>, <a href=\"https://profiles.wordpress.org/makoto-a/\">Makoto Akai (makoto-a)</a>, <a href=\"https://profiles.wordpress.org/mehrazmorshed/\">Mehraz Morshed (mehrazmorshed)</a>, <a href=\"https://profiles.wordpress.org/mike80222/\">Mike Witt (mike80222)</a>, <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys (nekojonez)</a>, <a href=\"https://profiles.wordpress.org/niftythree/\">Nifty (niftythree)</a>, <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez (nilovelez)</a>, <a href=\"https://profiles.wordpress.org/plugindevs/\">Plugin Devs</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits (psmits1567)</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar (rajinsharwar)</a>, <a href=\"https://profiles.wordpress.org/raviousprime/\">raviousprime</a>, <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves (espellcaste)</a>, <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta (shailu25)</a>, <a href=\"https://profiles.wordpress.org/shawfactor/\">shawfactor</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov (slaFFik)</a>, <a href=\"https://profiles.wordpress.org/sjregan/\">sjregan</a>, <a href=\"https://profiles.wordpress.org/teeboy4real/\">teeboy4real</a>, <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul (upadalavipul)</a>, <a href=\"https://profiles.wordpress.org/vapvarun/\">Varun Dubey (vapvarun)</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"your-feedback\"><span class=\"dashicons dashicons-format-chat\"></span>  Your feedback</h2>\n\n\n\n<p>Receiving your feedback and suggestions for future versions of BuddyPress genuinely motivates and encourages our contributors. Please <a href=\"https://buddypress.org/support/topic/buddypress-12-0-0/\">share it</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /></p>\n\n\n\n<p>Thanks a lot for using BuddyPress <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f60d.png\" alt=\"😍\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">Let&#8217;s celebrate &#8220;Nonno&#8221;</h2>\n\n\n\n<p>Just like BuddyPress, &#8220;Nonno&#8221; (which means grandfather) has been around for 15 years, its team is very welcoming, caring and friendly; each of its members is committed to offering the best service and delivering the best tasting pizzas of the highest quality to customers. It&#8217;s the perfect place to entertain and have good times with your friends, family, or coworkers.</p>\n\n\n\n<p class=\"has-text-align-center\"><strong>Enjoy BuddyPress &#8220;Nonno&#8221;</strong></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n<a href=\"https://buddypress.org/wp-content/uploads/1/2023/12/pizza-nonno-1.jpg\"><img width=\"300\" height=\"300\" src=\"https://buddypress.org/wp-content/uploads/1/2023/12/pizza-nonno-1.jpg\" alt=\"Nonno pizza\" class=\"wp-image-332132\" /></a>\n\n\n\n<a href=\"https://buddypress.org/wp-content/uploads/1/2023/12/pizza-nonno-2.jpg\"><img width=\"300\" height=\"300\" src=\"https://buddypress.org/wp-content/uploads/1/2023/12/pizza-nonno-2.jpg\" alt=\"Spianata piccante pizza\" class=\"wp-image-332131\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Dec 2023 22:57:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress.org blog: State of the Word 2023 Recap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10688:\"<p>On December 11, WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> traveled to beautiful Madrid, Spain, to deliver his annual <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> keynote. It was the first time this event took place outside the United States. Against the backdrop of <a href=\"https://www.palacioneptuno.com/\">Palacio Neptuno</a>—an iconic architectural gem and UNESCO World Heritage site—nearly 200 contributors, developers, extenders, and friends of the project came together to hear from Matt, with millions more joining online.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">An introduction from the Executive Director</h2>\n\n\n\n<p>Kicking off the event, <a href=\"https://profiles.wordpress.org/chanthaboune/\" target=\"_blank\" rel=\"noreferrer noopener\">Josepha Haden Chomphosy</a>, Executive Director of the WordPress project, spoke about the community’s heart and spirit as what fuels hope for the future, ensuring the freedoms of the open web for all. She invited Matt on stage with a closing statement of confidence that such values and characteristics will move the project forward into the next 20 years as it has for the last 20.</p>\n\n\n\n<img width=\"1024\" height=\"682\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?resize=1024%2C682&ssl=1\" alt=\"Josepha Haden Chomphosy, Executive Director of the WordPress project, speaking at a podium \" class=\"wp-image-16627\" />\n\n\n\n<h2 class=\"wp-block-heading\">Looking back at 2023</h2>\n\n\n\n<p>Taking the stage, Matt shared his excitement about the event being the first international State of the Word. He honored the Spanish WordPress community for hosting, citing their past WordCamp accomplishments. From there, Matt jumped right into a reflection of this year’s notable moments. He recalled the project’s 20th-anniversary celebrations, how the software has evolved, and how much more the community came together this year—doubling the number of WordCamps to 70, taking place in 33 countries.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-flow wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center\">We’re always aiming to learn and improve. Tell us how to make meetups better.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/2023-meetup-annual-survey?p=1\" target=\"_blank\" rel=\"noreferrer noopener\">Take the 2023 Meetup Survey</a></div>\n</div>\n</div>\n\n\n\n<p>Matt continued with callouts to several resources on <a href=\"https://wordpress.org/\">WordPress.org</a>: the all-new <a href=\"https://events.wordpress.org/\">Events</a> page, the redesigned <a href=\"https://wordpress.org/showcase/\">Showcase</a>, a new <a href=\"https://wordpress.org/remembers/\">WordPress Remembers memorial</a>, and the <a href=\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\">award-winning Openverse</a>. He also demoed <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, a tool allowing users to experiment with WordPress directly in their browsers, as well as the versatile <a href=\"https://wordpress.org/themes/twentytwentyfour/\">Twenty Twenty-Four default theme</a>.</p>\n\n\n\n<img width=\"1024\" height=\"682\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?resize=1024%2C682&ssl=1\" alt=\"Matías Ventura, Lead Architect of Gutenberg, speaking on stage at State of the Word\" class=\"wp-image-16621\" />\n\n\n\n<h2 class=\"wp-block-heading\">Collaborative editing and more</h2>\n\n\n\n<p>Matt recapped the four phases of the Gutenberg project, noting that work has begun on Phase 3: Collaboration before passing the microphone to <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, Lead Architect of Gutenberg.&nbsp;</p>\n\n\n\n<p>After a quick interlude in Spanish, Matías acknowledged how much progress had been made on the software this year. He spoke about the aim of the Site Editor to become both an exemplary writing environment and a superior design tool while noting improvements to the&nbsp;<a href=\"https://wordpress.org/documentation/article/footnotes-block/\" target=\"_blank\" rel=\"noreferrer noopener\">Footnotes Block</a>&nbsp;and the ease of&nbsp;<a href=\"https://wordpress.org/documentation/article/distraction-free-mode/\" target=\"_blank\" rel=\"noreferrer noopener\">Distraction Free mode</a>.</p>\n\n\n\n<p>While there was no set timeline for collaboration and workflows, Matías was excited to share a working prototype in the Editor. He showcased some of the most interesting aspects of collaborative editing, including establishing a sync engine that allows real-time edits to be visible across sessions. He invited contributors to test the prototype in the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a> and <a href=\"https://github.com/WordPress/gutenberg/issues/52593\">share their feedback in Github</a>.</p>\n\n\n\n<p>From there, Matías highlighted other exciting developments, including the emphasis on Patterns and their continued evolution as a powerful tool for workflows, and the ability to connect blocks to custom fields. He was thrilled to speak about performance improvements, noting that work is in progress to make the Editor <a href=\"https://www.codevitals.run/project/gutenberg\">at least twice as fast</a>. Speaking about front-end performance, he shared what’s to come with a <a href=\"https://wpmovies.dev/\">demo of the Interactivity API</a>, showcasing how it can make transitions, search, and other interactions instant—all with standard WordPress blocks and features.&nbsp;</p>\n\n\n\n<p>Matías concluded with a look at how the Admin redesign will take cues from the Site Editor, eventually allowing users to shape their WordPress Admin experience based on their unique needs.</p>\n\n\n\n<img width=\"1024\" height=\"684\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?resize=1024%2C684&ssl=1\" alt=\"WordPress co-founder Matt Mullenweg speaking at a podium\" class=\"wp-image-16624\" />\n\n\n\n<h2 class=\"wp-block-heading\">AI and Data Liberation</h2>\n\n\n\n<p>Matt returned to the stage to expand on the future of WordPress, reinforcing his past advice to <em>learn AI deeply</em>. He expressed his excitement about what can be accomplished with the wealth of AI tools available, how contributors are already experimenting with natural language processing and WordPress Playground to create and build.</p>\n\n\n\n<p>Finally, Matt introduced an additional focus for the project in 2024: <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, with the goal to make importing from other platforms into WordPress as frictionless as possible. He spoke about the tendency of content management systems to keep users locked in as part of his motivation to <em>unlock digital barriers</em>. The Data Liberation initiative will work on one-click migration and the export format from WordPress.&nbsp;</p>\n\n\n\n<p>More than just tools, Data Liberation reflects the project’s ethos to allow seamless contributions. With that, Matt invited anyone interested to jump into the action, noting a new <a href=\"https://github.com/wordpress/data-liberation\">Data Liberation GitHub repository</a> and forthcoming <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a> channels as places to get started.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Questions and answers</h2>\n\n\n\n<p>Following the presentation, Matt fielded questions from the live-stream and in-person audiences during an interactive question-and-answer session hosted by <a href=\"https://profiles.wordpress.org/monchomad/\">Jose Ramón Padrón (Moncho)</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Additional questions from the live session will be answered in a follow-up post on <a href=\"https://make.wordpress.org/project\">make.WordPress.org/project</a>. Subscribe to our blog notifications to be sure you don’t miss it. And don’t forget to mark your calendars for next year’s <a href=\"https://asia.wordcamp.org/2024/\">WordCamp Asia</a> (Taipei, Taiwan), <a href=\"https://europe.wordcamp.org/2024/\">WordCamp Europe</a> (Torino, Italy), and WordCamp US (Portland, Oregon, United States).</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?ssl=1\" /><img alt=\"\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?ssl=1\" /></div><div class=\"tiled-gallery__col\"><img alt=\"\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?ssl=1\" /></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?ssl=1\" /></div><div class=\"tiled-gallery__col\"><img alt=\"\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_38-576x1024.jpg?ssl=1\" /></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><img alt=\"\" src=\"https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?ssl=1\" /></div><div class=\"tiled-gallery__col\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?ssl=1\" /><img alt=\"\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?ssl=1\" /></div></div></div></div>\n\n\n\n<p><em><em>Thank you to <a href=\"https://profiles.wordpress.org/laurlittle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>laurlittle</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>eidolonnight</a>, <a href=\"https://profiles.wordpress.org/nilovelez/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nilovelez</a>, <a href=\"https://profiles.wordpress.org/fepr/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>fepr</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, and the many others who made this event and post possible.</em></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Dec 2023 22:55:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress.org blog: WP Briefing: Episode 68: Toward a More Interconnected Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16569\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/episode-68-toward-a-more-interconnected-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14558:\"<p>In this episode, WordPress Executive Director, Josepha Haden Chomphosy articulates the vision for a collaborative ecosystem where knowledge sharing and contributions to open source tools lead to a more interconnected and empowered web.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word 2022</a></li>\n\n\n\n<li><a href=\"https://thephp.foundation/\">PHP Foundation</a></li>\n\n\n\n<li>Josepha&#8217;s <a href=\"https://make.wordpress.org/project/2022/01/21/big-picture-goals-2022/\">Big Picture Goals 2022</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/\">Gutenberg 17.1</a> has been released and is <a href=\"https://wordpress.org/plugins/gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\">available for download</a>! The latest release includes new enhancements, bug fixes, and continued work on Phase 3 features.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\" target=\"_blank\" rel=\"noreferrer noopener\">Announcing the 2023 Annual Meetup Survey</a> &#8211; The Community team proposed a survey for all meetup members and organizers. Please complete the <a href=\"https://wordpressdotorg.survey.fm/2023-meetup-annual-survey\" target=\"_blank\" rel=\"noreferrer noopener\">Annual Meetup Survey</a>  by January 14, 2024– even if you haven&#8217;t participated in a meetup recently!</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/11/29/request-for-feedback-lesson-handbook-pages/\" target=\"_blank\" rel=\"noreferrer noopener\">Request for feedback: Lesson Handbook pages</a> &#8211; As the Training team progresses towards the 2024 launch of <a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Learning Pathways</a>, they&#8217;re developing a set of content creation guidelines to streamline and scale the process. These guidelines will focus on efficient methods for developing, reviewing, and updating content. To gather input, a <a href=\"https://docs.google.com/document/d/1twvDGmVZsyjBZbi9abiqoA_a2G7O_WNis_iGL2Sccg0/edit#heading=h.srkdcrt4k0v8\">Google Doc</a> has been created where you can share your ideas. Please provide your feedback and comments on this document by Tuesday, December 19, 2023.</li>\n\n\n\n<li><a href=\"https://playground.wordpress.net/\">WordPress Playground</a> makes WordPress instantly accessible for users, learners, extenders, and contributors.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/11/30/embracing-matrix-for-enhanced-communication/\">Embracing Matrix for Enhanced Communication</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16569\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> If you&#8217;re already familiar with the WordPress project, and if you&#8217;re listening to this podcast, I feel like it&#8217;s a safe assumption that you&#8217;re probably also familiar with the fact that we are what&#8217;s considered a free and open source software project. We adhere to the four freedoms of open source. We track bugs in the open, and we believe that knowledge sharing can only improve our products. </p>\n\n\n\n<p>But you might not be aware of the other open source projects that are foundational to ours and otherwise are integral to our commitment to the open web. At last year&#8217;s State of the Word, Matt mentioned that one of the coolest things about being a plugin or theme author in WordPress is that you get to run your open source project on the same infrastructure that WordPress runs on. So, no matter whether you have five installs or five thousand, you&#8217;re getting the benefits of our bug trackers, messaging, and network of project sites. But beyond those, which are, of course, near and dear to us, we also support projects like PHP and its foundation. Openverse and its founding organization Creative Commons, and of course, the two that we&#8217;re hearing a lot about this year and next, Playground and Matrix.</p>\n\n\n\n<p>[00:01:52] <strong>Josepha:</strong> That&#8217;s a lot of projects and not even a comprehensive list. And honestly, it can seem, I don&#8217;t know, a little weird. Like, we&#8217;re a FOSS CMS, right? You probably know why we contribute back to PHP. It&#8217;s the same reason we ask people to contribute to WordPress. But why are we giving so much time to a media search engine, or a Web Assembly implementation, or even a messaging protocol?</p>\n\n\n\n<p>At first glance, there are, of course, a lot of quick and easy answers. For instance, like, open source is open source. Any open source contribution is going to be a good contribution. All open source in the world increases good and freedom in the world. Like, open source is open source. Makes sense, right?</p>\n\n\n\n<p>Another quick and easy answer is, you know, they&#8217;re part of us. And that&#8217;s true, definitely, for PHP, like, they&#8217;re part of us, and so we should be contributing back to them. Because we rely on them so much. And then a third quick and easy answer is that we, as the biggest open source CMS on the planet, basically, we can, spare a lending hand. We can offer a little bit of help to those around us.&nbsp;</p>\n\n\n\n<p>[00:03:03] <strong>Josepha:</strong> And those are all true. I don&#8217;t think that anyone would disagree with any of that. But the thing that ties it all together for me is something that&#8217;s a little harder to see. In the 2022 goals that I posted, I said that my second goal for our year was to support open source alternatives for all site-building necessities.</p>\n\n\n\n<p>At the time, I was primarily talking about Openverse and the directory of photos that was being created as a CC-first source. But that also applies to all of our directories. It did then, just as it does now. And Trac, and our vast network of WordPress sites. All the tools we use in order to collaborate with, and lead for, and learn from each other.</p>\n\n\n\n<p>I want us to be able to do everything it takes to build an online presence using open source tools and methods because WordPress is just a glorious little microcosm of the interconnected web. It reminds me of this art installation I had the privilege of experiencing. It&#8217;s called Meow Wolf. I went to the one in Denver, but there are a few different installations across the U.S.&nbsp;The one that I went to is this massive art installation, and it is designed to be interactive, but it wasn&#8217;t until you started sharing your experience sharing your knowledge with other people that you realized it was also collaborative, a set of buttons you pushed in one room would cause a light show in some other room.</p>\n\n\n\n<p>[00:04:34] <strong>Josepha:</strong> So you were enhancing the experience of strangers in some completely disconnected room to yours, and they couldn&#8217;t distinguish it from an automation or something they did, or just plain old magic. And that&#8217;s what we&#8217;re doing by supporting these other open source tools. Yes, every new open source contribution results in more freedom in the world. Yes, we owe support to the components that got us where we are today. And yes, we absolutely can and should pay it forward. But more importantly than all that, we&#8217;re creating the opportunity for new interactions, new brilliance, and new defenders of the open web every time that we work on these open source products.</p>\n\n\n\n<p>[00:05:20] <strong>Josepha:</strong> And it doesn&#8217;t matter if we will ever see any of those people. And it doesn&#8217;t matter if they will ever thank us. What matters is that we see that knowledge like this is worth preserving and worth sharing. Because knowledge shared, information shared is like light. The more you share it, the more there is.</p>\n\n\n\n<p>And I want you to be able to take that sharing and use it to light the world. I want you to be able to go out and tell people how open source has changed your life, how WordPress has opened doors for you, or how much these tools have empowered your clients. I want you to remember why you came to WordPress in the first place, and I need you to hear me when I say that I need you here in WordPress today because every little ripple of good that we create makes the world a little more good.</p>\n\n\n\n<p>[00:06:12] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:06:20] <strong>Josepha:</strong> (SLBT) And now, my friends, that brings us to our time for the small list of big things. I&#8217;ve got a kind of a big list because I always kind of have a big list anymore, but the first thing on my list is Gutenberg 17.1. That has been released and is available for download. It includes several new enhancements, loads of bug fixes, and continues that work on phase three features that we are starting to see come through. If you don&#8217;t have it already, go out and grab it, test it, break it, and tell us what you tested and how it broke things.&nbsp;</p>\n\n\n\n<p>[00:06:52] <strong>Josepha:</strong> The second thing on my small list of big things is that there is currently an annual meetup survey out. So, we&#8217;ve had an increase in our meetup events, and certainly an increase in the active number of meetup groups that we have, but the community team is proposing a unified survey for all meetup members and organizers, and if you haven&#8217;t participated in it yet go and fill it out. You don&#8217;t have to have actually gone to a meetup event recently in order to take it, but, you know, it might be helpful. Either way, you have until January 14, 2024, to fill that out.</p>\n\n\n\n<p>[00:07:30] <strong>Josepha:</strong> The third thing on my small list of big things is a request for feedback. The training team is working toward launching Learning Pathways in 2024. They&#8217;re looking to create a new set of content creation guidelines that enables the learning pathways to scale with a straightforward process for developing, reviewing, and updating that content. There&#8217;s a Google doc for you where you can contribute your ideas, and that doc will be open for feedback through this week and into next week. I believe it closes on Tuesday, the 19th of December, 2023.</p>\n\n\n\n<p>[00:08:04] <strong>Josepha:</strong> And then the final thing on my small list of big things is actually, it&#8217;s a dual call-in. I already said with my first one about the Gutenberg plugin: get in there and test it and break it, and then tell us how it broke and what you were doing when you were testing it and broke it. And I encourage you to do that also for Matrix and Playground.</p>\n\n\n\n<p>So Playground has been a really big deal all year long. It was a big deal at the end of last year. It showed up for us in November 2022 and has been really just growing in surprising ways all the way through 2023. So if you have not yet seen it, you haven&#8217;t gotten your hands on it yet, it&#8217;s a WordPress installation that is loaded entirely in the browser, totally server-free, and we&#8217;re looking at a couple of new implementations that make it easier for users who are trying to, like, kick the tires of WordPress before they decide, and developers who are wanting to test new pull requests and things like that.</p>\n\n\n\n<p>So keep an eye out if it sounds interesting; it is interesting. And wander over and figure out how that&#8217;s working. And the other thing in that last call for collective testing is Matrix. So Matrix is an open source federated messaging protocol, and like so many technology projects out there at the moment, we are trying to make sure that we are preparing ourselves for the future arrival of Web 3 and all of the things that are coming along with current advancements in federated everything and AI and etc., etc.</p>\n\n\n\n<p>And so, Matrix is an open source messaging protocol. There are a lot of different ways to get connected. I&#8217;ll share a link to one of the posts in the show notes over on WordPress.org/news. But if you&#8217;re interested in learning a bit about it and you don&#8217;t really want to like figure out what sort of client is comfortable for you to use. There&#8217;s also on-site chat implementations for, I want to say, like 10 or 12 of our largest or most regularly meeting groups that we have. You can go to parts of the website like make.WordPress.org/core/chat and check those out. If you have a WordPress.org account, then you can have access to that on-site chat, and that is it.</p>\n\n\n\n<p>That&#8217;s the whole low barrier to entryway of figuring that out with us. Come and break stuff with us, everyone, and tell us how to make it better.&nbsp;</p>\n\n\n\n<p>[00:10:33] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. Thank you for tuning in today for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p>[00:11:00] (Music outro)&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Dec 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Gutenberg Times: Roadmap 6.5, theme handbook, Course on Data Layer, Create a Slider block – Weekend Edition 277\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=26647\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://gutenbergtimes.com/roadmap-6-5-theme-handbook-course-on-data-layer-create-a-slider-block-weekend-edition-277/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14883:\"<p>Howdy, </p>\n\n\n\n<p>I am very excited about the State of the Word on Monday and will <a href=\"https://youtu.be/1MwT9EEkguE\">watch the live stream.</a> It will bring everyone in the WordPress space together and imagine the future, building on the fantastic work of contributors, code and no-code a like in the community. Will you watch it? If you do, please let me know what you think and what the most important takeaways were for you. </p>\n\n\n\n<p>What else happened in the Block editor space? Scroll down and take a look! </p>\n\n\n\n<p>Have a wonderful weekend and be well. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Anne McCarthy </strong>unveiled <a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\"><strong>the roadmap for 6.5</strong></a>, detailing the exciting projects and enhancements that lie ahead. Set to launch in March 2023, this release promises a host of new features that will surely elevate your WordPress experience. Accompanied by handy tracking tickets, you can easily stay connected with the development progress. </p>\n\n\n\n<p>The Font Library takes the lead, accompanied by other  design tools and features for the site editor such as Revisions enhancements, a mobile-friendly Navigation block, Patterns, and increased support for Classic Themes. Plugin developers might look forward to the new Data Views and APIs for Interactivity, Custom Fields, and Block Binding. The article also highlights developments in plugin and theme rollbacks after automatic updates, improved dependency management, enhanced PHP compatibility, and overall performance enhancements. </p>\n\n\n\n<a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\"><img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/FontLibrary.png?resize=652%2C367&ssl=1\" alt=\"\" class=\"wp-image-26669\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>As mentioned last week, <strong>Anne McCarthy</strong>&nbsp;and&nbsp;<strong>Saxon Fletcher</strong> invite you to join them to a <a href=\"https://make.wordpress.org/core/2023/11/23/hallway-hangout-lets-explore-wordpress-6-5/\"><strong>Hallway Hangout: Let’s explore WordPress 6.5</strong></a>&nbsp;on <strong>January 16 at 21:00 UTC</strong>.&nbsp;&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-d02c05917781faad43b455819cf71f89\">🎙️ Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-93-gutenberg-17-1-command-palette-data-views-and-grid-layout/\">Gutenberg Changelog #93 – Gutenberg 17.1, Command Palette, Data Views and Grid Layout</a> &#8211; a chat with <strong>Isabel Brison</strong></p>\n\n\n\n<p>In his <a href=\"https://make.wordpress.org/design/2023/12/04/design-share-nov-20-dec-1/\"><strong>Design Share: Nov 20-Dec 1</strong></a>, <strong>Joen Asmussen</strong> again shares the work of the WordPress design team. He takes us along with screenshots, short descriptions and link to the GitHub issue or Figma spaces:</p>\n\n\n\n<ul>\n<li>Events</li>\n\n\n\n<li>Drag and Drop</li>\n\n\n\n<li>Gallery captions and potential Lightbox behaviors</li>\n\n\n\n<li>Revisiting social links</li>\n\n\n\n<li>Local nav and breadcrumb</li>\n\n\n\n<li>Unified toolbar button sizes</li>\n\n\n\n<li>Data views: Grid layout. (&lt;- my personal favorite) </li>\n</ul>\n\n\n\n<a href=\"https://make.wordpress.org/design/2023/12/04/design-share-nov-20-dec-1/\"><img width=\"652\" height=\"492\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-08-at-17.59.52.png?resize=652%2C492&ssl=1\" alt=\"\" class=\"wp-image-26678\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong>, of PootlePress, <a href=\"https://twitter.com/pootlepress/status/1731972777266028771\">tweeted</a> &#8220;As part of my recent Twenty Twenty Four YouTube video I made 5 different types of websites, and also made the designs available as Themes, using the brilliant Create Block Theme Plugin. They&#8217;ve now been downloaded 231 times&#8221; You can download <strong><a href=\"https://www.pootlepress.com/free-wordpress-themes/\">the free WordPress themes</a></strong>, from his website, for a small donation of your email address. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/nerrad\"><strong>Darren Ethier</strong></a> shared what&#8217;s new with Woo and WordPress 6.4 in a <a href=\"https://twitter.com/nerrad/status/1730989297791099141\">thread on X (former Twitter)</a> and illustrates them with  short videos. </p>\n\n\n\n<a href=\"https://twitter.com/nerrad/status/1730992780443357614\"><img width=\"533\" height=\"435\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-08-at-18.05.31.png?resize=533%2C435&ssl=1\" alt=\"\" class=\"wp-image-26680\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/ellenbauer\">Ellen Bauer</a></strong>, Theme builder at Elma Studio, shows you in her YouTube tutorial <a href=\"https://www.youtube.com/watch?v=Riuz99A9ZA4\"><strong>How to customize the blog template In WordPress</strong></a>, and customize the list of blog post to your liking. Without any developer, you can now adjust the length of the post excerpt, hide date or authors, or add categories and feature image to the listing. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Plugin developer, <a href=\"https://twitter.com/rilwis\"><strong>Anh Tran</strong></a>, just announced that new Admin page design for <a href=\"https://wordpress.org/plugins/falcon/\"><strong>Falcon</strong></a>, a plugin that allows its users to customize the WordPress experience and provides access to settings, normally not exposed in the wp-admin space. The list is quite extensive, and you might want to consider using the plugin as  part of the tool box building sites for others. There is always a need to tweak the user interface and customize which WordPress features are exposed to the end user. If you like to check out the source code of the plugin, <a href=\"https://github.com/elightup/falcon/tree/master\">it&#8217;s available on GitHub</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Jonathan Desrosiers</strong>, core contributor, sponsored by Bluehost, published a <a href=\"https://make.wordpress.org/core/2023/12/05/proposal-default-theme-task-force-for-2024/\"><strong>Proposal: Default Theme Task Force for 2024</strong></a>, that has its history in discussions at the Community Summit 2023. The task force is to research and implement a better way to update WordPress default themes with the latest features, especially with the site editor and Gutenberg. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ganesh Dahal</strong> posted <a href=\"https://developer.wordpress.org/news/2023/12/05/a-walk-through-tutorial-on-using-create-block-theme-plugin/\"><strong>a walk-through tutorial on using the Create Block Theme plugin</strong></a>. The <a href=\"https://wordpress.org/plugins/create-block-theme/\">plugin </a>is the only tool to create different variations of block themes directly from the Site Editor. Dahal explains each feature and how to use it. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>This was mentioned before, and maybe you just read past it.: Over the past few months, <strong>Justin Tadlock </strong>and other theme team members <strong>added new chapters to the WordPress Theme Handbook</strong>, focusing on modern block theming.</p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/themes/getting-started/\">Getting Started</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/\">Core Concepts</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/global-settings-and-styles/\">Global Settings and Styles (theme.json)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/templates/\">Templates</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/features/\">Features</a></li>\n</ul>\n\n\n\n<p>The new chapters are part of a big project to update the Theme Handbook. the team still needs more people to help, and you can join by choosing a topic from the <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker/issues/816\">GitHub tracking ticket.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>The course to Learn.WordPress,  <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\"><strong>Using the WordPress Data Layer</strong></a> is an excellent introduction to the topic with a great example if you are contemplating using the scripts and components outside the block editor for your pages. </p>\n\n\n\n<a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\"><img width=\"600\" height=\"386\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/WordPress-Data-Layer-Course-Example.jpg?resize=600%2C386&ssl=1\" alt=\"\" class=\"wp-image-26677\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><br /><a href=\"https://twitter.com/johnbillion\"><strong>John Blackbourn</strong> </a>started a discussion <a href=\"https://github.com/WordPress/gutenberg/discussions/55642\"><strong>Interactivity API showcase</strong></a> to asked community members to show what they are already building with the Interactivity API. It&#8217;s not the direct way to learn how to use the Interactivity API, but the passion for these new standards by those taking part in the conversation can be quite motivating to learn more. To get started with the Interactivity API, you can follow along the <a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/1-getting-started.md\">Getting started guide</a> or dive deep into the <a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/2-api-reference.md\">API Reference. </a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/swissspidy\"><strong>Pascal Birchler</strong></a>, developer relations engineer at Google,  showcased his <a href=\"https://twitter.com/swissspidy/status/1733138082591912154\">side project on X (former Twitter)</a>. He shares the code of his <a href=\"https://github.com/swissspidy/media-experiments\"><strong>WordPress Media Experiments</strong></a> on GitHub, that allows you to compress Images, auto-convert of  from animated GIFs to video for accessibility or create an image preview of a PDF. There are ten more features already implemented. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On the Builders site, <strong>Damon Cook</strong> wrote a tutorial on how to <a href=\"https://wpengine.com/builders/create-a-slider-block/\"><strong>create a Slider Block for WordPress with SwiperJS</strong></a>. A Slider block is not available in WordPress out of the box, so Cook closes this gap by walking developers through the various steps of building one, using the <a href=\"https://swiperjs.com/demos\">SwiperJS library.</a> </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a>&nbsp;licensed&nbsp;<a href=\"https://wordpress.org/photos/photo/816376d5dc/\">photo</a>&nbsp;by&nbsp;<a href=\"https://wordpress.org/photos/author/eboxnet/\">Vagelis</a>&nbsp;from the&nbsp;<a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Dec 2023 15:02:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"HeroPress: Shayda Torabi, New HeroPress Staff, And More!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6183\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"https://heropress.com/shayda-torabi-new-heropress-staff-and-more/#utm_source=rss&utm_medium=rss&utm_campaign=shayda-torabi-new-heropress-staff-and-more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10831:\"<img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/2846572fc1dea2e71.03572528-2048x2048-1-1024x1024.jpeg\" class=\"attachment-large size-large wp-post-image\" alt=\"Hiking trail across a mountain ridge.\" /><h1 class=\"kt-adv-heading6183_571a2b-14 wp-block-kadence-advancedheading\">HeroPress Network Updates For December 8, 2023</h1>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6183_08c601-98 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6183_0a90a0-f7 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6183_6489f1-15 wp-block-kadence-advancedheading\">HeroPress News!</h2>\n\n\n\n<p>Things are changing at HeroPress, a long slow progress to make something new. Part of the new HeroPress is expanding the team, so that if something happens to me it goes on, so here are a couple new people.</p>\n\n\n\n<h3 class=\"kt-adv-heading6183_2fc9c9-4b wp-block-kadence-advancedheading\">New WPPhotos.Info Editor</h3>\n\n\n\n<p>Selena Salustri from the Italian WordPress community has taken over the moderation and management of <a href=\"https://wpphotos.info\">WPPhotos.Info</a>.  She recently had <a href=\"https://wpphotos.info/sunset-camel/\">her own photo</a> on the site, and felt inspired to join in!</p>\n\n\n\n<h3 class=\"kt-adv-heading6183_c2f69e-2d wp-block-kadence-advancedheading\">New Tip Of The Week Transcriber</h3>\n\n\n\n<p>Cecilio Rodriguez from Venezuela has been transcribing recent Tips Of The Week.  He&#8217;s not replacing Evalyn Maina who works on Hallway Chats, just working in different areas.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6183_ec6223-b1\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6183_858633-ca alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6183_b56b28-55 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6183_e4a964-ec wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> &#8211; <a href=\"https://heropress.com/essays/try-something-new/\">Try Something New</a></h2>\n\n\n<div class=\"wp-block-image is-style-default\">\n<a href=\"https://heropress.com/essays/try-something-new/\"><img width=\"300\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2016/01/headshot-300x300.png\" alt=\"Shayda Torabi\" class=\"wp-image-710\" /></a></div>\n\n\n<p>Shayda Torabi is from Austin, Texas. Her essay &#8220;<a href=\"https://heropress.com/essays/try-something-new/\">Try Something New</a>&#8221; was prophetic, because in the years after this essay first published she became an entrepreneur and got married deep in the desert. Always striving to try something new.</p>\n\n\n\n<p><em>I’m rediscovering my happiness every day thanks to the WordPress community, and I believe you can too.</em></p>\n\n\n\n<p>Shayda&#8217;s essay is <a href=\"https://heropress.com/essays/try-something-new/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6183_2a2020-e1\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6183_efd6e9-01 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6183_f16024-34 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6183_94136c-97 wp-block-kadence-advancedheading\"><a href=\"https://hallwaychats.com\">WPPhotos.Info</a></h2>\n\n\n<div class=\"wp-block-image\">\n<img width=\"225\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2023/12/646565ee85a2be41.29146495-scaled-1-225x300.jpeg\" alt=\"\" class=\"wp-image-6189\" /></div>\n\n\n<p>This week&#8217;s <a href=\"https://wpphotos.info\">WPPhotos Info</a> is called &#8220;<a href=\"https://wpphotos.info/lemon-tree/\">Lemon Tree</a>&#8220;. </p>\n\n\n\n<p>During his stay in Paraguay, <a href=\"https://profiles.wordpress.org/benniledl/\">!Benni</a> was exploring the Reserva de Recursos Manejados Ybytyruzú, a conservation gem established in 2001. Spanning an impressive 24,000 hectares within the Atlantic Forest, this protected area is shows Paraguay’s preserving natural beauty.</p>\n\n\n\n<p><a href=\"https://wpphotos.info/lemon-tree/\">Read more of the story at WPPhotos.info!</a></p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6183_1ccdee-f1\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6183_dc7acb-ec alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6183_15034c-8b inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6183_6d7c6a-0d wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">Press Releases!</a></h2>\n\n\n<div class=\"wp-block-image is-style-default\">\n<img src=\"https://heropressnetwork.com/wp-content/uploads/2024/03/pressitwp_logo-300x130.jpg\" alt=\"Press It WP\" class=\"wp-image-4736\" /></div>\n\n\n<p><a href=\"https://pressitwp.com\">PressItWP.com</a> has been a part of the <a href=\"https://heropressnetwork.com\">HeroPress Network</a> for almost a year now, if you ever release Press Releases, please consider <a href=\"https://pressitwp.com\">PressItWP</a>!</p>\n\n\n\n<p></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-yoast-unleashes-ai-powered-seo-plugin-slashing-time-investments-for-crafting-vital-elements-of-effective-seo-strategies\"><a href=\"https://www.gravitykit.com/wp-content/uploads/2023/08/GravityMigrate-press-release.pdf#new_tab\"><a href=\"https://newfold.com/newsroom/yoast-unleashes-ai-powered-seo-plugin--slashing-time-investments#new_tab\">Yoast unleashes AI-powered SEO plugin, slashing time investments for crafting vital elements of effective SEO strategies</a></a></h2>\n\n\n\n<p>Yoast announced AI-powered enhancements to its renowned WordPress SEO plugin that help users write engaging and SEO-optimized titles and meta descriptions for webpages. Using advanced algorithms and machine learning techniques, it generates creative and appealing titles and meta descriptions, captivating audiences while meeting search engine standards.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6183_c0abae-f3\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6183_17fcec-cf alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6183_35e0d5-35 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6183_74e907-d5 wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n<p>There were <em>thirty-one</em> WordPress podcast episodes released this week! Also, the Spanish language podcast WordPress Pódcast is coming in English, French, and Catalan!</p>\n\n\n\n<ul>\n<li><a href=\"https://wpcoffeetalk.castos.com/episodes/wpcoffeetalk-rytis-lauris#new_tab\">WPCoffeeTalk: Rytis Lauris</a> from <a href=\"https://wppodcasts.com/podcast/wpcoffeetalk/\">WPCoffeeTalk</a></li>\n\n\n\n<li><a href=\"https://www.wppodcast.es/podcast/entrevista-tutorias-wordpress-con-josep-moran/#new_tab\">[Entrevista] Tutorías WordPress, con Josep Morán</a> from <a href=\"https://wppodcasts.com/podcast/wordpress-podcast/\">WordPress Pódcast</a></li>\n\n\n\n<li><a href=\"https://dothewoo.io/growing-meetups-at-the-wordpress-community-day-roma-2023/#new_tab\">Growing Meetups at the WordPress Community Day, Roma 2023</a> from <a href=\"https://wppodcasts.com/podcast/do-the-woo-a-woocommerce-podcast/\">Do the Woo – A WooCommerce Podcast</a></li>\n\n\n\n<li><a href=\"https://wppodcasts.com/allowing-ourselves-to-receive-help-from-others/\">Allowing Ourselves to Receive Help from Others</a> from <a href=\"https://wppodcasts.com/podcast/wp-motivate/\">WP Motivate</a></li>\n\n\n\n<li><a href=\"https://wp-tonic-show-a-wordpress-podcast.castos.com/episodes/890-wp-tonic-this-month-in-wordpress-tech-round-table-show-with-special-guest-katie-keith-of-barn2#new_tab\">#890 – WP-Tonic This Month in WordPress &amp; Tech Round Table Show With Special Guest Katie Keith of Barn2</a> from <a href=\"https://wppodcasts.com/podcast/wp-tonic/\">WP-Tonic</a></li>\n\n\n\n<li><a href=\"https://underrepresented-in-tech.castos.com/episodes/end-of-year-3-recap#new_tab\">End of Year 3 Recap</a> from <a href=\"https://wppodcasts.com/podcast/underrepresented-in-tech/\">Underrepresented in Tech</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6183_52219e-79\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>The header photo for this post is a <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/2846572fc1/\">photo</a> by <a href=\"https://wordpress.org/photos/author/bhuwanroka/\">Bhuwan Bdr. Rokaha</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That&#8217;s it for this week! If you&#8217;d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/shayda-torabi-new-heropress-staff-and-more/\">Shayda Torabi, New HeroPress Staff, And More!</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Dec 2023 16:24:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"Do The Woo Community: Page Builders, Documentation and an Scaling for Swifties\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78662\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://dothewoo.io/page-builders-documentation-and-an-scaling-for-swifties/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"<p>A look at a couple of polls on page builders and documentation and the WordPressVIP team preparing for an onslaught of Swifties on Time.com.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/page-builders-documentation-and-an-scaling-for-swifties/\">Page Builders, Documentation and an Scaling for Swifties</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Dec 2023 12:51:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.org blog: The Month in WordPress – November 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2023/12/the-month-in-wordpress-november-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10455:\"<p>November is usually a busy month for the WordPress project, and this year is no different. Following the empowering release of WordPress 6.4, the energy continues to build, setting the stage for the anticipated State of the Word and upcoming projects.&nbsp;</p>\n\n\n\n<p>Read on for all the exciting updates that marked the past month.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Get ready for State of the Word</h2>\n\n\n\n<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1024%2C683&ssl=1\" alt=\"State of the Word 2023\" class=\"wp-image-16438\" />\n\n\n\n<p>Mark your calendars—State of the Word 2023 is approaching fast. In this annual keynote, WordPress co-founder Matt Mullenweg celebrates the progress of the open source project and offers a glimpse into its future.</p>\n\n\n\n<p>For the first time in WordPress history, the event will be held outside North America, in the vibrant city of <a href=\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\">Madrid, Spain, on December 11, 2023</a>.</p>\n\n\n\n<p>If you’re unable to attend the State of the Word in person, you can watch it live on the <a href=\"https://www.youtube.com/live/1MwT9EEkguE?si=TYwAe5qnKA3DlRMX\">WordPress YouTube channel</a> or join one of the many community-led watch parties. <a href=\"https://wordpress.org/state-of-the-word\">Find one near you</a> or <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/state-of-the-word-watch-parties/\">organize one</a>.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-3 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https://wordpress.org/state-of-the-word/\">Learn more about State of the Word 2023</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Meet Twenty Twenty-Four</h2>\n\n\n\n<p>Along with the release of <a href=\"https://wordpress.org/download/releases/6-4/\">WordPress 6.4</a> “Shirley,” the new default <a href=\"https://wordpress.org/news/2023/11/introducing-twenty-twenty-four/\">Twenty Twenty-Four theme was introduced</a>.</p>\n\n\n\n<p>This theme breaks away from the tradition of previous default themes that focused on a specific topic or style. Instead, Twenty Twenty-Four was created to fit any website and explore different use cases for entrepreneurs, artists, and writers.</p>\n\n\n\n<p>You’ll find more than 35 beautiful patterns, including full-page patterns for templates like homepage, search, and more. Twenty Twenty-Four boasts the latest site editing capabilities and a sophisticated aesthetic inspired by contemporary design trends.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https://playground.wordpress.net/?theme=twentytwentyfour\">Check out Twenty Twenty-Four now</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/11/10/whats-new-in-gutenberg-17-0-9-november/\">Gutenberg 17.0</a> was released on November 9, 2023. It introduced improvements to the Command Palette, an alternative implementation of the DropdownMenu component, additional visual cues for LinkControl, and various accessibility and performance iterations.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/\">Gutenberg 17.1</a> shipped on November 22, 2023. In addition to several accessibility and writing flow enhancements, this version brought a new block spacing control in the Quote block.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/11/30/embracing-matrix-for-enhanced-communication/\">WordPress is switching to Matrix</a> in replacement of the Making WordPress Slack. The move stems from the project&#8217;s commitment to implementing a new chat system aligned with WordPress&#8217;s open source values. If you haven&#8217;t already, now is the time to explore Matrix and share your questions.</li>\n\n\n\n<li>With phishing scams on the rise, the WordPress Security team is actively monitoring the current threat and has posted <a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\">an advisory to help you protect your site</a>.</li>\n\n\n\n<li>The Plugin Review team is now <a href=\"https://make.wordpress.org/plugins/2023/12/02/join-the-plugin-review-team/\">reopening applications to join their team</a>. They’re looking for three new members who can improve the state of the plugin review queue and help create a diverse and inclusive team.</li>\n\n\n\n<li>Over the past few months, contributors have been working on <a href=\"https://make.wordpress.org/meta/2023/11/22/redesigning-developer-resources-and-a-call-for-testing/\">redesigning the WordPress.org Developer Resources</a> section.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/11/06/proposal-2024-major-release-timing/\">This post</a> outlines proposed dates for major WordPress releases in 2024.</li>\n\n\n\n<li>The Meta team shared an <a href=\"https://make.wordpress.org/meta/2023/11/22/plugin-directory-preview-button-revisited/\">improved version of the plugin preview feature</a>. This version builds on feedback and allows plugin developers to safely test the preview experience for their plugins in a <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> environment.</li>\n\n\n\n<li>Polyglots and Meta contributors introduced <a href=\"https://make.wordpress.org/meta/2023/11/29/create-tours-for-make-p2s/\">a new plugin called Tour</a>, which enables the creation of tours to guide contributors through a Make WordPress blog.</li>\n\n\n\n<li>Are you looking to broaden your knowledge and improve your WordPress skills? See <a href=\"https://make.wordpress.org/updates/2023/12/01/whats-new-on-learn-wordpress-in-november-2023/\">what’s new on Learn WordPress in November 2023</a>.</li>\n\n\n\n<li>The latest edition of People of WordPress features back-end web developer <a href=\"https://wordpress.org/news/2023/12/people-of-wordpress-artemy-kaydash/\">Artemy Kaydash</a> from Ukraine.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Requests for feedback &amp; testing</h2>\n\n\n\n<ul>\n<li>The Community team announced the <a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\">2023 Annual Meetup Survey</a>. Both event attendees and organizers are encouraged to provide feedback in this 5-minute survey to help strengthen WordPress meetups in the future.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/11/23/mobile-team-update-november-22nd/\">Version 23.7</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events</h2>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f9-1f1fc.png\" alt=\"🇹🇼\" class=\"wp-smiley\" /> WordCamp Asia opened the <a href=\"https://asia.wordcamp.org/2024/the-third-batch-of-tickets-on-sale-now/\">third round of ticket sales</a> and announced that <a href=\"https://asia.wordcamp.org/2024/announcing-our-first-speaker-matt-mullenweg/\">their first speaker is WordPress co-founder Matt Mullenweg</a>. The conference will be held in Taipei, Taiwan, on March 7-9, 2024.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"🇪🇺\" class=\"wp-smiley\" /> WordCamp Europe <a href=\"https://europe.wordcamp.org/2024/call-for-sponsors/\">opened its call for sponsors</a> and <a href=\"https://europe.wordcamp.org/2024/speakers/call-for-speakers/\">speakers</a> for their conference slated to take place in Torino, Italy, on June 13-15, 2024.&nbsp;</li>\n\n\n\n<li>Don’t miss these upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" /> <a href=\"https://ahmedabad.wordcamp.org/2023/\">WordCamp Ahmedabad 2023</a>, India on December 9, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f0.png\" alt=\"🇵🇰\" class=\"wp-smiley\" /> <a href=\"https://lahore.wordcamp.org/2023/\">WordCamp Lahore 2023</a>, Pakistan on December 9-10, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em><strong>Have a story we should include in the next issue of The Month in WordPress? Fill out </strong></em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><em><strong> to let us know.</strong></em></p>\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/bernard0omnisend/\">Bernard Meyer</a> for contributing to this edition of The Month in WordPress.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox.</p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline is-style-split wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p>\n						<a href=\"https://wordpress.org/news/?post_type=post&p=16575\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Dec 2023 11:20:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Do The Woo Community: Looking at 2023 and Moving into 2024 with Carl and Zach in Woo DevChat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78657\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://dothewoo.io/looking-at-2023-and-moving-into-2024-with-carl-and-zach-in-woo-devchat/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:454:\"<p>Carl Alexander and Zach Stepek, hosts of Woo DevChat at Do the Woo Podcast, end the year 2023 the only way these two could end a year.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/looking-at-2023-and-moving-into-2024-with-carl-and-zach-in-woo-devchat/\">Looking at 2023 and Moving into 2024 with Carl and Zach in Woo DevChat</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Dec 2023 14:01:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Do The Woo Community: Share a Question or Comment for the Do the Woo End-of-Year Show\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"https://dothewoo.io/voices/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:367:\"<p>Want to share your favorite episode, host or show? Perhaps you have a burning question or comment. Here\'s your chance.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/voices/\">Share a Question or Comment for the Do the Woo End-of-Year Show</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Dec 2023 11:34:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WordPress.org blog: WordPress 6.4.2 Maintenance &amp; Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2023/12/wordpress-6-4-2-maintenance-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6205:\"<h2 class=\"wp-block-heading\">WordPress 6.4.2 is now available!</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.4.2&groupdesc=1&group=resolution&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&col=keywords&order=priority\">7 bug fixes</a> in Core. The fixes include a bug fix for an issue causing stylesheet and theme directories to sometimes return incorrect results.</p>\n\n\n\n<p>This release also features one security fix. Because this is a security release, <strong>it is recommended that you update your sites immediately</strong><strong>.</strong></p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.4.2.zip\">download WordPress 6.4.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>WordPress 6.4.2 is a short-cycle release. The next major release will be version 6.5 released in early 2024.</p>\n\n\n\n<p>For more information on this release, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-4-2/\">HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p>The security team addressed the following vulnerability in this release.</p>\n\n\n\n<ul>\n<li>A Remote Code Execution vulnerability that is not directly exploitable in core, however the security team feels that there is a potential for high severity when combined with some plugins, especially in multisite installs.</li>\n</ul>\n\n\n\n<p>To help the security team and WordPressers around the world, you are encouraged to <a href=\"https://hackerone.com/wordpress?type=team\">responsibly report vulnerabilities</a>. This allows vulnerabilities to be fixed in future releases.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>.</p>\n\n\n\n<p>WordPress 6.4.2 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/atachibana\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/angelasjin\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/Bernhard%20Reiter\">bernhard-reiter</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/coreyw\">Corey Worrell</a>, <a href=\"https://profiles.wordpress.org/crstauf\">crstauf</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/kebbet\">Erik</a>, <a href=\"https://profiles.wordpress.org/gaambo\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/priethor\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/kharisblank\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/krupalpanchal\">Krupal Panchal</a>, <a href=\"https://profiles.wordpress.org/kdowns\">Kylen Downs</a>, <a href=\"https://profiles.wordpress.org/meta4\">meta4</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/partyfrikadelle\">partyfrikadelle</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/NekoJonez\">Pieterjan Deneys</a>, <a href=\"https://profiles.wordpress.org/rawrly\">rawrly</a>, <a href=\"https://profiles.wordpress.org/rebasaurus\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/tutorials/faq-for-new-contributors/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p>As a final reminder, The WordPress Security Team will never email you requesting that you install a plugin or theme on your site, and will never ask for an administrator username and password. <a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\">Please stay vigilant against phishing attacks</a>.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/angelasjin/\">@angelasjin</a> and <a href=\"https://wordpress.slack.com/team/U02SVSW3U\">@desrosj</a> for proofreading.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Dec 2023 17:03:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"Do The Woo Community: Agency Client Relations, Team Work and Differentiating with Nuno Morgadinho and Jesper Wallmander\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78643\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://dothewoo.io/agency-client-relations-team-work-and-differentiating-with-nuno-morgadinho-and-jesper-wallmander/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:520:\"<p>Nuno Morgadinho from WidgiLabs and Jesper Wallmander from Wallmander Co chat about their experiences and insights into running a WooCommerce Agency</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/agency-client-relations-team-work-and-differentiating-with-nuno-morgadinho-and-jesper-wallmander/\">Agency Client Relations, Team Work and Differentiating with Nuno Morgadinho and Jesper Wallmander</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Dec 2023 11:02:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: Growing Meetups at the WordPress Community Day, Roma 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78619\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/growing-meetups-at-the-wordpress-community-day-roma-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:455:\"<p>In this show the organizers for this event share how the idea transpired for the Next-Gen event and the goals to help grow the Italian WordPress meetup community.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/growing-meetups-at-the-wordpress-community-day-roma-2023/\">Growing Meetups at the WordPress Community Day, Roma 2023</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Dec 2023 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: #102 – Artemy Kaydash on Exploring AI and How It Will Alter the Workplace\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=151668\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/podcast/102-artemy-kaydash-on-exploring-ai-and-how-it-will-alter-the-workplace\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:41598:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how AI is transforming the workplace.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox. And use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Artemy Kaydash. Artemy is a WordPress and WooCommerce freelance developer who focuses on backend development. After realising his passion lay in back-end work, he shifted his focus from full stack development to creating, supporting, maintaining, and editing WordPress and WooCommerce plugins. He also runs a personal website where he shares his expertise through blogging about WordPress and WooCommerce.</p>\n\n\n\n<p>Most of this episode centres around the impact of AI on the landscape of web development. We explore the implications of AI tools for web developers, firstly talking about the way that AI systems have rapidly become somewhat essential and the developer&#8217;s toolkit.</p>\n\n\n\n<p>We discussed the pivotal role AI may have in the future and how it could become an indispensable time-saver, relegating many uninteresting tasks from needing to be carried out manually.</p>\n\n\n\n<p>We get into the intersection of AI and web development, highlighting the need for developers to adapt and harness the potential of AI tools to remain at the forefront of innovation.</p>\n\n\n\n<p>We deliberate on the potential ramifications of AI on job roles within the WordPress space, underscoring the enduring need for human expertise in deciphering customer wishes, refining marketing strategies, and crafting compelling design experiences.</p>\n\n\n\n<p>Although Artamy is not sure how the future will unfold, it&#8217;s clear that he sees the present as a pivotal moment in which those who adapt to the realities of AI can flourish, whilst those who do not might be left behind. His perspective allows us to glimpse a future of web development in which AI can be a force for positive change, to be embraced, not feared.</p>\n\n\n\n<p>If AI has piqued your curiosity in the past, especially in the WordPress space, this episode is for you.</p>\n\n\n\n<p>I am joined on the podcast today by Artemy Kaydash. How are you doing, Artemy?</p>\n\n\n\n<p>[00:03:34] <strong>Artemy Kaydash:</strong> I&#8217;m doing good. What about you?</p>\n\n\n\n<p>[00:03:36] <strong>Nathan Wrigley:</strong> Good, thank you. Lovely to have you on. We&#8217;re going to talk today about AI, which is a really interesting subject. Something that personally is really fascinating to me. Before we get into that, Artemy, I wonder if you wouldn&#8217;t mind just spending a brief moment giving us your biography. How come you&#8217;re talking on a WordPress podcast today? What is your relationship with WordPress? What do you do for a living? That kind of thing.</p>\n\n\n\n<p>[00:03:59] <strong>Artemy Kaydash:</strong> So I&#8217;m 24 years old. I&#8217;m a WordPress and WooCommerce freelance developer. I want to underline that I&#8217;m a backend developer. I used to be some kind of a full stack developer, but at some point in my life, I understood that I don&#8217;t like working with front end stuff. So I decided to focus on backend and today I create, support, maintain, and edit WordPress and WooCommerce plugins. That&#8217;s what I do.</p>\n\n\n\n<p>I also have a, my personal website, where I blog about WordPress and WooCommerce. Where I share some of my knowledge. Where I teach people how to do some things with WooCommerce and WordPress. You can visit it. It&#8217;s kayart.dev. I guess that&#8217;s all you should know about me,</p>\n\n\n\n<p>[00:04:45] <strong>Nathan Wrigley:</strong> Thank you so much. We will link to any URLs or sites or anything like that we mention. We&#8217;ll make sure to link to them in the show notes. So if you go to WP Tavern and search for this episode, you&#8217;ll be able to find all of the links in there. But we&#8217;re going to have a chat today about AI.</p>\n\n\n\n<p>Now, I think I should probably say at the outset, I certainly am no expert in any way about AI. I am just curious. And, I would say more than that, I&#8217;m fascinated by it. I&#8217;m not always particularly enamoured by it. I&#8217;m not entirely sure that it&#8217;s always the best thing to pursue, but I am fascinated by it.</p>\n\n\n\n<p>I don&#8217;t know what your credentials are, whether it&#8217;s something that you view Artemy, are you into the technology of this? Do you get yourself in the weeds of any code related to this? Or are you like me somebody that&#8217;s fascinated by what it&#8217;s doing?</p>\n\n\n\n<p>[00:05:38] <strong>Artemy Kaydash:</strong> I think I&#8217;m more like you, I don&#8217;t know much about how AI works under the hood. I&#8217;m a big fan of philosophy and I think a lot about our future and what&#8217;s ahead of us. So of course, I&#8217;ve been thinking a lot about how AI will change the way we live, the way we work.</p>\n\n\n\n<p>So I wrote some posts on LinkedIn about this, especially about the content creators. And you know, I&#8217;m excited but I think that there&#8217;s a lot of hype and marketing around this topic because you know, when I made my first steps in web development in 2017, some people already told me that in a few years there will be no demand in front end developers because, I don&#8217;t know if you ever used the Avocode app.</p>\n\n\n\n<p>Avocode allows you to take a PSD template, from Photoshop, and it generates CSS for you. And then we had some tools like Figma, or something like this, that generated CSS on the fly. You create a figure and it generates CSS for it. Even then there were some people that thought that in a few years there will be no demand in HTML and CSS developers. And you know what? We are in 2023 and we still need front end developers.</p>\n\n\n\n<p>Front end has become much more complex. We now have things like React, Vue and other front end frameworks. Those tools, they cannot solve these issues. I think that when a new tool comes up that allows you to automate some things, you can go on the next level. You can create much more complex things.</p>\n\n\n\n<p>So I think that with AI, at least in the nearest future, that&#8217;s something that&#8217;s going to wait for us. AI will allow us to automate some simple, sometimes stupid, stuff that we hate to do because it&#8217;s boring.</p>\n\n\n\n<p>For example, I don&#8217;t like writing HTML and CSS. So if ChatGPT is going to generate HTML and CSS for me, that&#8217;s great, because I want to focus on things that&#8217;s interesting for me. And I don&#8217;t think that, at least at the moment, at least in the state that ChatGPT has now, it can replace me absolutely. It can do some stuff for me, but it cannot replace me fully. That&#8217;s what I think.</p>\n\n\n\n<p>[00:07:53] <strong>Nathan Wrigley:</strong> That&#8217;s one of the interesting things that we&#8217;ll probably chat through is whether or not we are going to be out of work, because of the advances in AI and the capabilities that they bring. But that&#8217;s a really interesting argument and an argument that I&#8217;m sure many people would share the outcomes that you just suggested. That the AI can increasingly take over the mundane, the uninteresting things that you may well have had to do, but also it allows us to do increasingly more complicated things.</p>\n\n\n\n<p>So the things that were available to us as web developers 10 years ago, are no longer the things that we would use anymore. And perhaps in the future AI will enable us to do things as yet unimagined. I guess only the future will tell, but you don&#8217;t have an intuition, certainly at the moment, that anybody using AI could replace a human? You&#8217;re thinking more that it would be able to augment what they can do. Add on to what they can do. Reduce the amount of time it takes them to do things. Have I got that about right? Is that your position?</p>\n\n\n\n<p>[00:08:57] <strong>Artemy Kaydash:</strong> It absolutely already can replace some people, especially if you&#8217;re talking about some manual stuff like, there are some people that they are paid for, okay, I have an Excel table and I need you to go through every cell and do something with this. And ChatGPT and similar tools, they can do something like this.</p>\n\n\n\n<p>So the less intellectual your work is, the more is probability that your work is going to be replaced. So if you want to be in demand, if you want to keep up with these AI tools, you need to work on your intellectual skills, on your soft skills. You have to work on your, way of thinking. And of course, as a law of evolution, you have to adapt. You either adapt or die, unfortunately.</p>\n\n\n\n<p>[00:09:47] <strong>Nathan Wrigley:</strong> Do you think then that one of the tools that you&#8217;ll have to have in the future? And again, let&#8217;s rewind the clock. If we were to go back 10 years, your suite of tools would be, I don&#8217;t know, some software which enabled you to write the code, plus a bunch of possibly books or online resources to enable you to take that knowledge and put it into your head and so on.</p>\n\n\n\n<p>But do you imagine that in the future, using AI will be a prerequisite, an essential tool for anybody, just because, well simply from a time saving point of view, the fact that you don&#8217;t have to research everything yourself, and it may be able to fulfill, let&#8217;s say, a proportion, 50%, 30%, 90% of the tasks that you need to achieve. That will be an essential skill, aside from all the other things you need to know. You have to know how to write in in React. You have to know how to set up a server, whatever it is. But the AI will be your companion sitting there helping you, and it will be necessary because of the time benefits and all of that that it brings.</p>\n\n\n\n<p>[00:10:48] <strong>Artemy Kaydash:</strong> Absolutely. 10 years ago, there were no package managers, there was no NPM, there was no packages or something like this. And now they are part of our life, and we cannot work without it. So I think that some AI tools, absolutely will be a part of our tool set.</p>\n\n\n\n<p>And that&#8217;s fine, that&#8217;s great. They will allow us to do some stuff that we had to do manually earlier. That&#8217;s great. It means that we will have more time to focus on things that we do better. At least for now.</p>\n\n\n\n<p>[00:11:16] <strong>Nathan Wrigley:</strong> Do you have any intuitions or have you played with AI and it fulfill what you needed to do? So I&#8217;ve played with AI fairly recently, probably in the last week or so, and I&#8217;m continually amazed by the things that it can achieve from a simple text prompt. So for example, the WordPress code base has been out, completely free, for everybody to examine for many, many, many years.</p>\n\n\n\n<p>And so there&#8217;s no inhibition to all of the AI pieces of software, ChatGPT, and Claude and Anthropic, and all of the different pieces that you can go and look at. All of them have had access to that code. And so when I ask it to do something fairly straightforward in WordPress, something that I would have to sit down and write and think through. I am always bowled over by, a, how amazingly accurate it is in understanding what I wanted it to do. But also how clean the bits and pieces that it returns. Now sometimes it gives me something which is entirely unusable, but on the whole I am utterly amazed by how reliable and effective it is.</p>\n\n\n\n<p>[00:12:23] <strong>Artemy Kaydash:</strong> I use ChatGPT and Bard sometimes. But I usually use it for, I think that every developer has some Stack Overflow threads that they are visiting regularly. Go to see the same answer every and every again, because they cannot remember it. So ChatGPT is good for these things.</p>\n\n\n\n<p>Or sometimes I use ChatGPT to generate some boilerplate code for me, and it&#8217;s great. For example, as I told you before, there was a case when I worked on Dokan website. Dokan is a multi vendor plugin for WooCommerce. And I had to get some data about a vendor, if I&#8217;m not mistaken. And, when I asked ChatGPT to find an answer for me, how can I get this data using PHP and without MySQL, it just hallucinated some answers. It told me to use some methods that didn&#8217;t exist. So I still had to go to the source code. I had to find a class I need, and I had to find methods I need.</p>\n\n\n\n<p>Or for example, there are some questions that do not have one single answer, you know. For example, how to structure your code? There&#8217;s no single answer. How to stylize your code? There&#8217;s no single answer. How to structure your classes? What should be the relations with each other? There are no single answer for this. So you have to think about it.</p>\n\n\n\n<p>And that&#8217;s why, forums like Stack Overflow, they are still the thing, because there are some discussions of real people that have some experience behind their back. And you can read it, and you can make your own opinion about their opinions, and you can find your own way. And I think that ChatGPT, or other stuff, they won&#8217;t help you with this. Because it&#8217;s your decision, and you will take every blame for every error that ChatGPT will make.</p>\n\n\n\n<p>[00:14:16] <strong>Nathan Wrigley:</strong> Yeah, I think that&#8217;s a really good point. It is definitely not perfect. But in some situations, it is remarkably close to perfect. But still, as we stand towards the end of 2023, you still need a human to judge whether or not what it has given you is perfect.</p>\n\n\n\n<p>I do wonder if in the future, the inspection that humans need to apply to what AI gives us back. I do wonder if as time goes on, that will be less and less required, because it becomes more and more accurate. So for example, if we were to just look at the things that were output by, for example ChatGPT, in versions prior to what we&#8217;ve got now, there was definitely a difference in the quality of things.</p>\n\n\n\n<p>If we were for example just to take the silly example of image creation. Now, I know that&#8217;s got nothing to do code, but it&#8217;s an interesting example. It was really easy to spot just 18 months ago, like really, really easy to spot that an AI made that picture of a human being. Because look at the fingers, look at the ears, there&#8217;s just clearly something is not quite right there.</p>\n\n\n\n<p>However, if you were to run the same query today, it would be almost impossible to tell that a human being hadn&#8217;t been involved in that, because they have learnt along the way. So I do wonder whether or not we&#8217;ll need the humans to have that level of inspection in the future.</p>\n\n\n\n<p>And that brings me to another point, this is something that I&#8217;ve considered a little bit. You, whilst you&#8217;re significantly younger than I am, put it that way, but you&#8217;re no longer a child, let&#8217;s say that. And you have managed to, since you were a child, you have managed to presumably be employed, be paid, be in work, in order to acquire the skills that you now have. And the reason that you have been able to have that work is because somebody needed to have you, for example, as an intern or as a junior developer, and you have acquired skills in steps, getting more and more difficult work as the years have gone by.</p>\n\n\n\n<p>I wonder if the AI, if there&#8217;s a risk that it will knock out that bottom layer of people who get into the workplace at the intern level. Because why would we need to employ an intern? Because we now know that the AI can handle pretty much everything that an intern would have done. And so as time goes on, I wonder if there&#8217;s going to be a gap in people coming through, learning the technology, learning all the bits and pieces. So I wonder if that&#8217;s anything you&#8217;ve given thought to?</p>\n\n\n\n<p>[00:16:48] <strong>Artemy Kaydash:</strong> Well, you cannot take a college graduate and make him as the CEO of your company, right? You still have to learn about your business. So yeah, of course AI will take some of their jobs. But you still, you cannot jump through the levels. You have to go your way. You have to learn your, what you need. You have to live through your experience and there is no way to escape this. So I think that the company owners will still take interns. Maybe they will pay them less I guess, maybe, who knows. But still people need to gain their experience. There is no way to escape this.</p>\n\n\n\n<p>[00:17:22] <strong>Nathan Wrigley:</strong> I guess that may be the concern of people who are worried about AI, is that we just have to think through these problems in advance, so that we&#8217;re not 20 years from now, looking back and saying, boy, we, we really haven&#8217;t had any interns getting through our company and now 20 years on, we&#8217;ve got nobody left to fulfill these positions. What do we do?</p>\n\n\n\n<p>[00:17:45] <strong>Artemy Kaydash:</strong> That&#8217;s the people natures, right?</p>\n\n\n\n<p>[00:17:47] <strong>Nathan Wrigley:</strong> Yeah, but obviously in your own business, that&#8217;s an easy one to fix. You just make that decision. If as a nation or as an industry, we don&#8217;t consciously think about that, there is a risk that, Well, it&#8217;s okay, the other businesses out there, they won&#8217;t farm everything out to the AI. So I&#8217;ll be able to employ people who grew up and went through their internship. And that&#8217;s fine. But if we&#8217;re all doing it, then there&#8217;ll just be this deficit of people. Who knows, maybe that won&#8217;t be the case.</p>\n\n\n\n<p>Let&#8217;s move the conversation a little bit. And I&#8217;m going to mention the LinkedIn posts that you wrote, that the URLs for those are far too long to give out. So I&#8217;ll just say go to the show notes and have a look. But you wrote a couple of pieces over on LinkedIn where you shared your concerns about AI hoovering up, vacuuming up, all of the knowledge that we&#8217;ve put out there, so blog posts and what have you. And whether or not there&#8217;s like an ethical problem, or something that we ought to be able to stop the AI from doing that.</p>\n\n\n\n<p>So do you just want to outline, you don&#8217;t really give a position on this. You don&#8217;t say whether you think it&#8217;s right or wrong, but you highlight it as a potential issue in the future. Do you just want to go through that?</p>\n\n\n\n<p>[00:18:52] <strong>Artemy Kaydash:</strong> Well, of course it&#8217;s bad. These AI tools, and the companies behind them, they take your content and use it to make money, and they don&#8217;t share this money with you. Of course, it&#8217;s bad for me. But you know, it is what it is. You have to accept this rule because you cannot change them. So you have to adapt.</p>\n\n\n\n<p>And as I said in those posts, you cannot protect your content like fully. And in one of those posts I mentioned an article on The Register where the site, the CEO of Medium, it&#8217;s a huge publishing platform, so they have a lot of content. And I&#8217;m sorry, I don&#8217;t remember his name, but he told that yeah, we try to block AI crawlers from our website. But still there are some companies that scrape our data, and then they sell this data to OpenAI or Google or someone else.</p>\n\n\n\n<p>So, yeah, you can block some AI crawlers, very specific crawlers. But there will come more of them and you cannot block all of them. It&#8217;s like an arms racing, right? Websites have been trying to block AI Crawlers for ages, and no one could do this, and you cannot do this. Because when you create a new wall that they have to go through, you will come up with an idea how to go through this wall, and then a new wall and you come up with a new idea. So it&#8217;s a constant process, and you cannot stop it.</p>\n\n\n\n<p>And I also tell that the only way to at least kind of protect your content is to use some, paywall features or something like this, or create a private group or something like this. As I told you before, you can automate these things as well. So if someone really want to take your content, they will find a way to take your content. And you cannot fully protect it. So you have to find ways to still, still be in demand. For example, I&#8217;m a content creator myself, because I have a website. I have a blog.</p>\n\n\n\n<p>I blog about the WordPress, and just like Stack Overflow, I noticed that when ChatGPT has become public, traffic on my website has decreased. Of course because some people, they don&#8217;t go to Google anymore when they have a software question. They go straight to ChatGPT or Bard or something like this. And they ask these tools these questions. So they don&#8217;t need my website anymore.</p>\n\n\n\n<p>And those companies just scraped, I think you can find my content in this tools because, I wrote some unique articles, and they couldn&#8217;t find any other answers. At least I think this way. So yeah, you have to adapt. And my answer about this is that you have to be unique because your content can be stolen, but your way of thinking, your unique life experience, your unique perspective, and sometimes your craziness. It cannot be simulated, at least for now.</p>\n\n\n\n<p>[00:21:53] <strong>Nathan Wrigley:</strong> That&#8217;s a really good answer. I like that little bit at the end. This is interesting. So if we were to rewind the clock to the beginning of the internet, I get the intuition that it was a really different enterprise. The internet came around, hyperlinks were invented, all of a sudden things could connect to other things.</p>\n\n\n\n<p>And then blogging began, and it was a real, a real moment of pride for people to set up their blog and put their voice out there and know that if search engines did their job correctly, those search engines would find your content and then people through the search engine would find their way back to you. And I still think that, although you could argue that Google may have interesting ways of surfacing your content that don&#8217;t necessarily lead back to your article. Broadly, the intention of a search engine is to go around the web, scrape it, and then for people to find themselves back at your site.</p>\n\n\n\n<p>Whereas, although I think it&#8217;s a little trickle at the moment, of people who&#8217;ve moved away from search engines to ChatGPT, I can see a moment where the trickle becomes a bit of a stream. And then the stream becomes a bit of a tidal wave. Where if you want the answer to something, you&#8217;re not just trying to find something to read, but you just want the answer to a problem, then I think you&#8217;re right. I think people will increasingly go to the place where that answer will be given back to you, so an AI.</p>\n\n\n\n<p>And then the problem is, what&#8217;s the incentive in writing anymore? Why would you write if you know for a fact that the vast majority of people will never see what you&#8217;ve written. It&#8217;s just going to be consumed by an AI, which will spit it out, give you no credit for it. There is a potential for it to ruin the enterprise of writing content in the first place, yeah?</p>\n\n\n\n<p>[00:23:48] <strong>Artemy Kaydash:</strong> Well, you can think about this way, and I think some people will surely do this. But for example, what&#8217;s the point of listening to this podcast? We were just two guys, what was the point? But, I guess it means that some people are interested in my experience, in my way of thinking and your experience and your way of thinking.</p>\n\n\n\n<p>There are some authors that I read, not because they create, not because they give me some answers, but they make me think. They have some good perspectives. And I can use these perspectives to create some of my own perspectives, right? So, it&#8217;s about thinking. It&#8217;s about reading something that, as I said before, there are some questions that do not have one single answer. You have to think about it.</p>\n\n\n\n<p>So I think that bloggers will be more focused on this type of content, like my opinion on this, or my perspective on this, or what I think about this. Because, at least for now, ChatGPT doesn&#8217;t have any opinions. It can share some facts. And you can&#8217;t even be sure that these facts are real because it hallucinates sometimes.</p>\n\n\n\n<p>[00:24:56] <strong>Nathan Wrigley:</strong> I do wonder if the AIs maybe need to do a better job of citing where they get things from. So in the example that you gave earlier, where you wrote a few posts, where you tackled something probably for the first time, and if somebody wanted to find the solution, you were the person that had provided it. So you&#8217;ve got an intuition that ChatGPT, in this case, had consumed your article, and when you went to find whether they had or not, you could write a question which clearly gave that content that you&#8217;d written back to yourself.</p>\n\n\n\n<p>I do wonder if the AI could do a better job of saying, okay, the information that we&#8217;ve got came from this website and this website. Here&#8217;s the links that we used, that we scraped in order to find the content that we&#8217;ve just surfaced, which we&#8217;re sort of pretending we made up, but we didn&#8217;t really. So if they could give more information about where they&#8217;re getting their information, maybe that would help, provide that gap between what we have now with search engines, and what we have now with AI, where we don&#8217;t really know where the heck it got anything from.</p>\n\n\n\n<p>[00:25:59] <strong>Artemy Kaydash:</strong> In the perfect world, yeah of course they should do this. And as I know, Bing AI already does this. If you ask Bing Chat about something, it doesn&#8217;t just give you an answer, it also provides you with some links it used to give this answer, and that&#8217;s great I think, But as I said, companies are not interested in you making money, right? They&#8217;re interested in making money for themselves. So, maybe if there will be some legal requirements that will make them to cite properly sources they use, and it&#8217;s something that would be great. As I said, there are always some workarounds. And I&#8217;m not sure if the companies behind these tools will not use these workarounds.</p>\n\n\n\n<p>[00:26:43] <strong>Nathan Wrigley:</strong> That&#8217;s a good point. I think you&#8217;re right. So you made the point earlier that it doesn&#8217;t matter how clever you are in putting up a wall between your content and the internet. At some point you&#8217;ve got to allow people to get through that wall, and maybe the AIs will figure out how to get through that wall as well.</p>\n\n\n\n<p>Yeah, it&#8217;s just an, I just think we&#8217;re on the precipice of something, or the opposite. We&#8217;re at the foot of a mountain and it&#8217;s, rather than it being a precipice that we&#8217;re about to fall into, which sounds really bad, maybe it&#8217;s a mountain that we&#8217;re just at the base of and we&#8217;re going to climb towards the summit.</p>\n\n\n\n<p>I don&#8217;t really know. Certainly you mentioned earlier that certain jobs have already gone. If you were to look at the work of, I don&#8217;t know, crafting a spreadsheet, or amending a spreadsheet based upon something that your boss needed doing. That kind of work can now be done by AI. I wonder what your intuitions are as to the level of complexity that is going to be acquired by AI in the next few years.</p>\n\n\n\n<p>So you mentioned at the top that you&#8217;re 24 years old. Is there any part of you that&#8217;s concerned about your job stability in the future? Do you think you&#8217;ve achieved a certain level of expertise where you&#8217;re immune? Or are you at that point where you&#8217;re looking over your shoulder thinking, I really do need to keep an eye on this because I&#8217;m afraid for my job? What do you think about that?</p>\n\n\n\n<p>[00:28:02] <strong>Artemy Kaydash:</strong> Well, of course I cannot guarantee that in the future the AI tools could replace me or could not, because, who knows? Five years ago, we couldn&#8217;t even imagine that there will be things like DALL·E or something like this, and they do really great.</p>\n\n\n\n<p>I don&#8217;t know, I really don&#8217;t know. The only thing I can guarantee, at least for myself, I&#8217;m still going to be a person I am. And I can work on my soft skills and I can adapt. Maybe I won&#8217;t be a WordPress developer in five years because ChatGPT will do, will create plugins for me. Well, maybe I will have to find a new job, who knows. But I&#8217;m pretty sure about myself, and I&#8217;m not pretty sure about my job, right.</p>\n\n\n\n<p>[00:28:42] <strong>Nathan Wrigley:</strong> One of the interesting arguments that I heard recently, it&#8217;s a fairly pessimistic argument, I&#8217;ll put that out there right at the beginning, but the argument always goes a bit like, well, if we invent new technology, then obviously that will disrupt things, but there&#8217;ll always be new opportunities created. So, if 5,000 people lose their jobs over here, what will happen is 5,000 other jobs, or something equivalent, will get created somewhere else. The technology will create a new branch of the workplace that we haven&#8217;t as yet imagined, and that will be where those people will go, once they&#8217;ve figured out how to adapt and what have you. So it&#8217;s this constant process of improvement, alteration, and finding where you fit into this new jigsaw puzzle of the technological landscape.</p>\n\n\n\n<p>One of the arguments that I heard recently was that this could be the first time where that argument doesn&#8217;t really hold. And the argument went a bit like this. In every other technological innovation, humans have been able to move out of the thing which was innovated into, and they&#8217;ve been able to go to somewhere else, because now we&#8217;ve got something, there&#8217;s some space available. So a good example would be the industrial revolution, where machines were made to move things, drill holes through things, lift things.</p>\n\n\n\n<p>In other words, the machines took the physical things that we needed to do, and it mechanized those, and so people moved from the sphere of physical work, and became more intellectual workers. However, if in this current revolution of AI, the AI also beats us at the intellectual enterprise, it&#8217;s better than us at thinking, it can do things more quickly. Where do humans go? What&#8217;s left? Machines are better lifting things than us. Machines are better thinking through things than us, well, we&#8217;re on a permanent holiday then, aren&#8217;t we? Don&#8217;t know if you&#8217;ve got any thoughts about that? If this technology is literally transformational because it&#8217;s consuming the last vestige of what we&#8217;ve got left, which is our brain, really.</p>\n\n\n\n<p>[00:30:45] <strong>Artemy Kaydash:</strong> Philosophers and economists have discussed this topic even when ChatGPT wasn&#8217;t even a thing. So for example, like one of the possible scenarios, okay. We&#8217;ll have great AI tools that will do every job for us. Which means that we have like millions and billions of people without a job.</p>\n\n\n\n<p>They still need to eat. They need to live somewhere. They need to drink something. One of the possible scenarios is that governments will have to like take some part of those big companies revenue and share it with people like, passive basic income, if I&#8217;m not mistaken, it&#8217;s called.</p>\n\n\n\n<p>[00:31:25] <strong>Nathan Wrigley:</strong> Universal Basic Income, UBI. Yeah.</p>\n\n\n\n<p>[00:31:27] <strong>Artemy Kaydash:</strong> Right. Maybe this scenario that waits for us. I don&#8217;t know.</p>\n\n\n\n<p>[00:31:32] <strong>Nathan Wrigley:</strong> Yeah. The truth is we really don&#8217;t know. It&#8217;ll be an interesting journey. Let&#8217;s just, before we round this off, let&#8217;s just ground this back into the WordPress space, because obviously that&#8217;s primarily what this podcast is about. What have you experienced over the last 18 months, it literally could have been last week, it could have been something from last year. Can you mention any things in the WordPress space connected with AI that you have found yourself being drawn to, coming back to, using, over the last period of time?</p>\n\n\n\n<p>[00:32:00] <strong>Artemy Kaydash:</strong> In WordPress, I&#8217;m not sure. I saw that Jetpack now has some AI features, and some of the most popular SEO plugins already allow you to like generate meta descriptions or something like this. I know about this feature, but I don&#8217;t use them for now. And I think that Gutenberg has some potential for AI features.</p>\n\n\n\n<p>Elementor, I actually used Elementor AI features, and Divi AI features. It&#8217;s not perfect right now, but I think it&#8217;s great that you can tell those builders, like I want to have a section with an image, and a text in the center of it, and it generates it. You didn&#8217;t have to code it. You didn&#8217;t have to write HTML and CSS what I had. So these tools can be very useful in this case. And I think that Gutenberg may have something like this.</p>\n\n\n\n<p>[00:32:50] <strong>Nathan Wrigley:</strong> I think the content piece, the creation of content, just getting yourself over the hurdle of that blank page. If it can create some content for you, which then you can tweak, make it your own. But you&#8217;re right, the whole enterprise of laying things out, once you&#8217;ve done that a hundred times, it&#8217;s probably not as interesting as it was the first time. And if you can get the AI to do those kinds of things, and then you adapt it within the tool that you&#8217;re using, whether that&#8217;s a page builder or the block editor or whatever. Yeah, that&#8217;s really interesting.</p>\n\n\n\n<p>And I think we&#8217;re moving into a future where the whole site is potentially under the purview of AI. The moment you first log into WordPress, it seems like there&#8217;s a lot of tools coming down the pike at the moment that will ask you a series of questions. It&#8217;s like an onboarding to the creation of your website, and based upon the answers that you give it, it will create a bunch of pages. An about page, a contact page. It will style it. It will give it colors. It will put content in there, which is not the content that you want, but it approximates what you want.</p>\n\n\n\n<p>It knows, for example, that you&#8217;re a baker. And so it puts in pictures of baking, and it will have text which is adjacent to the baking industry, and that kind of thing. So I feel that all of that is coming. And again, I guess it sends us right back to the beginning of our conversation. Whilst that&#8217;s brilliant on the one hand, it does also raise concerns about the long term future of many of the jobs that we&#8217;ve been doing for the last 10 or 15 years and whether or not we need to adapt.</p>\n\n\n\n<p>[00:34:21] <strong>Artemy Kaydash:</strong> As I said before, we can use these tools as our tools, not like our replacements, right. So for example, if I need a website, and I need a good website that&#8217;s going to attract some customers, I still need to have an understanding of what people are looking for, what are their preferences?</p>\n\n\n\n<p>I need to understand some marketing stuff, some design stuff. Yeah, I think that if you want a basic website, of course you can already use some of these tools to create this website. But they won&#8217;t be perfect. they won&#8217;t be so detailed for a specific customers you try to attract. And in this case you need designers, you need marketers, you need developers, that&#8217;s going to take this basic website and they will make a perfect website from it. It will allow you to spend less money on this, but you still need an expert&#8217;s perspective on this.</p>\n\n\n\n<p>[00:35:20] <strong>Nathan Wrigley:</strong> Yeah, I think you&#8217;re right. It&#8217;s easy to forget because the things like ChatGPT, because their responses are so really remarkable, it is easy to forget that basically at its heart it isn&#8217;t yet, I say yet, it isn&#8217;t yet intelligent. It mimics intelligence. It&#8217;s giving us the next word and the word after that and the word after that, or the pixel next to that and the pixel next to that, whatever it may be.</p>\n\n\n\n<p>And it mimics brilliantly based upon the consumption of lots of previous human knowledge. But you&#8217;re right, it doesn&#8217;t cut to the heart of what a human can do. And the human having more experience about, it&#8217;s not just a website. It&#8217;s a website where we have to throw SEO, in because that&#8217;s a piece of the puzzle. We have to throw in the marketing. We have to throw in what humans do, because UX and UI, that&#8217;s important as well, if we want people to actually make use of this website. It&#8217;s got to behave in a certain way.</p>\n\n\n\n<p>It&#8217;s easy to forget that as of 2023, no AI is capable of taking this job on, it can make things look nice. It can pretend to be intelligent, but as yet, it truly isn&#8217;t. And so, yeah, adapting, being novel, creating a new future for yourself based upon what the AI can bring seems like the road to go.</p>\n\n\n\n<p>Artemy, thank you so much for joining us today. Just before we leave, if people have been intrigued by this conversation and they want to talk to you about AI or anything in particular, is there a place where we could send them? I will, of course, link to your website, but you may want to mention that again, but is there like a social network that you use that you want to drop? Anything like that.</p>\n\n\n\n<p>[00:37:03] <strong>Artemy Kaydash:</strong> My website contains all social links I use. You can also try to connect me on LinkedIn or you can drop me an email.</p>\n\n\n\n<p>[00:37:10] <strong>Nathan Wrigley:</strong> Artemy, thank you so much for joining us on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:37:16] <strong>Artemy Kaydash:</strong> Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today, we have <a href=\"https://kayart.dev/\">Artemy Kaydash</a>.</p>\n\n\n\n<p>Artemy is a WordPress and WooCommerce freelance developer who focuses on backend development. After realising his passion lay in back-end work, he shifted his focus from full stack development to creating, supporting, maintaining, and editing WordPress and WooCommerce plugins. He also runs a personal website where he shares his expertise through blogging about WordPress and WooCommerce.</p>\n\n\n\n<p>Most of this episode centres around the impact of AI on the landscape of web development. We explore the implications of AI tools for web developers, firstly talking about the way that AI systems have rapidly become somewhat essential and the developer&#8217;s toolkit.</p>\n\n\n\n<p>We discussed the pivotal role AI may have in the future and how it could become an indispensable time-saver, relegating many uninteresting tasks from needing to be carried out manually.</p>\n\n\n\n<p>We get into the intersection of AI and web development, highlighting the need for developers to adapt and harness the potential of AI tools to remain at the forefront of innovation.</p>\n\n\n\n<p>We deliberate on the potential ramifications of AI on job roles within the WordPress space, underscoring the enduring need for human expertise in deciphering customer wishes, refining marketing strategies, and crafting compelling design experiences.</p>\n\n\n\n<p>Although Artamy is not sure how the future will unfold, it&#8217;s clear that he sees the present as a pivotal moment in which those who adapt to the realities of AI can flourish, whilst those who do not might be left behind. His perspective allows us to glimpse a future of web development in which AI can be a force for positive change, to be embraced, not feared.</p>\n\n\n\n<p>If AI has piqued your curiosity in the past, especially in the WordPress space, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://kayart.dev/\">Artemy&#8217;s website</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/feed/update/urn:li:activity:7094656120857735168/\">LinkedIn post #1</a> mentioned in the podcast</p>\n\n\n\n<p><a href=\"https://www.linkedin.com/feed/update/urn:li:activity:7113445056941842432/\">LinkedIn post #2</a> mentioned in the podcast</p>\n\n\n\n<p><a href=\"https://openai.com/chatgpt\">ChatGPT</a></p>\n\n\n\n<p><a href=\"https://bard.google.com/chat\">Bard</a></p>\n\n\n\n<p><a href=\"https://claude.ai/login\">Claude</a></p>\n\n\n\n<p><a href=\"https://dokan.co/wordpress/\">Dokan website</a></p>\n\n\n\n<p><a href=\"https://www.bing.com/search?q=Bing+AI&showconv=1\">Bing Chat</a></p>\n\n\n\n<p><a href=\"https://openai.com/dall-e-2\">DALL·E</a></p>\n\n\n\n<p><a href=\"https://jetpack.com/ai/\">Jetpack AI</a></p>\n\n\n\n<p><a href=\"https://elementor.com/products/ai/\">Elementor AI</a></p>\n\n\n\n<p><a href=\"https://www.elegantthemes.com/ai/\">Divi AI</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Dec 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Do The Woo Community: Rebranding Your WordPress Plugin Business with Robert Abela\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78634\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://dothewoo.io/rebranding-your-wordpress-business/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:413:\"<p>Robert Abela from Melapress shares his story of rebranding his business and also shares some insights into the under-rated user roles in WP.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/rebranding-your-wordpress-business/\">Rebranding Your WordPress Plugin Business with Robert Abela</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Dec 2023 08:32:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WordPress.org blog: Alert: WordPress Security Team Impersonation Scams\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16547\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4174:\"<p>The WordPress Security Team is aware of multiple ongoing phishing scams impersonating both the “WordPress team” and the “WordPress Security Team“ in an attempt to convince administrators to install a plugin on their website which contains malware.</p>\n\n\n\n<p><strong>The WordPress Security Team will never email you requesting that you install a plugin or theme on your site, and will never ask for an administrator username and password.</strong></p>\n\n\n\n<p>If you receive an unsolicited email claiming to be from WordPress with instructions similar to those described above, please disregard the emails and indicate that the email is a scam to your email provider.</p>\n\n\n\n<p>These emails link to a phishing site that appears to be the WordPress plugin repository on a domain that is not owned by WordPress or an associated entity. Both <a href=\"https://patchstack.com/articles/fake-cve-phishing-campaign-tricks-wordpress-users-to-install-malware/\">Patchstack</a> and <a href=\"https://www.wordfence.com/blog/2023/12/psa-fake-cve-2023-45124-phishing-scam-tricks-users-into-installing-backdoor-plugin/\">Wordfence</a> have written articles that go in to further detail.</p>\n\n\n\n<p>Official emails from the WordPress project will always:</p>\n\n\n\n<ul>\n<li>Come from a <code>@wordpress.org</code> or <code>@wordpress.net</code> domain.</li>\n\n\n\n<li>Should also say “Signed by: wordpress.org” in the email details section.</li>\n</ul>\n\n\n\n<img width=\"1024\" height=\"450\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?resize=1024%2C450&ssl=1\" alt=\"Screenshot of email sent by a WordPress.org email account. The details include \" />\n\n\n\n<p>The WordPress Security Team will only communicate with WordPress users in the following locations:</p>\n\n\n\n<ul>\n<li>the Making WordPress Secure blog at <a href=\"https://make.wordpress.org/security\">make.wordpress.org/security</a></li>\n\n\n\n<li>the main WordPress News site at <a href=\"https://wordpress.org/news\">wordpress.org/news</a></li>\n</ul>\n\n\n\n<p>The WordPress Plugin team will never communicate directly with a plugin’s users but may email plugin support staff, owners and contributors. These emails will be sent from <a href=\"mailto:plugins@wordpress.org\">plugins@wordpress.org</a> and be signed as indicated above.</p>\n\n\n\n<p>The official WordPress plugin repository is located at <a href=\"https://wordpress.org/plugins\">wordpress.org/plugins</a> with internationalized versions on subdomains, such as <a href=\"https://fr.wordpress.org/plugins\">fr.wordpress.org/plugins</a>, <a href=\"https://en-au.wordpress.org/plugins\">en-au.wordpress.org/plugins</a>, etc. A subdomain may contain a hyphen, however a dot will always appear before wordpress.org.</p>\n\n\n\n<p>A WordPress site’s administrators can also access the plugin repository via the plugins menu in the WordPress dashboard.</p>\n\n\n\n<p>As WordPress is the most used CMS, these types of phishing scams will happen occasionally. Please be vigilant for unexpected emails asking you to install a theme, plugin or linking to a login form.</p>\n\n\n\n<p>The Scamwatch website has some tips for <a href=\"https://www.scamwatch.gov.au/protect-yourself/ways-to-spot-and-avoid-scams\">identifying emails and text messages that are likely to be scams</a>.</p>\n\n\n\n<p>As always, if you believe that you have discovered a security vulnerability in WordPress, please <a href=\"https://wordpress.org/about/security/\">follow the project’s Security policies</a> by privately and responsibly disclosing the issue directly to the WordPress Security team through the project’s official <a href=\"https://hackerone.com/wordpress\">HackerOne page</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thank you <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/otto/\">Otto</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, and <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> for their collaboration on and review of this post.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Dec 2023 23:13:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: People of WordPress: Artemy Kaydash\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2023/12/people-of-wordpress-artemy-kaydash/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10937:\"<p class=\"has-darker-grey-color has-off-white-2-background-color has-text-color has-background has-link-color wp-elements-9b663d0d5861b05380bcaca160ef01c8\">The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</p>\n\n\n\n<p>Artemy Kaydash discovered that working with WordPress has opened possibilities greater than he imagined. For him, the &#8220;active, responsive, and enthusiastic community&#8221; makes the software fresh and alive with many ways to experiment and practice adapting it for clients&#8217; needs.</p>\n\n\n\n<img width=\"1024\" height=\"640\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-featured-img.jpg?resize=1024%2C640&ssl=1\" alt=\"Artemy Kaydash stood in front of water\" class=\"wp-image-16242\" />\n\n\n\n<p>Back-end development with WordPress has proven to be a rewarding career choice for Artemy. He believes developers can inspire others to choose the same career path by sharing the opportunities and satisfaction of working with the content management system (CMS).</p>\n\n\n\n<h2 class=\"wp-block-heading\">The adventure of learning WordPress</h2>\n\n\n\n<p>Learning new software can be daunting, but Artemy realized that learning with and from inspiring people makes a real difference: &#8220;I vividly remember my first WordPress experience. I was confused, had many questions, and was desperately trying to understand how to do the most simple things.&#8221;</p>\n\n\n\n<p>Working initially in a small agency in Ukraine, Artemy had basic HTML/CSS skills and had just started learning PHP development. His senior colleagues helped him take his first steps in web development and were patient with his questions.</p>\n\n\n\n<p>The agency director later gave him the responsibility of creating a WordPress website for a friend. He recalls being nervous, as he was not yet confident in his PHP skills. Colleagues reassured Artemy as he worked, and he went on to build a career in international web development.</p>\n\n\n\n<img width=\"640\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-at-a-cafe.jpg?resize=640%2C1024&ssl=1\" alt=\"Artemy reflecting on his learning as he looks outside of a window in a cafe\n\" class=\"wp-image-16241\" />\n\n\n\n<p>Like many others, Artemy found that experimenting with WordPress intrigued him, and he wanted to learn more about it. Looking back, he said: &#8220;The first theme I built was awful. It was composed of my own creative solutions and code snippets I found in searches. It had lots of bugs, but as people say, &#8216;the first pancake is always a bit tricky.\'&#8221;</p>\n\n\n\n<p>Artemy is a great believer in reflective learning, going back and reviewing a piece of development. He said: &#8220;No matter how bad it was, it was my first experience, and I learned a lot about the basic concepts of WordPress. That&#8217;s why I believe that learning by doing is the best way to learn something new.&#8221;</p>\n\n\n\n<p>He added: &#8220;My advice to others is don&#8217;t be afraid of doing something awful when you create something for the first time. It&#8217;s okay. We&#8217;ve all been through that initial phase.&#8221;</p>\n\n\n\n<img width=\"640\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-winter-lake.jpg?resize=640%2C1024&ssl=1\" alt=\"Artemy looking across a lake in the winter time\" class=\"wp-image-16245\" />\n\n\n\n<p>&#8220;It&#8217;s nice to have a mentor when you learn something new. Luckily, you don&#8217;t need a person sitting next to you anymore. All of us have got the best mentor possible: the Internet. If you don&#8217;t know how to do something, then search for how other people have done the same thing,&#8221; Artemy said.</p>\n\n\n\n<p>&#8220;No wonder some say that one of the most required skills of every developer is the willingness to learn and to know how to search for information. This is one of the reasons WordPress is one of the best options for beginners. Now there is so much more information and help available to learn, more than there was when I first began.&#8221;</p>\n\n\n\n<p>Artemy feels that the willingness of others to share their experience and problem-solve together is a big strength of the WordPress community and also the reason for its ongoing success: &#8220;When you stumble upon a problem, there&#8217;s a high probability that someone already asked the same question on one of the forums or websites. If you&#8217;re lucky enough, someone already wrote a post about your problem with a great explanation of how to solve it with examples and code snippets.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is for beginners and long-term careers</h2>\n\n\n\n<p>WordPress is not a software with strict limits, and it can be adapted and used in many different ways by beginners and advanced developers.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I like to learn something that excites me and makes my brain work. With WordPress, I am able to find interesting and creative solutions.</p>\n</blockquote>\n\n\n\n<p>There are so many new things to learn that Artemy decided to stay in web development, and he sees it as a perfect channel for his creativity and abstract thinking. It may seem very different from his initial education in literature, sociology, and philosophy. Still, he has found those studies sharpened his skills for understanding, communicating, and working with clients on creative solutions to challenges.</p>\n\n\n\n<p>Artemy enjoys the client side of his work and interacting with different studios and agencies. His international work allows him to use WordPress and WooCommerce in many different environments, both large and small, which keeps the software exciting. He said: &#8220;I believe if you want to learn something you have to practice using it a lot. Open source is a big advantage in this.&#8221; Artemy found that the more he experiences various sites and clients, the more flexible and helpful he can be in helping them find the right solution.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Inspired to help others use WordPress</h2>\n\n\n\n<img width=\"1024\" height=\"639\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/artemy-from-pier.jpg?resize=1024%2C639&ssl=1\" alt=\"Artemy standing on the pier\" class=\"wp-image-16243\" />\n\n\n\n<p>A willingness to share and grow skills together is what open source environments champion. This collaborative environment inspired Artemy to focus on using WordPress professionally and to share what he learned. &#8220;There is a lot of free code and snippets available for anyone to use. I have been grateful to all of the people who have written answers on sites like Stack Overflow, written blog posts, created free plugins, and other helpful materials. It made me want to help others when I was able to.&#8221;</p>\n\n\n\n<p>In August 2021, Artemy began blogging about using WordPress:&nbsp;&#8220;I like to think that this way I am repaying my learning debt for all the content I have consumed. It makes me happy to see that people really read my posts, and it helps them solve their WordPress problems. So, today, when I face a problem and can&#8217;t find the solution, I think it might be a great idea for a new post!&#8221;</p>\n\n\n\n<p>He also likes to keep up with how other people use WordPress by visiting Stack Overflow, WordPress Facebook groups, and other communities where people ask questions almost daily. He helps where he can in those channels or gains inspiration for new content. He believes&nbsp;<a href=\"https://learn.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">Learn.WordPress.org</a>&nbsp;and the&nbsp;<a href=\"https://developer.wordpress.org/news/\" target=\"_blank\" rel=\"noreferrer noopener\">Developer Blog</a>&nbsp;are valuable resources for beginners and more advanced developers too. As those resources grow, they will increasingly become a place where others can share their development knowledge and use cases.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Every community is a two-way street</h2>\n\n\n\n<p>Artemy encourages everyone to become a part of the WordPress community. “There are a lot of opportunities for everyone,” he said. “You can help with the translation of your favorite plugins or themes. You can create your own plugin or become a contributor to an already existing open source plugin. You can write tutorials. You can write reviews helping other people to choose the best option for them. You can help people on support forums.”</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Every contribution, big or small, makes WordPress better. It is a great experience to be part of it.</p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these open source contributor stories and continue to grow the community.&nbsp;Meet more WordPressers in the&nbsp;<a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To discover more about how to use WordPress, and start your own story, visit&nbsp;<a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/kayart/\" target=\"_blank\" rel=\"noreferrer noopener\">Artemy Kaydash</a> for sharing about his adventures in WordPress, and to <a href=\"https://profiles.wordpress.org/webcommsat/\" target=\"_blank\" rel=\"noreferrer noopener\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" target=\"_blank\" rel=\"noreferrer noopener\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/meher/\" target=\"_blank\" rel=\"noreferrer noopener\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/marks99/\" target=\"_blank\" rel=\"noreferrer noopener\">Mark Smallman</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\" target=\"_blank\" rel=\"noreferrer noopener\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" target=\"_blank\" rel=\"noreferrer noopener\">Chloe Bringmann</a>, and <a href=\"https://profiles.wordpress.org/marybaum/\" target=\"_blank\" rel=\"noreferrer noopener\">Mary Baum</a> for interviews, editorial, images, and reviews. </em></p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\"><img width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Dec 2023 14:28:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"Do The Woo Community: Do the Woo is Headed to State of the Word 2023 in Madrid\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78614\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/do-the-woo-is-headed-to-state-of-the-word-2023-in-madrid/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:439:\"<p>BobWP from Do the Woo will once again attend State of the Word. The SOTW 2023 will be in Madrid this year to celebrate Spain\'s WordPress community.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/do-the-woo-is-headed-to-state-of-the-word-2023-in-madrid/\">Do the Woo is Headed to State of the Word 2023 in Madrid</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Dec 2023 09:14:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: Responsiveness, styling the details block, create block theme plugin and so much more – Weekend Edition 276\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=26529\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://gutenbergtimes.com/weekend-edition-276/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21034:\"<p>Howdy, </p>\n\n\n\n<p>The Winter in Munich comes with big steps.  If you are interested, <a href=\"https://twitter.com/bph/status/1730699245773029537/photo/1\">I shared a photo from last night</a> on X (former Twitter) . I am all excited as I haven&#8217;t seen that much snow since I visited a friend in Vancouver in 2021, but that was only for a couple of weeks. Now I have to live in this weather. 🥶 I might venture outside long enough to take some more pictures. Stay tuned.  </p>\n\n\n\n<p>In this edition, I share a ton of links to updates about tools, plugins and themes, tutorials and how-to articles. I have a feeling, I also missed a few, so please notify me, so I can add them next week. </p>\n\n\n\n<p>Wishing you and your loved ones a Happy Holiday season 🎄 And if you don&#8217;t celebrate, have a wonderful weekend! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Monday, I was on the panel of the <a href=\"https://wpbuilds.com/2023/11/28/this-week-in-wordpress-277/\"><strong>277th episode of This week in WordPress, Mysterious cosmic rays </strong></a>-together with <strong>host Nathan Wrigley, Michelle Frechette, Wendie Huis in t Veld, and Jeroen Rotty</strong>. We covered, the new feature of <a href=\"https://make.wordpress.org/meta/2023/11/22/plugin-directory-preview-button-revisited\">Live preview for the plugin directory</a>, with a shout-out to Alex Shiels and the meta team, and also, as a surprise to me about <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index\">Keeping up with Gutenberg Index</a>, the <a href=\"https://europe.wordcamp.org/2024/speakers/call-for-speakers\">call for speakers and diversity efforts for WordCamp Europe</a> was also a topic, as was the <a href=\"https://wptavern.com/podcast/100-nick-diego-on-the-revamp-of-the-wordpress-showcase-website\">new Showcase on the .org site</a> and the <a href=\"https://bobwp.com/the-road-to-do-the-woo-4-0\">new line-up of shows on the  Do the Woo network</a>.  Participating on the panel is a fun way to start a week in the WordPress world. Don&#8217;t be shy, 🙂 <a href=\"mailto:admin@wpbuilds.com\">connect with Nathan Wrigley</a> and see when there is a free slot on the show. You definitely should subscribe to the <a href=\"https://www.youtube.com/wpbuilds\">YouTube channel</a> and the Podcast. </p>\n\n\n\n<a href=\"https://wpbuilds.com/2023/11/28/this-week-in-wordpress-277/\"><img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/TWIW-277.jpeg?resize=652%2C367&ssl=1\" alt=\"\" class=\"wp-image-26599\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>Are you looking for a <strong>State of the Word watch party</strong> near you?  A few are already planned. Take a look at <a href=\"https://wordpress.org/state-of-the-word/\">the events landing page.</a> The countdown will start soon:  <strong>December 11, 2023, at 15:00 UTC Matt Mullenweg will give the State of the Word keynote talk directly from Madrid, Spain.</strong> It&#8217;s the first time it is broadcast from outside the US. </p>\n\n\n\n<p>It will be livestreamed on <a href=\"https://youtube.com/wordpress\">YouTube on the WordPress channel</a>. A Q &amp; A section will follow, where Mullenweg will answer questions previously submitted to <a href=\"mailto:ask-matt@wordcamp.org\" target=\"_blank\" rel=\"noreferrer noopener\">ask-matt@wordcamp.org</a>. You will be able to submit questions during the event via the Slido App. The QR code will be available on the day of the event. </p>\n\n\n\n<a href=\"https://wordpress.org/state-of-the-word/\"><img width=\"652\" height=\"435\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/11/image.png?resize=652%2C435&ssl=1\" alt=\"\" class=\"wp-image-26400\" /></a>\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-d02c05917781faad43b455819cf71f89\">🎙️ Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-93-gutenberg-17-1-command-palette-data-views-and-grid-layout/\">Gutenberg Changelog #93 – Gutenberg 17.1, Command Palette, Data Views and Grid Layout</a> &#8211; a chat with <strong>Isabel Brison</strong></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v17.2.0-rc.1\"><strong>Gutenberg 17.2 RC1</strong></a> is now available for testing.  The stable release will come out on December 6th, 2023. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Save the date! <a href=\"https://make.wordpress.org/core/2023/11/23/hallway-hangout-lets-explore-wordpress-6-5/\"><strong>Hallway Hangout: Let’s explore WordPress 6.5</strong></a> on January 16 at 21:00 UTC. <strong>Anne McCarthy</strong> and <strong>Saxon Fletcher</strong> will talk through some of what’s to come in the next WordPress release,&nbsp;<a href=\"https://make.wordpress.org/core/2023/11/06/proposal-2024-major-release-timing/\">with a proposed schedule for March 26th</a>. This is being shared early to help encourage more folks to tune in and to build some excitement for this next release.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>On &#8220;The WordPress Way&#8221; show, <a href=\"https://twitter.com/NonStopNewsUK\"><strong>Abha Thakor</strong></a> chatting with <strong>Anne McCarthy</strong> and <a href=\"https://twitter.com/joyofwp\"><strong>Bud Kraus</strong></a> <a href=\"https://dothewoo.io/all-things-wordpress-6-4-with-anne-mccarthy-and-bud-kraus/\"><strong>About all things WordPress 6.4</strong></a> Great conversation that goes in a lot of fun and insightful directions with these three. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Aki Hamano</strong> created the  <strong><a href=\"https://github.com/t-hamano/enable-responsive-image\">Responsive Image plugin</a>.</strong> It adds settings to the Image block to display different images depending on the width of the screen. He cautions you to use it on a production site, as it&#8217;s under active development and might change behavior with new versions. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the latest video, <a href=\"https://www.youtube.com/watch?v=IgoNBFDyIaA\"><strong>How To Create a WordPress Image Gallery</strong></a>, <strong>Ellen Bauer</strong> of Elma Studio gives you a look behind the scenes on how she built the <a href=\"https://themes.elmastudio.de/moog/style-variations/\"><em>demo page for the style variation</em></a> in their latest block theme, <a href=\"https://wordpress.org/themes/moog/\">Moog.</a> </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you want to test the <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Gutenberg Nightly</a> plugin, but don&#8217;t want to set up a test site, you can now use it with a WordPress Playground instance.  Head on over to the  <a href=\"https://icodeforapurpose.com/gutenberg-nightly-playground/\"><strong>Gutenberg Nightly &amp; Playground</strong></a> page on my personal tech blog and click on the <strong>Get Started</strong> button. It&#8217;s a proof of concept for now. I still need to add the daily automatic deployment of the build.zip file to the site. Please let me know what you think about it and how you use it. </p>\n\n\n\n<img width=\"652\" height=\"375\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-11-28-at-19.20.48.png?resize=652%2C375&ssl=1\" alt=\"\" class=\"wp-image-26582\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s trunk branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p><strong>Seth Rubinstein </strong>of Pew Research Institute <a href=\"https://twitter.com/SethRubenstein/status/1729545261007929823\">announced on X</a> (former Twitter)  that he just released a small plugin to add <strong><a href=\"https://github.com/sethrubenstein/responsive-core-group-block/releases/tag/v1\">responsiveness to the core group block.</a></strong> (GitHub)</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Michelle Schlup-Hunt</strong> published her base Full Site Editing theme, that is meant to be used to build other projects on top of, but probably simple enough to use as-is too: <strong><a href=\"https://github.com/marktimemedia/Alicorn-Theme\">Alicorn-Theme</a></strong> (GitHub)</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The fine folks at 10up, just released the 1.1.3 version of their <a href=\"https://wordpress.org/plugins/maps-block-apple/\"><strong>Block for Apple Maps,</strong></a> which integrates Apple Maps directly into your WordPress site. It&#8217;s a mighty block with a ton of features to create customized maps right on your WordPress site. You would need to have an Apple ID and sign up for their Developer program to get the right API keys, though. <a href=\"https://github.com/10up/maps-block-apple\">The code is available in the GitHub repo</a></p>\n\n\n\n<a href=\"https://github.com/10up/maps-block-apple\"><img width=\"652\" height=\"438\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-02-at-11.40.03.png?resize=652%2C438&ssl=1\" alt=\"\" class=\"wp-image-26601\" /></a>\n\n\n\n<p><strong>Ben Ritner </strong>of Kadence announced the <a href=\"https://www.kadencewp.com/blog/coming-to-kadence-blocks-pro-advanced-query-loop/\"><strong>arrival of the Advanced Query Loop </strong></a>block to their pro-version of the plugin. It&#8217;s an enhanced version of the core query loop block, incorporating many user-requested features. It allows you to specify which post types and taxonomies to display, along with the number of posts per page. Not only that, but it also comes with options to custom transition animation which can be used when viewers click between pages, search, or apply filters on the front end. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you are not a Kadence Blocks customer, or only use the free version, there is also the <a href=\"https://wordpress.org/plugins/advanced-query-loop/\"><strong>Advanced Query Loop</strong></a> available by <strong>Ryan Welcher.</strong> It might not be as polished and as frontend oriented as the Kadence version. <a href=\"https://t.co/7HLrN4pvVw\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>In his post <a href=\"https://www.briancoords.com/how-to-show-the-choose-a-pattern-modal-by-default-on-new-pages/\"><strong>How to show the “Choose a Pattern” modal by default on new pages</strong></a>, <strong>Brian Coords</strong> walks you through the few steps to create a full-page layout patterns for your theme or site. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p>With his post, <strong>Jamie Marsland</strong> helps you <a href=\"https://www.pootlepress.com/2023/11/understanding-the-theme-json-file-in-a-wordpress-gutenberg-theme/\"><strong>Understanding the theme.json File in a WordPress Block Theme</strong></a> and he breaks down the various sections and how you can configure them. Marsland also added a section on how to lock certain areas down for end users, so they won&#8217;t change important design settings. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Mary Baum</strong> published the 3rd part of the Series,<em>&nbsp;Make your site’s typography make a statement.</em> <a href=\"https://developer.wordpress.org/news/2023/12/a-great-read-four-simple-steps-to-your-best-body-copy-ever/\"><strong>A great read—four simple steps to your best body copy ever</strong></a>, and she provides code examples for theme.json on how to combine settings of measure, line height, spacing to make your text as readable as possible. </p>\n\n\n\n<ul>\n<li><strong>Part I: </strong><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\"><strong>The visual voice of type:&nbsp;</strong>basic type terms, so we can start the discussion</a></li>\n\n\n\n<li><strong>Part II: <a href=\"https://developer.wordpress.org/news/2023/08/the-anatomy-of-a-letterform/\">The anatomy of a letterform.</a></strong></li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;For now, let’s leave it at this: if you set a gray wall of type, your reader has to want your information very urgently before they’ll slog through to the end.&nbsp;If you break up your copy into approachable chunks, every subhead has a chance to persuade your reader to go on and read further.&nbsp;&#8220;</p>\n<cite><a href=\"https://developer.wordpress.org/news/2023/12/a-great-read-four-simple-steps-to-your-best-body-copy-ever/\">Mary Baum, on the Developer Blog</a></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Gardner</strong> shared a designer&#8217;s insight into Gradients and how to use them in WordPress Blocks. <a href=\"https://wpengine.com/builders/default-gradients-block-editor/\"><strong>Default Gradients in the WordPress Block Editor</strong></a>. Anyone who listened to the Gutenberg Changelog podcast knows, I am a big fan of gradients, and so I am delighted,  they are now available for almost all Core blocks. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> shared in on the fun of  <a href=\"https://developer.wordpress.org/news/2023/12/styles-patterns-and-more-with-the-details-block/\"><strong>Styles, patterns, and more with the Details block</strong></a>. The Details block combines two HTML elements:&nbsp;<code>&lt;details&gt;</code>&nbsp;and&nbsp;<code>&lt;summary&gt;</code>. It is an HTML-native way to show and hide content: the summary part is a title that hides the details until your user clicks on it to trigger a reveal of the details. It can be used for various use cases, on your website. After covering the out-of-the-box styles of the block, Tadlock shows you how to adopt its look and feel for a Spoiler section, and a  list of FAQs. </p>\n\n\n\n<a href=\"https://developer.wordpress.org/news/2023/12/styles-patterns-and-more-with-the-details-block/\"><img width=\"652\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/details-summary-faqs-pattern.jpg?resize=652%2C338&ssl=1\" alt=\"\" class=\"wp-image-26607\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>There have been a few quality-of-life improvements to the <a href=\"https://wordpress.org/plugins/create-block-theme/\"><strong>Create Block Theme plugin </strong></a>over the course of the WordPress 6.3 and 6.4 releases. In this tutorial, <strong>Jonathan Bossenger</strong> gave a brief introduction to these improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>On Thursday, <strong>December 7, 2023 &#8211;  14:00 UTC,</strong> <strong>Jonathan Bossenger</strong> will introduce attendees to the <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/297698902/\"><strong>new WordPress  Interactivity API</strong></a>. The main goal of the Interactivity API is to provide a standard and simple way to handle the frontend interactivity of Gutenberg blocks. This standard would make it easier for developers to create rich, interactive user experiences, from simple cases like counters or popups to more complex features like instant search, or carts and checkouts. In this session, you will learn more about this new developer API, through a live coding example. Sounds like great fun! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his article <a href=\"https://tommcfarlin.com/generate-a-reference-to-a-block/\"><strong>Block Notes: Generate a Reference to a Block</strong></a>, <strong>Tom McFarlin</strong> explains the benefits of generating block references and how they can be utilized in block development. He provides code examples and step-by-step instructions on how to create a reusable block reference using JavaScript and jQuery. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Block extension plugins in WordPress are quick and straightforward to build and are quite formulaic once you have built a few. During the latest <a href=\"https://www.youtube.com/watch?v=M9KKpIgNMNQ\"><strong>Developer Hours: How to extend Core WordPress blocks</strong></a>, <strong>Ryan Welcher</strong> and <strong>Nick Diego</strong> walk through building an extension for the column block that allows users to reverse the display order on mobile devices.  It uses JavaScript on the front end for accessibility. You&#8217;ll learn three ways on how to do this: a Block Style, a Block variation and a custom block. <a href=\"https://github.com/ndiego/enable-column-direction\">The example code </a>is available on GitHub. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <em>A Slice of Rainbow Cake</em> by Ajith R Nair</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Dec 2023 06:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Do The Woo Community: ChatGPT Told Me How I Can Do the Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78585\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://dothewoo.io/chatgpt-told-me-how-i-can-do-the-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:377:\"<p>How much can ChatGPT tell me about WooCommerce, and doing the Woo. Well, I found out and am sharing it in this weeks WooBits.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/chatgpt-told-me-how-i-can-do-the-woo/\">ChatGPT Told Me How I Can Do the Woo</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Dec 2023 13:12:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"Do The Woo Community: Working on Different Open Source Platforms and More with Ian Gordon and Philip James Wylie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78581\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://dothewoo.io/working-on-different-open-source-platforms-and-more-with-ian-gordon-and-philip-james-wylie/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:478:\"<p>Ian and Philip from Kanuka Digital talk about WooCommerce, Magento, web specializations and the open source community.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/working-on-different-open-source-platforms-and-more-with-ian-gordon-and-philip-james-wylie/\">Working on Different Open Source Platforms and More with Ian Gordon and Philip James Wylie</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Nov 2023 13:04:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Gravatar: Introducing An All New Gravatar Profile Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.gravatar.com/?p=750\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://blog.gravatar.com/2023/11/29/introducing-an-all-new-gravatar-profile-editor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4589:\"<p>We are thrilled to unveil the latest updates to Gravatar, better empowering you to personalize and own your online identity. Today, we introduce a new Profile Editor, three new profile fields, and enhanced Privacy settings for all users.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-gravatar\">What is Gravatar?<a href=\"https://updateomattic.wordpress.com/2023/09/20/introducing-the-all-new-gravatar-plus-whats-next/#what-is-gravatar\"></a></h2>\n\n\n\n<p>Gravatar stands for “Globally Recognized Avatar” and is your digital signature across countless websites. By associating a single avatar image to your email address, Gravatar makes maintaining a consistent online presence simple.</p>\n\n\n\n<p>Having gained popularity as a way to display avatars in blog comments, Gravatar has since extended its reach across the web — you&#8217;ll find your Gravatar in Slack, Open&nbsp;AI, Salesforce, and more. In addition to the avatar, you can build a free online profile to share with those you meet, bringing together all your social media and web accounts.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-new-profile-editor\">The New Profile Editor<a href=\"https://updateomattic.wordpress.com/2023/09/20/introducing-the-all-new-gravatar-plus-whats-next/#the-new-profile-editor\"></a></h2>\n\n\n\n<p>We have completely redesigned the Profile Editor, providing an intuitive interface to customize and preview your Gravatar profile. Express yourself by adding a bio, verifying ownership of your social profiles, adding links, and more. The new Profile Editor lets you curate your online persona, making it easier for others to discover and connect with you.</p>\n\n\n\n<p>It is faster, works great on mobile devices, and with this update, <strong><em>you can change the URL of your profile page</em></strong> too.</p>\n\n\n\n<p>Log in at&nbsp;<a href=\"https://href.li/?https://gravatar.com\">gravatar.com</a>&nbsp;now to try out the new editor.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"enhanced-privacy-settings\">Enhanced Privacy Settings<a href=\"https://updateomattic.wordpress.com/2023/09/20/introducing-the-all-new-gravatar-plus-whats-next/#enhanced-privacy-settings\"></a></h2>\n\n\n\n<p>We’ve added <a href=\"https://support.gravatar.com/profiles/profile-access/\">new privacy settings</a> that when enabled will ensure your profile data is private. We’ve also added new settings for users who want to discourage search engines from crawling and indexing their profiles.</p>\n\n\n\n<img width=\"836\" height=\"1042\" src=\"https://gravatar.files.wordpress.com/2023/11/cleanshot-2023-11-29-at-11.35.51-2402x.png\" alt=\"\" class=\"wp-image-857\" />\n\n\n\n<p>We believe in transparency and empowering users to fully control their digital profiles. With many of the websites you use, there is confusion about the information being collected, how it is used, and when it is shared with third parties. As more Gravatar features are rolled out, you’ll see how we are flipping that model on its head by offering a transparent and open profile experience that puts you in the driver’s seat of your online identity.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Pronunciation and Contact Fields</h2>\n\n\n\n<p>There are three new fields available in your profile, all of which were popular requests we&#8217;ve received.</p>\n\n\n\n<p>You asked. We delivered:</p>\n\n\n\n<ul>\n<li>A &#8216;<strong>pronunciation</strong>&#8216; field in your About section. </li>\n\n\n\n<li>A &#8216;<strong>contact form</strong>&#8216; field where you can link to a contact form on your website or blog.</li>\n\n\n\n<li>A &#8216;<strong>calendar</strong>&#8216; field to link to a public appointment calendar like Calend.ly.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Next?</h2>\n\n\n\n<p>If you&#8217;re paying close attention, you might notice that the profile image above looks a bit different from what you&#8217;re used to. We&#8217;ll be introducing some design improvements to public profile pages in the next few weeks.</p>\n\n\n\n<p>We&#8217;ve got more exciting stuff in the pipeline that we can&#8217;t share just yet, but we&#8217;d love to hear from you. Drop a comment below with your thoughts and feedback!</p>\n\n\n\n<p><a href=\"https://wordpress.com/log-in/link?client_id=1854&redirect_to=https%3A%2F%2Fpublic-api.wordpress.com%2Foauth2%2Fauthorize%3Fclient_id%3D1854%26response_type%3Dcode%26blog_id%3D0%26state%3Dac5a30e6451f6b87ee6a0ac0df70d79046ac480badb660ac4f3753fa70968c12%26redirect_uri%3Dhttps%253A%252F%252Fgravatar.com%252Fconnect%252F%253Faction%253Drequest_access_token%26from-calypso%3D1\">And claim your personal Gravatar profile page today</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Nov 2023 17:45:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: #101 – Pooja Derashri on Creating Educational WordPress Content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=151581\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/podcast/101-pooja-derashri-on-creating-educational-wordpress-content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40167:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case creating materials to help other people learn about WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you could do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Pooja Derashri. Pooja is a co-founder of WPVibes, a plugin development company based in India. With a passion for WordPress, Pooja has been actively involved in the community since 2013. Her journey as a contributor began in 2017, when she attended her first local WordCamp. Her expertise and dedication have earned her various key roles in the WordPress ecosystem. She currently serves as a co-team rep for the training team, and GTE for the Hindi locale. In addition, she holds key positions in the WordPress release squad for version 6.3 and 6.4, where she headed up the test team.</p>\n\n\n\n<p>Pooja was on the podcast a few weeks ago talking about diversity, but this time the focus is on creating learning materials for WordPress.</p>\n\n\n\n<p>We begin discussing Pooja&#8217;s background and her involvement with the training team. She shares how she stumbled upon the training team during a WordCamp event, and got started by finding a simple spelling mistake in a lesson plan. From there she became more involved with the training team and gradually took on roles such as reviewing code and leading the test team.</p>\n\n\n\n<p>We get into the importance of training materials in helping new users understand and navigate the WordPress platform, highlighting the learn WordPress website. Pooja emphasizes that contributions to the training team can be as small as reviewing existing content, or as involved as creating new lessons or video tutorials.</p>\n\n\n\n<p>If you&#8217;re curious about how to get started with the training team, Pooja explains the comprehensive onboarding program available in the team&#8217;s handbook. Additionally, there&#8217;s a mentorship guide program for one on one guidance for new contributors. Whether you have a few minutes or several hours to spare each week, there&#8217;s a place for everyone to make a start.</p>\n\n\n\n<p>A key topic of the discussion is the need to keep the training materials up to date, as WordPress is a dynamic and ever-growing software. Pooja explains the team&#8217;s process of reviewing and updating content, particularly in light of new WordPress releases, and frequent changes in terminology.</p>\n\n\n\n<p>We also talk about the importance of translations, introducing the opportunity for contributors to help with translating materials into different languages. Making WordPress accessible to a global audience.</p>\n\n\n\n<p>Towards the end, Pooja highlights the supportive and collaborative nature of the training team. She shares her experience of making friends and connections across the globe while contributing to the team. There&#8217;s a sense of community and camaraderie amongst the contributors, making it an enjoyable journey for all involved.</p>\n\n\n\n<p>If you&#8217;re curious about helping others learn WordPress, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Pooja Derashri.</p>\n\n\n\n<p>I am joined on the podcast today by Pooja Derashri. Hi, Pooja.</p>\n\n\n\n<p>[00:04:27] <strong>Pooja Derashri:</strong> Hello, Nathan.</p>\n\n\n\n<p>[00:04:28] <strong>Nathan Wrigley:</strong> It is so nice to have you back. You were on the podcast just a few weeks ago now, talking about something completely different. We&#8217;ll point you in the direction of that episode in the show notes. But today, Pooja, we&#8217;re going to be talking about learning WordPress. About the training team and about the Learn WordPress website and resources.</p>\n\n\n\n<p>Just before that, for those people who didn&#8217;t hear the previous episode, would you just give us a short biography? Tell us a little bit about yourself, your journey with WordPress and so on.</p>\n\n\n\n<p>[00:04:59] <strong>Pooja Derashri:</strong> Yeah, sure. My name is Pooja Derashri and I&#8217;m from Ajmer, a beautiful city in India. I&#8217;m a co founder of WPVibes, a plugin development company. I&#8217;m also an active contributor to WordPress community. I served as a training team representative for the past two years, and now I&#8217;m serving as a test team rep. I was also in the WordPress release squad for 6.3 and 6.4 version, where I led the test team.</p>\n\n\n\n<p>[00:05:27] <strong>Nathan Wrigley:</strong> Thank you so much. That&#8217;s really great. So obviously you&#8217;re very, very committed to WordPress. And one of the big things about WordPress is getting people to understand how the software works. If you&#8217;re like me, and like you, Pooja, I suspect that it&#8217;s pretty obvious what to do with WordPress. You&#8217;ve used it an awful lot before, and you&#8217;re committed to it, and you understand how it all works.</p>\n\n\n\n<p>But people who are new to the platform, or people who are trying to explore something that they haven&#8217;t used with it before, obviously have to learn a little bit about how that works. And it may be that people do not know. But there are training materials that are being created over at Learn WordPress. I will give the links in the show notes.</p>\n\n\n\n<p>And that is being done and coordinated by the training team. Would you just tell us a little bit about how you got involved with the training team? When did you begin your journey and what kind of things have you been doing, personally, with training and learn materials?</p>\n\n\n\n<p>[00:06:26] <strong>Pooja Derashri:</strong> Yes. Before telling me about my involvement, I would like to tell about how I got started contributing to the training team. I was attending a WordCamp, WordCamp Ahmedabad. There was a contributor day. There are several teams over there, and I decided to learn more about the training team.</p>\n\n\n\n<p>On that day, Chetan Prajapati, the table lead of training team, guided me about what is Learn WordPress, and how I can contribute to it. So he guided me to review some lesson plans. When I was reviewing the lesson plans, I found a spelling mistake in one of the lesson plans. And I suggested a correction, simple correction. That was my first contribution to the team.</p>\n\n\n\n<p>Basically I had a development background, so I was not sure how I can use my skills in creating content, or something like that. So I was not sure how I can get involved with the training team more, where all other team members were working around content.</p>\n\n\n\n<p>But at that time Courtney Robertson and Hauwa Abashiya were the team reps. And the whole team was working on the initial launch of the Learn WordPress .org website. They, guided me on how I contribute to reviewing code in lesson plan. That was my cup of tea and I am fascinated about it. So I joined the forces, at the time, and soon felt very comfortable with the team.</p>\n\n\n\n<p>Basically the training team overall helped me a lot in learning and growing. With the team&#8217;s help, I gradually started feeling more confident and part of the inaugural team. That time with my consistent contribution, or my involvement with the team, I was nominated and selected as a team rep back in 2022.</p>\n\n\n\n<p>[00:08:09] <strong>Nathan Wrigley:</strong> That&#8217;s absolutely fascinating. So your entire journey started out by spotting a spelling mistake, and it grew from there. That&#8217;s lovely. But it also points to the fact that you don&#8217;t need to do something really seismic. You don&#8217;t have to be involved in the training team. You don&#8217;t have to do anything super major, it is possible to be involved to do little things.</p>\n\n\n\n<p>You don&#8217;t have to dedicate absolutely ages of your week over to this. Would that be right? There&#8217;s no commitment in terms of time, or the amount that you&#8217;re going to do. Making little changes is just as important as contributing in a big way.</p>\n\n\n\n<p>[00:08:45] <strong>Pooja Derashri:</strong> Yes, definitely. It was started just with his spelling mistake correction. And now I&#8217;m more involved with the administrator related things, running weekly meetings with other co-team reps, posting monthly updates, monthly newsletter, reviewing other team&#8217;s content, other team members content. I&#8217;m also a translation coordinator for my Hindi language.</p>\n\n\n\n<p>Yeah, and in past I was also wrote few lesson plans. So yeah, it started with a small thing, and gradually with more involvement, I learned many new things.</p>\n\n\n\n<p>[00:09:16] <strong>Nathan Wrigley:</strong> If somebody was interested, let&#8217;s say that they&#8217;ve listened to this episode and they are keen to, at least have further discussions about what it is that they could do. I&#8217;m, interested in you describing how the team is structured. So, as an example, if I&#8217;m new, how do I get onboarded, and how is it decided where I would be most useful?</p>\n\n\n\n<p>So you mentioned a couple of things there, you know, you were talking about the fact that you were able to change spelling mistakes. But you also talked about the fact that you could do things in your own language.</p>\n\n\n\n<p>Do you get to show up and pick what it is that you&#8217;re going to do, or is there a hierarchy? Are there people, such as yourself, who&#8217;ve been contributing to this for a while, who have their hands on what needs doing, and kind of farm out those projects to people?</p>\n\n\n\n<p>[00:10:05] <strong>Pooja Derashri:</strong> Yes. At the beginning of this year, my co-team rep, Benjamin Evans, who worked on a project for an onboarding program for new contributors. And desperately it helped us win half of the battle. New contributors found learning and getting involved with the training team is very easy. They can find the complete getting onboarded program in our handbook. That is available on make.wordpress.org/training/handbook.</p>\n\n\n\n<p>There is a section, getting started. There is a complete video and tutorial format, where they can find the step by step process about how they can involve. And by reading that handbook, they can find their own way to start contributing. That is very easy and concise way to get involved.</p>\n\n\n\n<p>And there is also, a program, run by Courtney P. K., that is a mentorship guide program. There is a one on one mentorship program, where few mentors guide mentees about how they can start contributing to the training team, and help them to make meaningful contributions.</p>\n\n\n\n<p>[00:11:08] <strong>Nathan Wrigley:</strong> Yeah, thank you for that. So, you&#8217;re obviously extremely keen on doing this, and it sounds like you dedicate quite a lot of your time. Again, for the listener who is maybe just coming across this subject for the first time, are there any guardrails, or are there any things which you would suggest, in terms of the amount of time that you need to dedicate if you want to be involved?</p>\n\n\n\n<p>I know that you mentioned the handbook, but for people who don&#8217;t quite make it there and are using this podcast audio only as their guide, is there any level of commitment? Do you wish to have people who are willing to give a certain amount of time per week, or can commit to a certain number of weeks or months? Or are you happy to have anybody on board, even for a short period of time? People who drop in, drop out. Are you taking all comers?</p>\n\n\n\n<p>[00:11:53] <strong>Pooja Derashri:</strong> Yes, definitely. If our listeners have only a limited time, like let&#8217;s say just half an hour, or one hour in a week. So they can review the content the other content creators are creating, already created content.</p>\n\n\n\n<p>In every few months, we review our published content as well. Because as a new version, WordPress version launches, some of the content get outdated. So we always do the auditing the existing content, so people can go through with that content.</p>\n\n\n\n<p>If they found any outdated content, or anything that is missing from lesson plans or video tutorials, they can report our issues on GitHub that is dedicated, learn repository over there. They can report issue over there, and other team members can have a look and try to fix them.</p>\n\n\n\n<p>So that is the lesser time. If new contributor have lesser time to contribute, they can go through with that reviewing process.</p>\n\n\n\n<p>[00:12:45] <strong>Nathan Wrigley:</strong> So there&#8217;s no need to commit a great deal of time. Small contributions are just as welcome as large contributions.</p>\n\n\n\n<p>I&#8217;m just going to turn the conversation to you, Pooja, just for a few minutes. And I&#8217;m curious as what you get out of it. I don&#8217;t mean that in the way that it maybe sounds, but I&#8217;m keen to know why you commit so much of your time.</p>\n\n\n\n<p>You mentioned at the top of the podcast recording that you&#8217;ve obviously got a business to run. You&#8217;ve got other things to do. You&#8217;ve got to generate revenue for you, and the people close to you, and all of that. So I&#8217;m just wondering why it is that you do this. What are the reasons you do it? And I suppose we should clear up the fact that getting paid is not one of them, because this is an entirely voluntary position.</p>\n\n\n\n<p>[00:13:29] <strong>Pooja Derashri:</strong> Yeah. I&#8217;m volunteering all my time to the training team, I&#8217;m self sponsored. So no, I&#8217;m not getting paid from anywhere. But, as I already told you, that I was having a background of development. So, in contributing in training team, I got to know more about how content works around. How we can record a video tutorial, how we can write a lesson plan, many things around SEO.</p>\n\n\n\n<p>And when we work together, other content creator experts, we learn a lot. So by contributing into training team, I learned a lot about content creation, and that newly gained skills, I can use in my business. So it&#8217;s kind of win win situation.</p>\n\n\n\n<p>[00:14:13] <strong>Nathan Wrigley:</strong> That&#8217;s nice. In terms of how the team is organised, if I was to join in, and obviously you&#8217;ve described that there&#8217;s a handbook and it can probably answer many of these questions, but it&#8217;s nice to get it out into the audio. How are tasks assigned? How do the training team, and all of the things that they do, how are those jobs coordinated? Is there a piece of software that we need to be familiar with? Is this all done through Slack or something else?</p>\n\n\n\n<p>In other words, if we were to join, how would we know what needed to be done? And report the things that we had done so that they could be checked and approved and so on. Basically, how does it all work in the background?</p>\n\n\n\n<p>[00:14:51] <strong>Pooja Derashri:</strong> We manage our work mainly in three places. Our team blog, our Slack channel or GitHub repository. Team blog is make.wordpress.org/training. All decisions are discussed and announced in blog post to allow the widest audience to participate. The team blog is the place where our whole discussion, decisions are announced, or are posted.</p>\n\n\n\n<p>And our Slack channel is where we can connect with other contributors in the team in real time. It&#8217;s where people can ask our faculty members and other experienced teammates for help, while working through some team tasks. Our training team meetings are also conducted in Slack, but decisions are not made in Slack. If an item needs a discussion or decision, we publish it as a post on the team blog, so that the general public can see the discussion and join in decision making.</p>\n\n\n\n<p>And lastly, there is a GitHub repository. This is where individual tasks are tracked. These include content creation or content translation, website management related tasks, and these are all organised in a GitHub issues form.</p>\n\n\n\n<p>There are currently like seven major project boards. All the content development related issues fall under this project. There is a team that administrates the related project. There is a content localisation related project where the other people are translating content in their own language. All related issues are under this project.</p>\n\n\n\n<p>Then there is a content feedback, if our content has any issue, any outdated content or any spelling mistake related thing. All that type of content feedback falls under this issue, this project. So yeah, we manage all the website related issues, development related queries, and any content, new content request. All the other content that is in process, all are managed under GitHub repository.</p>\n\n\n\n<p>[00:16:47] <strong>Nathan Wrigley:</strong> So there&#8217;s a variety of different tools and workflows that you need to become familiar with. But I&#8217;m guessing that there&#8217;ll be assistance with that if you decide to join. Somebody will shepherd you through that, and there&#8217;ll be some documentation, some learn materials, which will enable you to learn about contributing towards Learn and the Training Team, which is a bit meta, but there you go.</p>\n\n\n\n<p>In terms of the actual topic areas that you cover, technology, and WordPress in particular, is a really fast moving piece of software. You know, it&#8217;s not glacial. The documents that you wrote a year ago, there is some chance that they will still be pertinent, but I&#8217;m imagining that in many cases, some of these materials will go out of date fairly quickly.</p>\n\n\n\n<p>So I&#8217;m wondering what you could tell us about the bits and pieces that really do need a lot of attention at the moment. So for example, it might be full site editing, or something like that. But just give us an idea of how you decide what needs to be covered.</p>\n\n\n\n<p>We&#8217;ve obviously talked about the way that you communicate that with the tools that you&#8217;ve got. But what topics at the moment are really in need of documentation? And that could be things that haven&#8217;t been done yet, but also things which are underway, which needs to be completed. So yeah, just give us an idea of the topic areas that are really in need of work at the moment.</p>\n\n\n\n<p>[00:18:05] <strong>Pooja Derashri:</strong> Yeah, sure. There is a GitHub project where when people submitted their topic ideas, are subject matter experts looking into every topic ideas. And they finalise that, yeah, that piece of content is having a high priority and we need to focus on first.</p>\n\n\n\n<p>Every month we did a 5 to 10 high priority content list. And we will ask in our every weekly meeting that, yeah, this content is something we need to do on high priority. And we ask for volunteers to help. If they found their area of expertise or their skills match with that content, then they volunteer for that particular project, and they definitely pick that particular piece of content.</p>\n\n\n\n<p>So right now, we are working on 6.4 release work. That is something on our high priority. And there are a few issues that need to be completed as soon as we can. In past 6.4 release, training team was the official part of release, and Courtney PK and Courtney Robertson was the lead at that time in the release.</p>\n\n\n\n<p>And they are working hard for matching our lesson plan content, or our tutorials, with the release work. So yeah, right now we are looking for people, or volunteer, who can help us in working. Those issues can be easily found on GitHub. There is a label assigned on 6.4 on GitHub. That is something we are looking for on high priority right now.</p>\n\n\n\n<p>[00:19:35] <strong>Nathan Wrigley:</strong> Okay, thank you. In terms of the content that you submit, are there any kinds of content that you prefer to have? So what I mean by that is, so for example, there is video content, there&#8217;s text. But I don&#8217;t know if you also produce content in different ways. For example, I don&#8217;t know if you do audio content, the kind of thing that I&#8217;m producing with you right now. Or whether you do live webinars, which end up as a video. So that might be something that people could actually participate in. So just give us an idea of the kinds of different contents that are being created. So video, text, audio, et cetera.</p>\n\n\n\n<p>[00:20:11] <strong>Pooja Derashri:</strong> Basically, there are four types of content available on learn.wordpress.org website. Lesson plans, tutorial, courses and online workshops. Lesson plan and courses are the text based format, and video tutorials and online workshops are like video format. The overall content can be used by both learners and teachers, but lesson plan is specifically created for teachers. And video tutorial, courses and online workshop are for targeted learner audience.</p>\n\n\n\n<p>People who wanted to contribute in text based format, they can go to contribute into lesson plans and courses. And there are several topics submitted on our GitHub repository. They can choose from them. And if there is not, they have any specific topic in that their mind, they can reach out to us or submit their topic idea into GitHub repository, and our subject matter expert can review them, vet them, and approve them. After that they can start working on it.</p>\n\n\n\n<p>Video tutorials, in the similar way, if they want to helping existing submitted topic, they can pick from there. And if they have any topic they want to create video for that. So for creating content on their own, they need video. They need to just submit their topic idea on GitHub repository. That is the basic workflow we follow.</p>\n\n\n\n<p>[00:21:35] <strong>Nathan Wrigley:</strong> In terms of the quality of the materials that you put out, obviously, not everybody is equal. For example, let&#8217;s take the situation of video. Some people are just absolutely fabulous at working with video. You know, they&#8217;ve got the software, they&#8217;re familiar with it, they can make the whole presentation look really slick and all of that.</p>\n\n\n\n<p>Other people may be new to writing that. Other people may not have written text too much before, and they may not have too much confidence about that. So I&#8217;m just wondering if you&#8217;ve got any guard rails around the project. You mentioned that people inspect the content that&#8217;s being offered, in order to make sure it&#8217;s of a certain quality.</p>\n\n\n\n<p>What do you do with content that doesn&#8217;t live up to what you&#8217;d hoped for? Content that maybe needs to be redone, to be improved, to be rewritten. Are there processes in hand to sort of help people who are beginning, who maybe need that little bit of extra support to get them over the hurdles in order to get that content live?</p>\n\n\n\n<p>[00:22:31] <strong>Pooja Derashri:</strong> Firstly, we have a detailed guide on our handbook about how you can create a tutorial. As your question is very interesting, in a few months back, Jonathan Bossenger, he was our video tutorial content creator. What he did, he just wrote some script, and it was some like a cohort kind of thing.</p>\n\n\n\n<p>He wrote a script, other volunteer recorded him, recorded that script. And with collaboration of both, they created a masterpiece, and they published in a collaboration video. Jonathan&#8217;s video creation expertise helped other volunteer to master the skill.</p>\n\n\n\n<p>So others volunteer also learn about the video creation. Like this, many other team members are willing to help a new contributors, or other people who are not that much expert in this video creation. But they can learn from others. There are many other video tutorials available on our Learn WordPress website.</p>\n\n\n\n<p>And our mentors are also there, who help them by one on one call to guide them about what recording tool they can use, what speed they can use. And after they have completed their recording, they can submit their recording on our Slack channel or something. So other content editors then review and provide their feedback, so they can improve also.</p>\n\n\n\n<p>[00:23:56] <strong>Nathan Wrigley:</strong> There are procedures in place to support and help people who may feel that their contributions need a little bit of help. You&#8217;ve given a good example there of Jonathan Bossenger willing to help people up the standard of their videos. So yeah, that&#8217;s really nice.</p>\n\n\n\n<p>If you were to submit, let&#8217;s say a piece of video, are there minimum criteria in terms of things like, let&#8217;s take the topic of accessibility for example? Obviously video is available for some people, but there&#8217;s a subset of the population who are unable to access that video. Do you have guidance around things like transcriptions and things like that? If you submit certain types of content, do you have to then be mindful of things like accessibility or other topics before things get published?</p>\n\n\n\n<p>[00:24:40] <strong>Pooja Derashri:</strong> We take accessibility very seriously. Every video tutorial is followed by transcript. You can find easily transcript under video.</p>\n\n\n\n<p>[00:24:50] <strong>Nathan Wrigley:</strong> And so presumably, that&#8217;s another role which needs to be fulfilled. If you are able to listen to a video and transcribe it, that&#8217;s yet another portion of the work which needs to be done.</p>\n\n\n\n<p>[00:25:02] <strong>Pooja Derashri:</strong> Every video tutorial is followed by transcripts. And there are three or four video editors available. They review the transcript, the video quality and what the video is going to explain to our learners, or our targeted audience. So yeah, there is a whole team and process works around.</p>\n\n\n\n<p>So accessibility is not an issue in the content. And if some people find any accessibility issue under Learn WordPress content, they can easily reach out to us under our Slack channel or our GitHub issue. Anywhere they can reach out to us and ask about yeah, I&#8217;m having that certain issue and, can you please help me with that?</p>\n\n\n\n<p>So we can have in our mind about, yeah, this kind of scenario is also available and we need to work on it also. There is a checklist available where we check every single point before publishing the content.</p>\n\n\n\n<p>[00:25:56] <strong>Nathan Wrigley:</strong> Thank you so much. I&#8217;m just wondering about translations as well. Now, you did touch on this a few minutes ago, but I just want to drill down on that a little bit. Presumably this work also needs to be, not just transcribed, but translated into some other languages.</p>\n\n\n\n<p>And so, again, let&#8217;s just highlight that there are opportunities there if you speak a language other than English. There are opportunities to take these materials and get them taken over into a whole variety of different languages. So that&#8217;s some important work, I would guess as well, right?</p>\n\n\n\n<p>[00:26:28] <strong>Pooja Derashri:</strong> Yes. Many content is already available, and for that we are looking for volunteers who can help us in translating text based content, and video content as well. So that can be reached out to wider audience, so they can easily learn in their language. That said, learning in your own language is very much easier.</p>\n\n\n\n<p>[00:26:47] <strong>Nathan Wrigley:</strong> Yeah, indeed. Okay, so we&#8217;ll just round it off. I&#8217;ve got a few more questions just to sort of round it off. But the first one is around the way that this content sticks around and for how long. So, for example, we mentioned earlier that some pieces of content need to be updated all the time. Full site editing would be a perfect example, you know, the language changes, the words that we use to describe certain things change, the whole UI changes from time to time.</p>\n\n\n\n<p>So I&#8217;m just wondering, how much of the work is not new work, but is going back and checking that the things which are already published are in fact up to date? So just going through the materials, checking, making sure that in the situation where, I don&#8217;t know, full site editing was mentioned, it&#8217;s now changed to site editing so that everybody&#8217;s got the right data.</p>\n\n\n\n<p>[00:27:35] <strong>Pooja Derashri:</strong> Yes. There are basically two processes. First process is our team faculty members, they review or they audit the content. For example 6.4, there was a dedicated two faculty members, Courtney PK and Courtney Robertson. They reviewed the issues, the features that is going to be included in 6.4.</p>\n\n\n\n<p>They map with our already published content. And they filtered out like, yeah, these issues are outdated, and these lesson plans and video tutorials, we need to update. They made a list, and that issues list is available on GitHub. So from that list, our volunteers come and pick a issue to work on it.</p>\n\n\n\n<p>That is the first process. And the second process, people are eager to learn about full site editing. For example, like they are learning our full site editing course, they are taking our full site editing course. And they found it like, yeah, their full site editing is now site editing. So they reported that issue in GitHub. And our faculty members reviewed it, and just gone through the course and updated the content. So that&#8217;s how the updates work for learn content.</p>\n\n\n\n<p>[00:28:41] <strong>Nathan Wrigley:</strong> Obviously, if somebody was to commit a fairly large amount of their time to this, or even just a small amount of their time, it would be nice to know that your endeavors were appreciated, that the people that you were working with were a nice bunch. And I know this is a bit of a bizarre question, but I&#8217;m just keen to drill down into that a little bit.</p>\n\n\n\n<p>How does that team feel to you? You know, is it a nice place to be? Are they thoughtful individuals that you would regard as friends? Because I think a lot of people in the WordPress space would regard many of the people that they collide with as friends after a period of time. And so rather than the work being a chore, oh goodness I have to go and translate this piece of Learn material, it might be that you, you know, you relish it and you enjoy it because you interact with, what have become good friends in a nice environment.</p>\n\n\n\n<p>[00:29:29] <strong>Pooja Derashri:</strong> Yes. When we contribute we met so many new people, networking happens. We work together with many experts. And by the time we will make friends. If I talk about myself, I have so many friends across the globe, by just contributing to the training team.</p>\n\n\n\n<p>Firstly, like Courtney Robertson, Hauwa Abashiya. With these people, I&#8217;m working with them every week or every few days. So, it was like creating a connection with them.</p>\n\n\n\n<p>[00:29:57] <strong>Nathan Wrigley:</strong> Oh that&#8217;s lovely. I mean it really is, my experience at least anyway, is that many of the people that I have interacted with in the WordPress project, have become really dear friends, and it&#8217;s really nice to know that&#8217;s the case for you as well.</p>\n\n\n\n<p>So there&#8217;s a lot of work to be done. There are lots of areas which need work. Lots of different skills which you can acquire, or bring to bear on this work. So I guess the next thing we need to know is, where do we, sign up? Where would be the best place to go if we&#8217;re curious about taking this further?</p>\n\n\n\n<p>Pooja, I wonder if you could just, I don&#8217;t know, dig out a URL, or name a page which we could Google. Some of the good places to begin that journey.</p>\n\n\n\n<p>[00:30:34] <strong>Pooja Derashri:</strong> Begin journey with Learn WordPress. You can go to make.wordpress.org/training. That is official team blog, where all the discussion happens. Under this there is a handbook page available that is a detailed step by step guide available to help you.</p>\n\n\n\n<p>Another one is learn.wordpress.org website. There is content available in the video, and text format that helps you learn about the training team, and about the WordPress as well. There are good places where people can learn about the team, and they can join and contribute as well.</p>\n\n\n\n<p>[00:31:10] <strong>Nathan Wrigley:</strong> Thank you so much. I spoke with you just before we hit record on this particular episode, and you mentioned that from the previous episode, you&#8217;d been contacted by some people who wished to communicate with you about that subject. So we&#8217;ve got this different subject.</p>\n\n\n\n<p>I&#8217;m wondering if you wouldn&#8217;t mind telling us where we can find you personally. If people want to speak with you directly about this and get some more knowledge about your own experience.</p>\n\n\n\n<p>[00:31:33] <strong>Pooja Derashri:</strong> Yes. I&#8217;m available on Make WordPress Slack. My profile username is webtechpooja, and they can find me on Twitter. They can find my handle is Pooja Derashri. They can also find me on LinkedIn, by the same name Pooja Derashri handle.</p>\n\n\n\n<p>[00:31:48] <strong>Nathan Wrigley:</strong> Well Pooja, thank you so much for talking to us today about your experience with the Learn and Training teams behind WordPress. Really appreciate you coming on the podcast and talking to us today. Thank you so much.</p>\n\n\n\n<p>[00:32:00] <strong>Pooja Derashri:</strong> Thank you for having me Nathan. So I can share my journey and about the training team.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>.</p>\n\n\n\n<p>Pooja is a co-founder of <a href=\"https://wpvibes.com/\">WPVibes</a>, a plugin development company based in India. With a passion for WordPress, Pooja has been actively involved in the community since 2013. Her journey as a contributor began in 2017, when she attended her first local WordCamp. Her expertise and dedication have earned her various key roles in the WordPress ecosystem. She currently serves as a co-team rep for the training team and GTE for the Hindi locale. In addition, she holds key positions in the WordPress release squad for versions 6.3 and 6.4, where she heads up the test team.</p>\n\n\n\n<p>Pooja was on the podcast a few weeks ago talking about diversity, but this time the focus is on creating learning materials for WordPress.</p>\n\n\n\n<p>We begin by discussing Pooja&#8217;s background and her involvement with the training team. She shares how she stumbled upon the training team during a WordCamp event and got started by finding a simple spelling mistake in a lesson plan. From there, she became more involved with the training team and gradually took on roles such as reviewing code and leading the test team.</p>\n\n\n\n<p>We get into the importance of training materials in helping new users understand and navigate the WordPress platform, highlighting the Learn WordPress website. Pooja emphasises that contributions to the training team can be as small as reviewing existing content or as involved as creating new lessons or video tutorials.</p>\n\n\n\n<p>If you’re curious about how to get started with the training team, Pooja explains the comprehensive onboarding program available in the team&#8217;s handbook. Additionally, there&#8217;s a mentorship guide program for one-on-one guidance for new contributors. Whether you have a few minutes or several hours to spare each week, there&#8217;s a place for everyone to make a start.</p>\n\n\n\n<p>A key topic of the discussion is the need to keep the training materials up to date, as WordPress is a dynamic and ever-evolving software. Pooja explains the team&#8217;s process of reviewing and updating content, particularly in light of new WordPress releases and frequent changes in terminology.</p>\n\n\n\n<p>We also talk about the importance of translations, introducing the opportunity for contributors to help with translating materials into different languages, making WordPress accessible to a global audience.</p>\n\n\n\n<p>Towards the end Pooja highlights the supportive and collaborative nature of the training team. She shares her experience of making friends and connections across the globe while contributing to the team. There&#8217;s a sense of community and camaraderie among the contributors, making it an enjoyable journey for all involved.</p>\n\n\n\n<p>If you&#8217;re curious about helping others learn WordPress, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/95-pooja-derashri-on-diversity-equity-inclusion-and-belonging-in-wordpress\">#95 – Pooja Derashri on Diversity, Equity, Inclusion, and Belonging in WordPress</a></p>\n\n\n\n<p><a href=\"https://wpvibes.com/\">WPVibes</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://ahmedabad.wordcamp.org/2023/\">WordCamp Ahmedabad</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/handbook/\">Training Handbook</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/\">Make WordPress Training</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja&#8217;s WordPress Profile</a></p>\n\n\n\n<p><a href=\"https://twitter.com/PoojaDerashri/\">Pooja&#8217;s on Twitter</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/pooja-derashri/\">Pooja on LinkedIn</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Additional links supplied by Pooja.</h2>\n\n\n\n<p>Onboarding session for new contributors &#8211; <a href=\"https://make.wordpress.org/training/handbook/getting-started/\" target=\"_blank\" rel=\"noreferrer noopener\">https://make.wordpress.org/training/handbook/getting-started/</a><br />Team blog &#8211; <a href=\"https://make.wordpress.org/training/\" target=\"_blank\" rel=\"noreferrer noopener\">https://make.wordpress.org/training/</a><br />Slack channel &#8211; <a href=\"https://wordpress.slack.com/archives/C02RW657Q\" target=\"_blank\" rel=\"noreferrer noopener\">https://wordpress.slack.com/archives/C02RW657Q</a><br />Github Repository &#8211; <a href=\"https://github.com/wordpress/learn\" target=\"_blank\" rel=\"noreferrer noopener\">https://github.com/wordpress/learn</a></p>\n\n\n\n<p><strong>People Pooja mentioned in podcast:<br /></strong>Courtney Robertson &#8211; <a href=\"https://wordpress.slack.com/team/U02RQ0375\" target=\"_blank\" rel=\"noreferrer noopener\">@Courtney</a><br />Courtney P. K. &#8211; <a href=\"https://wordpress.slack.com/team/U0L4J5SH0\" target=\"_blank\" rel=\"noreferrer noopener\">@Courtney P.K.</a><br />Chetan Prajapati &#8211; <a href=\"https://wordpress.slack.com/team/U2TPPR7U4\" target=\"_blank\" rel=\"noreferrer noopener\">@Chetan Prajapati</a><br />Sarah &#8211; <a href=\"https://wordpress.slack.com/team/U026C1QRXE1\" target=\"_blank\" rel=\"noreferrer noopener\">@Sarah (She/Her)</a><br />Hauwa Abashiya &#8211; <a href=\"https://wordpress.slack.com/team/UD5V51YSD\" target=\"_blank\" rel=\"noreferrer noopener\">@Hauwa Abashiya</a><br />Destiny Kanno &#8211; <a href=\"https://wordpress.slack.com/team/U02AZ6T2BRT\" target=\"_blank\" rel=\"noreferrer noopener\">@Destiny</a><br />Benjamin Evans &#8211; <a href=\"https://wordpress.slack.com/team/U0381D1Q1RU\" target=\"_blank\" rel=\"noreferrer noopener\">@Ben Evans</a><br />Jonathan Bossenger &#8211; <a href=\"https://wordpress.slack.com/team/U0AHNQ65V\" target=\"_blank\" rel=\"noreferrer noopener\">@Jonathan</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Nov 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: The Backstory of the New Woo Branding with David Callaway\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://dothewoo.io/the-backstory-of-the-new-woo-branding-with-david-callaway/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:398:\"<p>David Callaway from Woo.com joins BobWP as they take a deeper dive into the latest WooCommerce branding.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/the-backstory-of-the-new-woo-branding-with-david-callaway/\">The Backstory of the New Woo Branding with David Callaway</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Nov 2023 10:27:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: All Things WordPress 6.4 with Anne McCarthy and Bud Kraus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78565\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://dothewoo.io/all-things-wordpress-6-4-with-anne-mccarthy-and-bud-kraus/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:432:\"<p>Anne McCarthy and Bud Kraus join Abha for a chat about the earlier release of WordPress 6.4 filled with insights and experiences from all.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/all-things-wordpress-6-4-with-anne-mccarthy-and-bud-kraus/\">All Things WordPress 6.4 with Anne McCarthy and Bud Kraus</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Nov 2023 10:50:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"BuddyPress: BuddyPress 12.0.0 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=332047\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://buddypress.org/2023/11/buddypress-12-0-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5646:\"<p>The <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-RC1.zip\">first release candidate (RC1)</a> for BuddyPress 12.0.0 is now available!</p>\n\n\n\n<p><strong>This version of the BuddyPress software is a development version</strong>. Please do not install, run, or test this version of BuddyPress on production or mission-critical websites. Instead, it’s recommended that you evaluate 12.0.0-RC1 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains vital to ensure that everything in BuddyPress 12.0.0 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 12.0.0-RC1 in four ways:</p>\n\n\n\n<ul>\n<li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a>&nbsp;plugin.</li>\n\n\n\n<li><a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-RC1.zip\">Download the release candidate here (zip file)</a>.</li>\n\n\n\n<li>Check out our SVN repository:&nbsp;<code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li>\n\n\n\n<li>Clone our read-only Git repository:&nbsp;<code>git clone git://buddypress.git.wordpress.org/</code></li>\n</ul>\n\n\n\n<p>The current target for the BuddyPress 12.0.0 release is&nbsp;<strong>December 6, 2023</strong>. Get an overview of the&nbsp;<a href=\"https://buddypress.org/tag/12-0-0/\">12.0.0 release cycle</a>, and check the&nbsp;<a href=\"https://bpdevel.wordpress.com/\">BP Development updates blog</a>&nbsp;for&nbsp;<a href=\"https://bpdevel.wordpress.com/tag/12-0-0/\">12.0.0 related posts</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s new in 12.0.0-RC1 ?</h2>\n\n\n\n<ul>\n<li>We made three new improvements to the BP Nouveau template pack:\n<ul>\n<li>Member and Group loop entries are now more consistent (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9025\">#9025</a>)</li>\n\n\n\n<li>A group&#8217;s excerpt in a loop is now &#8220;really&#8221; truncating the Group&#8217;s description when it exceeds 225 characters (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9024\">#9024</a>).</li>\n\n\n\n<li>We have made the member&#8217;s cover header action buttons behave more consistently (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9023\">#9023</a>)</li>\n</ul>\n</li>\n\n\n\n<li>We also added other improvements to this template pack to welcome the <a href=\"https://wordpress.org/themes/twentytwentyfour/\">Twenty Twenty-Four</a> WordPress theme, including a new Priority Navigation feature (See <a href=\"https://buddypress.trac.wordpress.org/ticket/9030\">#9030</a>).</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">12.0.0 Highlights</h2>\n\n\n\n<h3 class=\"wp-block-heading\">The BP Rewrites API&nbsp;(a&nbsp;massive change!)</h3>\n\n\n\n<ul>\n<li>Site Administrators now have a full control over&nbsp;<strong>all</strong>&nbsp;BuddyPress-generated URLs. They can choose slugs (portions of URLs) that reflect their community, using localized language or special terms that are more meaningful to their members.&nbsp;<strong>All</strong>&nbsp;also means that URLs generated by third-party BuddyPress Add-ons using the BP Rewrites API will be editable.</li>\n\n\n\n<li>BuddyPress is fully compatible with plain URL permalinks.</li>\n\n\n\n<li>Parsing BuddyPress URLs is&nbsp;<strong>faster</strong>,&nbsp;<strong>more reliable, extensible, testable and fully compliant</strong>&nbsp;with WordPress best practices.</li>\n\n\n\n<li>Please note that if some of your BP plugins are not ready yet for this new API we have you covered thanks to this <a href=\"https://wordpress.org/plugins/bp-classic/\">backwards compatibility plugin</a>.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3 class=\"wp-block-heading\">A new community visibility level: Members only</h3>\n\n\n\n<p>Thanks to the BP Rewrites API, we were able to give site admins a choice as to whether their community should be fully public or only accessible by logged-in members. In future versions, we hope to add granularity to this choice, so that community administrators can choose to highlight their members but share activities only inside the community “gates” for example.&nbsp;</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>BuddyPress is open source software made possible by a community of people collaborating on and contributing to its development.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to developing the software and ensuring its quality. It’s also a meaningful way for anyone to contribute—whether you have coding experience or not.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can share it with us replying to this&nbsp;<a href=\"https://buddypress.org/support/topic/lets-prepare-the-buddypress-12-0-0-next-major-release/\">support topic</a>&nbsp;or if you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://buddypress.trac.wordpress.org/\">file one on BuddyPress Trac</a></em>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate BuddyPress</h3>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/\">Help us translate BuddyPress into as many languages as possible!</a>&nbsp;This release also marks the&nbsp;<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#string-freeze\">string freeze</a>&nbsp;point of the 12.0.0 release schedule.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Nov 2023 00:58:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 04 Jan 2024 17:00:36 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Thu, 04 Jan 2024 16:45:32 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20231106184314\";}','no'),(300413,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1704430835','no'),(300414,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1704387635','no'),(300415,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1704430836','no'),(300416,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\'>Leap into 2024 with these Site Editor Tools</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/12/episode-69-reflections-on-state-of-the-word/\'>WP Briefing: Episode 69: Reflections on State of the Word</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://akismet.com/blog/what-is-a-honeypot/\'>Akismet: What is a Honeypot in Spam Protection and Cybersecurity?</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2024/01/back-with-tim/\'>Matt: Back With Tim</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2024/01/birthday-gift/\'>Matt: Birthday Gift</a></li></ul></div>','no'),(300419,'_transient_timeout_mo_get_optin_ids_footer_display','1704391271','no'),(300420,'_transient_mo_get_optin_ids_footer_display','a:0:{}','no'),(300436,'_transient_timeout_wp_mail_logging_installed','1704395426','no'),(300437,'_transient_wp_mail_logging_installed','1','no'),(300439,'_transient_timeout_vgse_variation_meta_keys','1704393960','no'),(300440,'_transient_vgse_variation_meta_keys','a:0:{}','no'),(300449,'mo_wp_user_unsubscribers','a:0:{}','yes');
/*!40000 ALTER TABLE `wpj7_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_parcelpanel_courier`
--

DROP TABLE IF EXISTS `wpj7_parcelpanel_courier`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_parcelpanel_courier` (
  `code` varchar(191) NOT NULL DEFAULT '',
  `name` varchar(191) NOT NULL DEFAULT '',
  `country_code` char(4) NOT NULL DEFAULT '',
  `tel` varchar(50) NOT NULL DEFAULT '',
  `logo` varchar(191) NOT NULL DEFAULT '',
  `track_url` varchar(1000) NOT NULL DEFAULT '',
  `sort` smallint(6) NOT NULL DEFAULT 9999,
  `updated_at` int(10) unsigned NOT NULL DEFAULT 0,
  UNIQUE KEY `code` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_parcelpanel_courier`
--

LOCK TABLES `wpj7_parcelpanel_courier` WRITE;
/*!40000 ALTER TABLE `wpj7_parcelpanel_courier` DISABLE KEYS */;
INSERT INTO `wpj7_parcelpanel_courier` VALUES ('101iex','FT Exprss','','','https://cdn.parcelpanel.com/assets/common/images/express/101iex.png','http://www.101iex.com/',9999,1704193937),('13-ten','13ten','','0800 783 1310','https://cdn.parcelpanel.com/assets/common/images/express/13-ten.png','http://13ten-tracking.citipost.co.uk/publicsearch/',9999,1704193937),('139express','139 ECONOMIC Package','','+86 4000 666 139','https://cdn.parcelpanel.com/assets/common/images/express/139express.png','http://www.139express.com/Home/Search_Tracking',9999,1704193937),('168express','Antron Express','','','https://cdn.parcelpanel.com/assets/common/images/express/168express.png','http://123.58.5.229:8080/home.html',9999,1704193937),('17feia','17Feia Express','','400 8809976','https://cdn.parcelpanel.com/assets/common/images/express/17feia.png','http://www.17feia.com/',203,1704193937),('1dlexpress','1DL Express','','','https://cdn.parcelpanel.com/assets/common/images/express/1dlexpress.png','www.1dlexpress.com',198,1704193937),('1fkd','Yao Fei Kuai Di','','0731-84035888','https://cdn.parcelpanel.com/assets/common/images/express/1fkd.png','http://www.1fkd.com/',9999,1704193937),('1hcang','1hcang','','+86 0755-89391959','https://cdn.parcelpanel.com/assets/common/images/express/1hcang.png','http://www.1hcang.com/Tracking/Index?tracknos=******',9999,1704193937),('1shida','1SD','','','https://cdn.parcelpanel.com/assets/common/images/express/1shida.png','',216,1704193937),('2go','2GO','','(+632) 77-99-222','https://cdn.parcelpanel.com/assets/common/images/express/2go.png','https://www.parcel2go.com/tracking/******',217,1704193937),('2uex','2U Express','','1(347)506 0880','https://cdn.parcelpanel.com/assets/common/images/express/2uex.png','http://www.2uex.com/selectorder/******',9999,1704193937),('360lion','360lion Express','','+86 020-86534133','https://cdn.parcelpanel.com/assets/common/images/express/360lion.png','http://www.360lion.com/',99,1704193937),('360zebra','360zebra','','400-7200-400','https://cdn.parcelpanel.com/assets/common/images/express/360zebra.png','http://www.360zebra.com/en/tracking',9999,1704193937),('3jmslogistics','3JMS Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/3jmslogistics.png','https://3jmslogistics.com/',9999,1704193937),('4cus','4cus','','','https://cdn.parcelpanel.com/assets/common/images/express/4cus.png','https://www.4cus.com/wp-admin/admin-ajax.php',9999,1704193937),('4px','4PX','','0755-23508000','https://cdn.parcelpanel.com/assets/common/images/express/4px.png','https://track.4px.com/#/result/0/******',28,1704193937),('51aoyue','AoYue','','','https://cdn.parcelpanel.com/assets/common/images/express/51aoyue.png','http://www.51aoyue.com:8082/trackIndex.htm',9999,1704193937),('56net','MEI TAI','','','https://cdn.parcelpanel.com/assets/common/images/express/56net.png','http://www.56net.com/',9999,1704193937),('800best','Best Express(logistic)','','+86 400-8856-561','https://cdn.parcelpanel.com/assets/common/images/express/800best.png','http://www.800best.com/freight/track.asp',9999,1704193937),('816kf','XYL 816Kapro','','','https://cdn.parcelpanel.com/assets/common/images/express/816kf.png','http://816kf.kingtrans.cn/WebTrack',9999,1704193937),('8256ru','BEL','','+86 150-130-345-88','https://cdn.parcelpanel.com/assets/common/images/express/8256ru.png','http://8256.kingtrans.cn/WebTrack',216,1704193937),('8dt','EWS Profit Fields','','0755-29190008','https://cdn.parcelpanel.com/assets/common/images/express/8dt.png','http://www.8dt.com/track.html?order_no=******',194,1704193937),('8europe','8Europe','','+49 7251 72358','https://cdn.parcelpanel.com/assets/common/images/express/8europe.png','http://www.8europe.com',9999,1704193937),('99minutos','99minutos','','','https://cdn.parcelpanel.com/assets/common/images/express/99minutos.png','https://tracking.99minutos.com/search',199,1704193937),('a1post','A1 Post','','+359 888 00 78 00','https://cdn.parcelpanel.com/assets/common/images/express/a1post.png','https://a1post.bg/track.php',9999,1704193937),('aaacooper','AAA Cooper Transportation','','','https://cdn.parcelpanel.com/assets/common/images/express/aaacooper.png','https://www.aaacooper.com/Transit/ProTrackResults.aspx?ProNum=******',189,1704193937),('abf','ABF Freight','','+1 (800) 610-5544','https://cdn.parcelpanel.com/assets/common/images/express/abf.png','https://arcb.com/tools/tracking.html#/******',202,1704193937),('abxexpress-my','ABX Express','','+60 03-7711 6633','https://cdn.parcelpanel.com/assets/common/images/express/abxexpress-my.png','http://www.abxexpress.com.my/tracking.html',9999,1704193937),('acommerce','ACOMMERCE','','+62-21-2788-9210','https://cdn.parcelpanel.com/assets/common/images/express/acommerce.png','https://tracking.acommerce.asia/',9999,1704193937),('acscourier','ACS Courier','','+30 210 81 90 000','https://cdn.parcelpanel.com/assets/common/images/express/acscourier.png','https://www.acscourier.net/en/',214,1704193937),('act-logistics','ACT logistic','','','https://cdn.parcelpanel.com/assets/common/images/express/act-logistics.png','http://tracking.parcelperfect.com/login.php',9999,1704193937),('ada-post','AdaPost','','','https://cdn.parcelpanel.com/assets/common/images/express/ada-post.png','http://cn.ada-post.com/',9999,1704193937),('adico','Adico','','','https://cdn.parcelpanel.com/assets/common/images/express/adico.png','http://oms.adico-log.com/tracking?nos=******',9999,1704193937),('adsone','ADSOne','','+61(3) 8379 8201','https://cdn.parcelpanel.com/assets/common/images/express/adsone.png','https://tracking.icumulus.cloud/',9999,1704193937),('afghan-post','Afghan Post','','+93 20 210 1270','https://cdn.parcelpanel.com/assets/common/images/express/afghan-post.png','http://track.afghanpost.gov.af/en.php',9999,1704193937),('air-gtc','Canada Air Express','','','https://cdn.parcelpanel.com/assets/common/images/express/air-gtc.png','https://air-gtc.com/',9999,1704193937),('air21','AIR21','','+632 854-2100','https://cdn.parcelpanel.com/assets/common/images/express/air21.png','http://www.air21.com.ph/main/shipment-tracking.php',9999,1704193937),('airfex','Airfex','','+86 400-186-6365','https://cdn.parcelpanel.com/assets/common/images/express/airfex.png','http://www.airfex.net/track.aspx?o=******',9999,1704193937),('airpak-express','Airpak Express','','+60 03-7875 7768','https://cdn.parcelpanel.com/assets/common/images/express/airpak-express.png','https://tracking.airpak-express.com/tracking.aspx?stid=airpak&cn=000000000',174,1704193937),('airspeed','Airspeed International Corporation','','(632) 852-7328 / 37','https://cdn.parcelpanel.com/assets/common/images/express/airspeed.png','https://www.airspeed.com.ph/support.html',9999,1704193937),('airtranscourier','AIRTRANS','','+357 22 559 000','https://cdn.parcelpanel.com/assets/common/images/express/airtranscourier.png','https://login.airtranscourier.com/el/courier/voucher/Voucher.html',9999,1704193937),('airwings-india','Airwings Courier Express India','','+91-22-40051717','https://cdn.parcelpanel.com/assets/common/images/express/airwings-india.png','http://www.airwingsindia.com/tracking.aspx',9999,1704193937),('aj-ex','AJEX','','','https://cdn.parcelpanel.com/assets/common/images/express/aj-ex.png','https://www.aj-ex.com.cn/',9999,1704193937),('al8856','Ali Business Logistics','','400-666-1668','https://cdn.parcelpanel.com/assets/common/images/express/al8856.png','http://120.24.176.176:8082/trackIndex.htm',9999,1704193937),('aland-post','Aland Post','','358 18 6360','https://cdn.parcelpanel.com/assets/common/images/express/aland-post.png','https://www.alandpost.ax/en',9999,1704193937),('allekurier','allekurier','','+48 12 345 06 20','https://cdn.parcelpanel.com/assets/common/images/express/allekurier.png','https://allekurier.pl/sledzenie',9999,1704193937),('alliance','Alliance Air Freight & Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/alliance.png','http://204.93.158.163/WebtrakwtAAFL/ShipInquiry/ShipLookup.aspx?cmp=aafl',9999,1704193937),('alliedexpress','Allied Express','','','https://cdn.parcelpanel.com/assets/common/images/express/alliedexpress.png','https://www.alliedexpress.com.au/',9999,1704193937),('alljoy','Alljoy','','400-900-1982','https://cdn.parcelpanel.com/assets/common/images/express/alljoy.png','http://www.alljoylogistics.com/cx.php?id=1',217,1704193937),('alpha-fast','Alpha Fast','','+02 290 2800','https://cdn.parcelpanel.com/assets/common/images/express/alpha-fast.png','http://www.alphafast.com/th/track',9999,1704193937),('am-home-delivery','AM Home Delivery','','718-272-5900','https://cdn.parcelpanel.com/assets/common/images/express/am-home-delivery.png','http://www.amtrucking.com/track-number.php?cnumber=******',9999,1704193937),('amazon','Amazon Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/amazon.png','https://track.amazon.com/tracking/******',193,1704193937),('amazon-in','Amazon India','','','https://cdn.parcelpanel.com/assets/common/images/express/amazon-in.png','https://track.amazon.in/tracking/******',202,1704193937),('amazon-uk','Amazon UK','','','https://cdn.parcelpanel.com/assets/common/images/express/amazon-uk.png','https://track.amazon.co.uk/tracking/******',219,1704193937),('amsegroup','AMSEGROUP','','+61 2 9316 3200','https://cdn.parcelpanel.com/assets/common/images/express/amsegroup.png','http://eretail.amservices.net.au:8080/parceltracker.aspx',9999,1704193937),('amsma','Amsma Group','','','https://cdn.parcelpanel.com/assets/common/images/express/amsma.png','http://47.115.23.24:8080/kdguiji/zhu/******',9999,1704193937),('an-post','An Post','','(353) 01-7057600','https://cdn.parcelpanel.com/assets/common/images/express/an-post.png','https://www.anpost.com/',210,1704193937),('andorra-post','Andorra Post','','0810 821 821','https://cdn.parcelpanel.com/assets/common/images/express/andorra-post.png','https://www.laposte.fr/particulier/outils/suivre-vos-envois',9999,1704193937),('ane66','Ane Express','','40010-40088','https://cdn.parcelpanel.com/assets/common/images/express/ane66.png','http://www.ane56.com/search/waybilltrack.jsp',9999,1704193937),('angel','Angel','','','https://cdn.parcelpanel.com/assets/common/images/express/angel.png','https://angelbringts.de',9999,1704193937),('anicamboxexpress','Anicam Box Express','','','https://cdn.parcelpanel.com/assets/common/images/express/anicamboxexpress.png','https://www.anicamboxexpress.com/seguimiento/',9999,1704193937),('anjun','Anjun Logistics','','+86 400-999-6128','https://cdn.parcelpanel.com/assets/common/images/express/anjun.png','http://www.szanjuntrack.com/Szanjuntrack.asp',9999,1704193937),('annto','ANNTO','','400-000-0056','https://cdn.parcelpanel.com/assets/common/images/express/annto.png','https://www.annto.com/',9999,1704193937),('anserx','AnserX','','0755-2868-5256','https://cdn.parcelpanel.com/assets/common/images/express/anserx.png','http://www.anserx.com/',9999,1704193937),('anteparcel','Ant Eparcel','','','https://cdn.parcelpanel.com/assets/common/images/express/anteparcel.png','https://www.anteparcel.com/',9999,1704193937),('anteraja','Anteraja','','','https://cdn.parcelpanel.com/assets/common/images/express/anteraja.png','https://anteraja.id/tracking',9999,1704193937),('antilles-post','Antilles Post','','','https://cdn.parcelpanel.com/assets/common/images/express/antilles-post.png','http://www.cpostinternational.com/',9999,1704193937),('anxl','anxl','','','https://cdn.parcelpanel.com/assets/common/images/express/anxl.png','https://anxl.com.cn/anxlNews.action',9999,1704193937),('apc','APC Postal Logistics','','+1 (888) 413-7300','https://cdn.parcelpanel.com/assets/common/images/express/apc.png','https://www.apc-pli.com/apc-tracking-v2.html?id=******',126,1704193937),('aplus100','A PLUS EXPRESS','','1-917-682-5551','https://cdn.parcelpanel.com/assets/common/images/express/aplus100.png','http://en.aplus100.com/Waybills/Waybill/Query',9999,1704193937),('aprche','Aprche','','','https://cdn.parcelpanel.com/assets/common/images/express/aprche.png','http://post.aprche.net',9999,1704193937),('aramex','Aramex','','600-544000','https://cdn.parcelpanel.com/assets/common/images/express/aramex.png','https://www.aramex.com/track/results?ShipmentNumber=******',152,1704193937),('aramex-nz','Aramex NZ','','','https://cdn.parcelpanel.com/assets/common/images/express/aramex-nz.png','https://www.aramex.co.nz/tools/track?l=******',190,1704193937),('aramexau','Aramex AU','','','https://cdn.parcelpanel.com/assets/common/images/express/aramexau.png','https://www.aramex.com.au/',210,1704193937),('araskargo','Aras Kargo','','','https://cdn.parcelpanel.com/assets/common/images/express/araskargo.png','https://kargotakip.araskargo.com.tr/mainpage.aspx?code=******',9999,1704193937),('arkexpress','Ark express','','+61 3 9008 8899','https://cdn.parcelpanel.com/assets/common/images/express/arkexpress.png','http://www.arkexpress.com.au/cgi-bin/GInfo.dll?DispInfo&w=arkexpress&nid=8',9999,1704193937),('armenia-post','Armenia Post','','514-514','https://cdn.parcelpanel.com/assets/common/images/express/armenia-post.png','https://www.haypost.am/hy/track-and-trace',211,1704193937),('arrowxl','Arrow XL','','+44 800 015 1509','https://cdn.parcelpanel.com/assets/common/images/express/arrowxl.png','https://askaxl.co.uk/tracking?upi=0000000000&Postcode=000',9999,1704193937),('artlogexpress','Art Logexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/artlogexpress.png','http://artlogexpress.com/',9999,1704193937),('aruba-post','Aruba Post','','(+ 297) 528-7635','https://cdn.parcelpanel.com/assets/common/images/express/aruba-post.png','http://www.postaruba.com/',9999,1704193937),('ase','ASE','','','https://cdn.parcelpanel.com/assets/common/images/express/ase.png','https://tracking.ase.com.tr/en/cwb/',9999,1704193937),('asendia','Asendia','','','https://cdn.parcelpanel.com/assets/common/images/express/asendia.png','https://tracking.asendia.com',205,1704193937),('asendia-de','Asendia Germany','','+49 0800 18 17 000','https://cdn.parcelpanel.com/assets/common/images/express/asendia-de.png','https://www.asendia.de/tracking/',9999,1704193937),('asendia-hk','Asendia HK','','00852 2690 1005','https://cdn.parcelpanel.com/assets/common/images/express/asendia-hk.png','https://www.asendia.hk/cn/tracking/',9999,1704193937),('asendia-uk','Asendia UK','','0845 8738155','https://cdn.parcelpanel.com/assets/common/images/express/asendia-uk.png','https://www.asendia.co.uk/tracking/',9999,1704193937),('asendia-usa','Asendia USA','','+1 610 461 3661','https://cdn.parcelpanel.com/assets/common/images/express/asendia-usa.png','http://tracking.asendiausa.com/t.aspx?p=******',121,1704193937),('asendia-wmp','Asendia UK Premium','','','https://cdn.parcelpanel.com/assets/common/images/express/asendia-wmp.png','https://watchmyparcel.com/asendia',9999,1704193937),('asiafly','AsiaFly','','86-21-57746522 /57823692','https://cdn.parcelpanel.com/assets/common/images/express/asiafly.png','http://www.asiafly.com.cn/waybill.html',9999,1704193937),('asigna-es','Asigna ES','','','https://cdn.parcelpanel.com/assets/common/images/express/asigna-es.png','http://apps.asigna.es:8082/tracking/components/consulta.php?expedicion=******',9999,1704193937),('asmred','ASM (GLS Spain)','','','https://cdn.parcelpanel.com/assets/common/images/express/asmred.png','https://www.gls-spain.es/en/',9999,1704193937),('asyad','Asyad Express','','+96824506999','https://cdn.parcelpanel.com/assets/common/images/express/asyad.png','https://asyadexpress.com',9999,1704193937),('atlantic','Atlantic International Express','','+91 8899 117 117','https://cdn.parcelpanel.com/assets/common/images/express/atlantic.png','https://atlanticcourier.net/',9999,1704193937),('auexpress','Auexpress','','+61 2 8774 3488','https://cdn.parcelpanel.com/assets/common/images/express/auexpress.png','https://www.auexpress.com/order_track.php',9999,1704193937),('auodexpress','auodexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/auodexpress.png','',9999,1704193937),('aus','Ausworld Express','','02-87226088','https://cdn.parcelpanel.com/assets/common/images/express/aus.png','http://www.aus-express.com/Search.aspx',9999,1704193937),('auspost','Auspost','','+61 3 8847 9980','https://cdn.parcelpanel.com/assets/common/images/express/auspost.png','https://auspost.com.au/mypost/track/#/search',204,1704193937),('austa','Austa Internation','','','https://cdn.parcelpanel.com/assets/common/images/express/austa.png','http://www.austa.org.cn/',9999,1704193937),('australia-ems','Australia EMS','','61 3 8847 9045','https://cdn.parcelpanel.com/assets/common/images/express/australia-ems.png','https://auspost.com.au/mypost/track/#/search',192,1704193937),('australia-post','Australia Post','','+61 3 8847 9980','https://cdn.parcelpanel.com/assets/common/images/express/australia-post.png','https://auspost.com.au/mypost/track/#/search',41,1704193937),('austria-post','Austrian Post','','+43 800 010 100','https://cdn.parcelpanel.com/assets/common/images/express/austria-post.png','https://www.post.at/sendungsverfolgung.php',89,1704193937),('averittexpress','AVERITT Express','','','https://cdn.parcelpanel.com/assets/common/images/express/averittexpress.png','https://www.averittexpress.com/',9999,1704193937),('axlehire','AxleHire','','(855) 249-7447','https://cdn.parcelpanel.com/assets/common/images/express/axlehire.png','https://axlehire.com/',119,1704193937),('azerbaijan-post','Azerbaijan Post','','(012) 493-56-00','https://cdn.parcelpanel.com/assets/common/images/express/azerbaijan-post.png','http://www.azerpost.az/index.php?options=content&id=22',209,1704193937),('bab-ru','BAB international','','020-29836668','https://cdn.parcelpanel.com/assets/common/images/express/bab-ru.png','http://bab.kingtrans.cn/WebTrack',9999,1704193937),('bahrain-post','Bahrain Post','','8000 8001','https://cdn.parcelpanel.com/assets/common/images/express/bahrain-post.png','http://www.bahrain.bh/',9999,1704193937),('bangladesh-ems','Bangladesh EMS','','9558006','https://cdn.parcelpanel.com/assets/common/images/express/bangladesh-ems.png','http://www.bangladeshpost.gov.bd/',9999,1704193937),('baoxianda','baoxianda','','','https://cdn.parcelpanel.com/assets/common/images/express/baoxianda.png','',9999,1704193937),('barbados-post','Barbados Post','','+1 (246) 436-4800','https://cdn.parcelpanel.com/assets/common/images/express/barbados-post.png','http://www.bps.gov.bb/',9999,1704193937),('bartolini','BRT Bartolini','','+39 011 397 411 1','https://cdn.parcelpanel.com/assets/common/images/express/bartolini.png','https://as777.brt.it/vas/sped_numspe_par.htm',84,1704193937),('bee','Bee Express','','+66 020585555','https://cdn.parcelpanel.com/assets/common/images/express/bee.png','https://www.bee-express.com/waybill/',9999,1704193937),('beebird','Beebird Logistics','','+61 (0)8 6197 7017','https://cdn.parcelpanel.com/assets/common/images/express/beebird.png','https://beebird.com.au/tracking',9999,1704193937),('bejotlogistics','Bejot Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/bejotlogistics.png','https://bejotlogistics.com/order/tracking/******',9999,1704193937),('belgium-post','Bpost','','+32 2 276 22 74','https://cdn.parcelpanel.com/assets/common/images/express/belgium-post.png','http://www.bpost2.be/bpostinternational/track_trace/find.php?search=s&lng=en&trackcode=******',96,1704193937),('belize-post','Belize Post','','+501 227-2201','https://cdn.parcelpanel.com/assets/common/images/express/belize-post.png','http://www.belizepostalservice.gov.bz',9999,1704193937),('belpochta','Belarus Post','','+375 17 293 59 10','https://cdn.parcelpanel.com/assets/common/images/express/belpochta.png','https://webservices.belpost.by/searchEn.aspx?search=******',96,1704193937),('benin-post','Benin Post','','229-213-13888','https://cdn.parcelpanel.com/assets/common/images/express/benin-post.png','http://courrier.laposte.bj/IPSWebTracking/',9999,1704193937),('bermuda-post','Bermuda Post','','441.297.7893','https://cdn.parcelpanel.com/assets/common/images/express/bermuda-post.png','http://www.bpo.bm/track_and_trace.aspx?AspXPage=******',9999,1704193937),('best-my','BEST Express (Malaysia)','','1800-22-8881','https://cdn.parcelpanel.com/assets/common/images/express/best-my.png','https://www.best-inc.my/track?bills=******',9999,1704193937),('best-th','Best Express (TH)','','','https://cdn.parcelpanel.com/assets/common/images/express/best-th.png','https://www.best-inc.co.th/track?bills=******',9999,1704193937),('bestex','Best Express','','+86 4009 565656','https://cdn.parcelpanel.com/assets/common/images/express/bestex.png','http://www.800bestex.com/Bill/Track',9999,1704193937),('bettertrucks','Better Trucks','','(773) 217-8810','https://cdn.parcelpanel.com/assets/common/images/express/bettertrucks.png','https://www.bettertrucks.com/',61,1704193937),('bf-lg','Bf-Lg','','021-59981173','https://cdn.parcelpanel.com/assets/common/images/express/bf-lg.png','http://www.bf-lg.com/',9999,1704193937),('bh-posta','BH Posta','','','https://cdn.parcelpanel.com/assets/common/images/express/bh-posta.png','https://www.posta.ba/',9999,1704193937),('bhutan-post','Bhutan Post','','+975 02334444','https://cdn.parcelpanel.com/assets/common/images/express/bhutan-post.png','http://202.144.143.120:8080/dts/TrackMail',9999,1704193937),('birdsystem','BIRD SYSTEM LTD','','0755-61882187','https://cdn.parcelpanel.com/assets/common/images/express/birdsystem.png','https://www.birdsystem.co.uk/site/index/tracking',9999,1704193937),('biz-courier','Biz Courier','','+30 211 71 01 466','https://cdn.parcelpanel.com/assets/common/images/express/biz-courier.png','https://trackit.bizcourier.eu/app/en/******',194,1704193937),('bjytsywl','BJYTSYWL','','010-57412584','https://cdn.parcelpanel.com/assets/common/images/express/bjytsywl.png','http://www.bjytsywl.com/',9999,1704193937),('blexpress','blexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/blexpress.png','http://159.75.33.28:8082/trackIndex.htm',9999,1704193937),('bljt56','BAI LE JIE TONG','','0577-65191999','https://cdn.parcelpanel.com/assets/common/images/express/bljt56.png','http://www.bljt56.com/BLJT/bljt.html',9999,1704193937),('blue-leopard','Blue Leopard','','','https://cdn.parcelpanel.com/assets/common/images/express/blue-leopard.png','https://www.lb-56.com/',202,1704193937),('bluecare','Bluecare Express','','','https://cdn.parcelpanel.com/assets/common/images/express/bluecare.png','https://bluecare.express/',217,1704193937),('bluedart','Bluedart','','1860 233 1234','https://cdn.parcelpanel.com/assets/common/images/express/bluedart.png','https://www.bluedart.com/web/guest/tracking',50,1704193937),('blueskyexpress','Blue Sky Express','','4008886890','https://cdn.parcelpanel.com/assets/common/images/express/blueskyexpress.png','http://198.11.173.181:8888/cgi-bin/GInfo.dll?EmmisTrack',146,1704193937),('bnexp','Bona','','','https://cdn.parcelpanel.com/assets/common/images/express/bnexp.png','http://post.aprche.net/EN/',9999,1704193937),('bombax','Bombax','','+91 9555 684 684','https://cdn.parcelpanel.com/assets/common/images/express/bombax.png','https://bombax.in/?ConsignmentNo=******',9999,1704193937),('bombino-express','Bombino Express','','','https://cdn.parcelpanel.com/assets/common/images/express/bombino-express.png','https://bombinoexp.in/track.aspx?AwbNo=******',201,1704193937),('bondscouriers','Bonds Couriers','','+61 1300-369-300','https://cdn.parcelpanel.com/assets/common/images/express/bondscouriers.png','http://www.bondscouriers.com.au/bondsweb/track-job.htm',9999,1704193937),('border-express','Border Express','','','https://cdn.parcelpanel.com/assets/common/images/express/border-express.png','https://www.borderexpress.com.au/tracking/?cn=******',217,1704193937),('bosnia-and-herzegovina-post','Bosnia And Herzegovina Post','','033 252 613','https://cdn.parcelpanel.com/assets/common/images/express/bosnia-and-herzegovina-post.png','http://www.posta.ba//en/track-trace-2/',9999,1704193937),('botswana-post','Botswana Post','','+267 368 1000','https://cdn.parcelpanel.com/assets/common/images/express/botswana-post.png','http://www.botspost.co.bw/',9999,1704193937),('boxberry','Boxberry','','8-499-391-56-22','https://cdn.parcelpanel.com/assets/common/images/express/boxberry.png','https://boxberry.ru',138,1704193937),('boxc','Boxc Logistics','','+1 (646) 968-0080','https://cdn.parcelpanel.com/assets/common/images/express/boxc.png','https://www.boxc.com',209,1704193937),('bqc','BQC','','+86 0755-2222 2232','https://cdn.parcelpanel.com/assets/common/images/express/bqc.png','http://www.1001000.com/newwl/page/queryTrack',9999,1704193937),('brazil-correios','Brazil Correios','','55 61 3003 0100','https://cdn.parcelpanel.com/assets/common/images/express/brazil-correios.png','http://www.correios.com.br/',43,1704193937),('bri-ems','Bridge','','','https://cdn.parcelpanel.com/assets/common/images/express/bri-ems.png','https://www.bri-ems.com/query',9999,1704193937),('bring','Bring','','','https://cdn.parcelpanel.com/assets/common/images/express/bring.png','https://tracking.bring.com/tracking/api/fetch/******?lang=en',9999,1704193937),('brunei-post','Brunei Post','','673-2382888','https://cdn.parcelpanel.com/assets/common/images/express/brunei-post.png','http://www.post.gov.bn/SitePages/TrackItems.aspx',9999,1704193937),('bsi','BSI express','','4006 5868 22','https://cdn.parcelpanel.com/assets/common/images/express/bsi.png','https://www.deppon.com/newwebsite/track/ordertrack',9999,1704193937),('bt-exp','LJS','','0755-29987897','https://cdn.parcelpanel.com/assets/common/images/express/bt-exp.png','http://115.29.184.71:8082/trackIndex.htm',9999,1704193937),('btd56','Bao Tongda Freight Forwarding','','','https://cdn.parcelpanel.com/assets/common/images/express/btd56.png','http://www.btd56.com/cgi-bin/GInfo.dll?EmmisTrack',183,1704193937),('buffaloex','Buffalo','','+86 400-921-9066','https://cdn.parcelpanel.com/assets/common/images/express/buffaloex.png','http://index.buffaloex.com/express/record/******?language=en',156,1704193937),('buffaloex-za','BUFFALO ZA','','','https://cdn.parcelpanel.com/assets/common/images/express/buffaloex-za.png','https://www.buffaloex.co.za/track.html',9999,1704193937),('bulgaria-post','Bulgaria Post','','3592 949 3130','https://cdn.parcelpanel.com/assets/common/images/express/bulgaria-post.png','http://www.bgpost.bg/IPSWebTracking/IPSWeb_item_events.asp?itemid=******&submit=Track',9999,1704193937),('burundi-post','Burundi Post','','(257) 22 32 51','https://cdn.parcelpanel.com/assets/common/images/express/burundi-post.png','http://www.poste.bi/index.php?searchword=******&ordering=&searchphrase=all&Itemid=1&option=com_search&lang=en',9999,1704193937),('cacesapostal','Cacesa Postal','','','https://cdn.parcelpanel.com/assets/common/images/express/cacesapostal.png','https://www.cacesapostal.com/Tracking?q=******',153,1704193937),('cainiao','AliExpress Standard Shipping','','9519656','https://cdn.parcelpanel.com/assets/common/images/express/cainiao.png','https://global.cainiao.com/detail.htm?mailNoList=******&spm=a3708.7860688.0.d01',22,1704193937),('cambodia-post','Cambodia Post','','+855 23 723 51','https://cdn.parcelpanel.com/assets/common/images/express/cambodia-post.png','http://www.cambodiapost.com.kh/',9999,1704193937),('campost','Cameroon Post','','237 222 23 21 36','https://cdn.parcelpanel.com/assets/common/images/express/campost.png','http://tracking.campost.cm/',9999,1704193937),('canada-post','Canada Post','','1 866 607 6301','https://cdn.parcelpanel.com/assets/common/images/express/canada-post.png','https://www.canadapost.ca/trackweb/en#/search?searchFor=******',40,1704193937),('canpar','Canpar Courier','','1-800-387-9335','https://cdn.parcelpanel.com/assets/common/images/express/canpar.png','http://www.canpar.ca/en/track/TrackingAction.do?locale=en&type=0&reference=******',123,1704193937),('cargointl-de','Cargo International','','','https://cdn.parcelpanel.com/assets/common/images/express/cargointl-de.png','https://www.cargointernational.de/sendungsverfolgung/tracking/******',9999,1704193937),('cargus','cargus','','','https://cdn.parcelpanel.com/assets/common/images/express/cargus.png','https://app.urgentcargus.ro/Private/Tracking.aspx',9999,1704193937),('caribou','CARIBOU','','','https://cdn.parcelpanel.com/assets/common/images/express/caribou.png','https://track.wearecaribou.com',9999,1704193937),('cbl-logistica','CBL Logistics','','+34902887887','https://cdn.parcelpanel.com/assets/common/images/express/cbl-logistica.png','http://en.clientes.cbl-logistica.com/login.aspx?lang=sel',9999,1704193937),('cbtsd','Better Express','','+86 4008-782-116','https://cdn.parcelpanel.com/assets/common/images/express/cbtsd.png','http://szbt.kingtrans.cn/WebTrack',9999,1704193937),('cdek','CDEK Express','','8 800 250-14-05','https://cdn.parcelpanel.com/assets/common/images/express/cdek.png','https://www.cdek.ru/ru/tracking?order_id=******',218,1704193937),('cdek-tr','CDEK Turkey','','','https://cdn.parcelpanel.com/assets/common/images/express/cdek-tr.png','https://www.cdek.com.tr/en',9999,1704193937),('cdl','cdl','','','https://cdn.parcelpanel.com/assets/common/images/express/cdl.png','https://ship.cdldelivers.com/Xcelerator/Tracking/Tracking?orderId=******',93,1704193937),('celeritastransporte','Celeritas Transporte','','','https://cdn.parcelpanel.com/assets/common/images/express/celeritastransporte.png','https://celeritastransporte.com/',9999,1704193937),('cess','Cess','','+86 4001 111 123','https://cdn.parcelpanel.com/assets/common/images/express/cess.png','http://www.gto365.com/#/waybill',9999,1704193937),('ceva-logistics','CEVA Logistics','','+1-800-888-4949','https://cdn.parcelpanel.com/assets/common/images/express/ceva-logistics.png','https://www.cevalogistics.com/en/ceva-trak?transport_mode=all&codes=******',214,1704193937),('cgs-express','CGS Express','','','https://cdn.parcelpanel.com/assets/common/images/express/cgs-express.png','http://www.cgs-express.com:8082/trackIndex.htm',9999,1704193937),('changjiangexpress','ChangJiang Express','','','https://cdn.parcelpanel.com/assets/common/images/express/changjiangexpress.png','',9999,1704193937),('chengfeng','SY Express','','','https://cdn.parcelpanel.com/assets/common/images/express/chengfeng.png','http://www.chengfengexpress.com/default/index/get-track-detail',9999,1704193937),('china-ems','China EMS','','0086-11183','https://cdn.parcelpanel.com/assets/common/images/express/china-ems.png','http://www.ems.com.cn/',162,1704193937),('china-post','China Post','','86 20 11185','https://cdn.parcelpanel.com/assets/common/images/express/china-post.png','http://yjcx.chinapost.com.cn/qps/yjcx',26,1704193937),('china-russia56','China Russia56','','+86 020 36297280','https://cdn.parcelpanel.com/assets/common/images/express/china-russia56.png','http://www.china-russia56.com/Search.asp',9999,1704193937),('chinapost-cb','China Post E-commerce','','+852 3575 8366','https://cdn.parcelpanel.com/assets/common/images/express/chinapost-cb.png','http://www.chinapost-cb.com/',9999,1704193937),('chinastarlogistics','ChinaStarLogistics','','(010)53500788 010-69450017','https://cdn.parcelpanel.com/assets/common/images/express/chinastarlogistics.png','http://www.chinastarlogistics.com/',9999,1704193937),('chinz56','Chinz Logistics','','09-8372888','https://cdn.parcelpanel.com/assets/common/images/express/chinz56.png','http://www.chinz56.co.nz/cgi-bin/GInfo.dll?DispInfo&w=chinz56&nid=12',9999,1704193937),('chitchats','Chit Chats','','','https://cdn.parcelpanel.com/assets/common/images/express/chitchats.png','https://chitchats.com/tracking/******',207,1704193937),('choice','CHOICE Logistics','','400 613 8844','https://cdn.parcelpanel.com/assets/common/images/express/choice.png','http://en.choicexp.com/',9999,1704193937),('chronopost','Chronopost','','0969 391 391','https://cdn.parcelpanel.com/assets/common/images/express/chronopost.png','https://www.chronopost.fr/en/private/track-your-parcel',104,1704193937),('chronopost-portugal','Chronopost Portugal(DPD)','','+351 707 45 28 28','https://cdn.parcelpanel.com/assets/common/images/express/chronopost-portugal.png','https://chronopost.pt/en/node/167',9999,1704193937),('cht361','CHT','','0755-23459202','https://cdn.parcelpanel.com/assets/common/images/express/cht361.png','http://www.cht361.com/',9999,1704193937),('chukou1','Chukou1 Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/chukou1.png','http://www.chukou1.com/LogistictsTrack.aspx?trackNo=******',172,1704193937),('cirroparcel','CIRRO','','','https://cdn.parcelpanel.com/assets/common/images/express/cirroparcel.png','https://www.cirroparcel.com/en/tracking-results/?id=******&year=2023',179,1704193937),('citisprint','Citisprint','','(021) 511 3105','https://cdn.parcelpanel.com/assets/common/images/express/citisprint.png','https://www.citisprint.co.za/track-your-parcel/',9999,1704193937),('cititrans','cititrans','','＋86 755-82143174','https://cdn.parcelpanel.com/assets/common/images/express/cititrans.png','http://www.cititrans.com/',9999,1704193937),('citylinkexpress','City-Link Express','','+603-5033 3800','https://cdn.parcelpanel.com/assets/common/images/express/citylinkexpress.png','http://www.citylinkexpress.com/',9999,1704193937),('cj-dropshipping','CJ Packet','','1(909) 809-1104','https://cdn.parcelpanel.com/assets/common/images/express/cj-dropshipping.png','https://cjpacket.com?trackingNumber=******',39,1704193937),('cjlogistics','CJ Logistics Global','','','https://cdn.parcelpanel.com/assets/common/images/express/cjlogistics.png','https://mysgnexs.cjlogistics-global.com/web/g_tracking_eng.jsp?slipno=******',9999,1704193937),('cjpacket','Cjpacket','','','https://cdn.parcelpanel.com/assets/common/images/express/cjpacket.png','https://cjpacket.com/',214,1704193937),('clevy-links','Clevy Links','','','https://cdn.parcelpanel.com/assets/common/images/express/clevy-links.png','https://www.ship24.com/tracking?p=******',9999,1704193937),('cmkexpress','CMK','','18118780359','https://cdn.parcelpanel.com/assets/common/images/express/cmkexpress.png','https://cmk.itdida.com//query.xhtml',180,1704193937),('cndexpress','CND Express','','15915349554','https://cdn.parcelpanel.com/assets/common/images/express/cndexpress.png','http://www.cndexpress.com?******',9999,1704193937),('cnexps','CNE Express','','86 400 021 5600','https://cdn.parcelpanel.com/assets/common/images/express/cnexps.png','https://www.cne.com/English/?no=******',30,1704193937),('cnilink','CNILINK','','+86-0755-2321 7846','https://cdn.parcelpanel.com/assets/common/images/express/cnilink.png','http://www.cnilink.com/chTrace.html',9999,1704193937),('cnpex','Cnpex','','130 007 9988','https://cdn.parcelpanel.com/assets/common/images/express/cnpex.png','http://www.cnpex.com.au/',9999,1704193937),('coe','COE','','+86-755-83575000','https://cdn.parcelpanel.com/assets/common/images/express/coe.png','http://www.coe.com.hk/query',9999,1704193937),('colicoli','Colicoli','','','https://cdn.parcelpanel.com/assets/common/images/express/colicoli.png','https://www.colicoli.fr/tracking?trackingNumber=******',160,1704193937),('colis-prive','Colis Prive','','+33 0826 82 83 84','https://cdn.parcelpanel.com/assets/common/images/express/colis-prive.png','https://www.colisprive.fr/',46,1704193937),('colissimo','Colissimo(La Poste)','','','https://cdn.parcelpanel.com/assets/common/images/express/colissimo.png','https://www.laposte.fr/outils/suivre-vos-envois?code=******',64,1704193937),('collectplus','Collect+','','+44 1923 601616','https://cdn.parcelpanel.com/assets/common/images/express/collectplus.png','https://www.collectplus.co.uk/track/******',9999,1704193937),('collivery','collivery','','','https://cdn.parcelpanel.com/assets/common/images/express/collivery.png','https://collivery.net/tracking',9999,1704193937),('colombia-post','Colombia Post','','(57-1) 4722000','https://cdn.parcelpanel.com/assets/common/images/express/colombia-post.png','http://www.4-72.com.co/',217,1704193937),('com1express','ComOne Express','','','https://cdn.parcelpanel.com/assets/common/images/express/com1express.png','http://www.com1logistics.com/tracking.html?trackNo=******',218,1704193937),('cometcourier','Comet Hellas','','+30 210 514 0826','https://cdn.parcelpanel.com/assets/common/images/express/cometcourier.png','https://www.comethellas.gr',9999,1704193937),('comethellas','Comet Hellas','','+30 210 514 0826','https://cdn.parcelpanel.com/assets/common/images/express/comethellas.png','https://www.comethellas.gr',9999,1704193937),('comexpress','COMPASS EXPRESS','','＋1-647 340 1588','https://cdn.parcelpanel.com/assets/common/images/express/comexpress.png','http://comexpress.ca/index.aspx',9999,1704193937),('con-way','Con-way Freight','','+1 800 426-6929','https://cdn.parcelpanel.com/assets/common/images/express/con-way.png','https://app.ltl.xpo.com/appjs/tracking/#/tracking',9999,1704193937),('connect-co','ConnectCo','','+94 (11) 714-52-45','https://cdn.parcelpanel.com/assets/common/images/express/connect-co.png','https://connectcoapps.lk/tracking/******',9999,1704193937),('coordinadora','Coordinadora','','','https://cdn.parcelpanel.com/assets/common/images/express/coordinadora.png','https://www.coordinadora.com/',218,1704193937),('correios-cabo-verde','Correios Cabo Verde','','(238) 800 10 09','https://cdn.parcelpanel.com/assets/common/images/express/correios-cabo-verde.png','http://www.correios.cv/index.aspx?id_ferramenta=1775',9999,1704193937),('correo-argentino','Argentina Post','','(011) 4891-9191','https://cdn.parcelpanel.com/assets/common/images/express/correo-argentino.png','https://www.correoargentino.com.ar/formularios/oidn',219,1704193937),('correo-paraguayo','Paraguay Post','','(595 21) 498-112/16','https://cdn.parcelpanel.com/assets/common/images/express/correo-paraguayo.png','http://www.correoparaguayo.gov.py/index.php/rastreo/rastreo-de-envios-internacionales',9999,1704193937),('correo-uy','Correo Uruguayo','','','https://cdn.parcelpanel.com/assets/common/images/express/correo-uy.png','https://ahiva.correo.com.uy/servicioConsultaTntIps-wsWeb/seguimientoEnvios/eventosweb?codigoPieza=******&retry=433',9999,1704193937),('correos-bolivia','Bolivia Post','','(591) 2374144','https://cdn.parcelpanel.com/assets/common/images/express/correos-bolivia.png','http://www.correosbolivia.com/',9999,1704193937),('correos-del-ecuador','Ecuador Post','','(593-2) 3829210','https://cdn.parcelpanel.com/assets/common/images/express/correos-del-ecuador.png','https://www.correosdelecuador.gob.ec/rastreo-de-envios/',9999,1704193937),('correos-mexico','Mexico Post','','(55) 5340 3300','https://cdn.parcelpanel.com/assets/common/images/express/correos-mexico.png','https://www.correosdemexico.gob.mx/SSLServicios/SeguimientoEnvio/Seguimiento.aspx',218,1704193937),('correos-panama','Panama Post','','+ (507) 512-7601','https://cdn.parcelpanel.com/assets/common/images/express/correos-panama.png','http://www.correospanama.gob.pa/index.php?option=com_wrapper&view=wrapper&Itemid=70',9999,1704193937),('correos-spain','Correos Spain','','+34 902197197','https://cdn.parcelpanel.com/assets/common/images/express/correos-spain.png','https://www.correos.es/ss/Satellite/site/aplicacion-4000003383089-inicio/detalle_app-sidioma=es_ES?numero=0000',79,1704193937),('correosexpress','Correos Express','','902 1 22 333','https://cdn.parcelpanel.com/assets/common/images/express/correosexpress.png','https://s.correosexpress.com/SeguimientoSinCP/home',154,1704193937),('cosco','COSCO eGlobal','','','https://cdn.parcelpanel.com/assets/common/images/express/cosco.png','https://lines.coscoshipping.com/home/',9999,1704193937),('cosex','Cosex','','+86 18157771790','https://cdn.parcelpanel.com/assets/common/images/express/cosex.png','http://www.cosex.cn/logisticsInquiry',9999,1704193937),('costmeticsnow','Cosmetics Now','','','https://cdn.parcelpanel.com/assets/common/images/express/costmeticsnow.png','https://www.cosmeticsnow.com/',9999,1704193937),('courant-plus','Courant','','','https://cdn.parcelpanel.com/assets/common/images/express/courant-plus.png','https://track.aftership.com/trackings?courier=courant-plus&language=fr&tracking-numbers=******',9999,1704193937),('courier-center','Courier Center','','','https://cdn.parcelpanel.com/assets/common/images/express/courier-center.png','https://www.courier.gr/track/result',9999,1704193937),('courier-it','Courier IT','','+27 21 555 6777','https://cdn.parcelpanel.com/assets/common/images/express/courier-it.png','http://www.courierit.co.za/',9999,1704193937),('courierpost','CourierPost','','+64 9 367 9710','https://cdn.parcelpanel.com/assets/common/images/express/courierpost.png','http://trackandtrace.courierpost.co.nz/search/******',9999,1704193937),('couriers-please','Couriers Please express','','+61 1300 361 000','https://cdn.parcelpanel.com/assets/common/images/express/couriers-please.png','https://www.couriersplease.com.au/tools/track',101,1704193937),('cpex','CPEX','','','https://cdn.parcelpanel.com/assets/common/images/express/cpex.png','https://carry-flap.com/',9999,1704193937),('cpszy','CPSZY','','','https://cdn.parcelpanel.com/assets/common/images/express/cpszy.png','http://www.cpszy.com/trace.html?sn=******',9999,1704193937),('crane-etowertech','Crane Worldwide Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/crane-etowertech.png','https://crane.etowertech.com/home',9999,1704193937),('crazyexpress','Crazy Express','','647-297-1888','https://cdn.parcelpanel.com/assets/common/images/express/crazyexpress.png','http://www.crazyexpress.ca/',9999,1704193937),('cre','CRE','','+86 95572','https://cdn.parcelpanel.com/assets/common/images/express/cre.png','http://www.cre.cn/selfSearch.html',9999,1704193937),('csd','CSD Express','','13751351357','https://cdn.parcelpanel.com/assets/common/images/express/csd.png','http://www.csdexpress.com',9999,1704193937),('cse','CSE','','','https://cdn.parcelpanel.com/assets/common/images/express/cse.png','https://cse.ru/track.php',9999,1704193937),('ctc-express','CTC Express','','','https://cdn.parcelpanel.com/assets/common/images/express/ctc-express.png','http://www.ctc-express.com.tw/',9999,1704193937),('ctt','Portugal CTT','','(351) 707262626','https://cdn.parcelpanel.com/assets/common/images/express/ctt.png','https://www.ctt.pt/feapl_2/app/open/objectSearch/objectSearch.jspx?objects=******',78,1704193937),('ctt-express','CTT Express','','','https://cdn.parcelpanel.com/assets/common/images/express/ctt-express.png','https://www.ctt.pt/feapl_2/app/open/objectSearch/objectSearch.jspx?objects=******',142,1704193937),('cuba-post','Cuba Post','','','https://cdn.parcelpanel.com/assets/common/images/express/cuba-post.png','http://www.correos.cu/rastreador-de-envios/',9999,1704193937),('cubyn','Cubyn','','','https://cdn.parcelpanel.com/assets/common/images/express/cubyn.png','https://www.cubyn.com/',85,1704193937),('cxc','CXC','','31010888','https://cdn.parcelpanel.com/assets/common/images/express/cxc.png','http://cxc.com.hk/tracking/',9999,1704193937),('cy-express','CY Epxress','','','https://cdn.parcelpanel.com/assets/common/images/express/cy-express.png','http://www.cy-express.com/',9999,1704193937),('cyprus-post','Cyprus Post','','77778013/0035722805745','https://cdn.parcelpanel.com/assets/common/images/express/cyprus-post.png','https://www.cypruspost.post/el/track-n-trace-results',212,1704193937),('czech-post','Czech Post','','420 954 292 102','https://cdn.parcelpanel.com/assets/common/images/express/czech-post.png','https://www.postaonline.cz/trackandtrace/-/zasilka/cislo?parcelNumbers=******',213,1704193937),('dachser','Dachser','','+49 831 5916 0','https://cdn.parcelpanel.com/assets/common/images/express/dachser.png','https://elogistics.dachser.com',212,1704193937),('daipost','DAI Post','','','https://cdn.parcelpanel.com/assets/common/images/express/daipost.png','https://www.daipost.com/',9999,1704193937),('dao365','DAO365','','','https://cdn.parcelpanel.com/assets/common/images/express/dao365.png','https://www.dao.as/en/private/track-your-parcel?stregkode=******',212,1704193937),('dawn-wing','Dawn Wing','','+27 0861 223 224','https://cdn.parcelpanel.com/assets/common/images/express/dawn-wing.png','http://www.dawnwing.co.za/business-tools/online-parcel-tracking/',9999,1704193937),('dayonetrack','Day One Track','','','https://cdn.parcelpanel.com/assets/common/images/express/dayonetrack.png','http://dayonetrack.com/search_order.aspx?trackNumber=******',42,1704193937),('dayross','Day & Ross','','','https://cdn.parcelpanel.com/assets/common/images/express/dayross.png','https://dayross.com/view-shipment-tracking?division=Freight',183,1704193937),('dbschenker','DB Schenker','','','https://cdn.parcelpanel.com/assets/common/images/express/dbschenker.png','https://www.dbschenker.com/',9999,1704193937),('ddexpress','DD Express','','+603-74997232','https://cdn.parcelpanel.com/assets/common/images/express/ddexpress.png','https://dd.express/',9999,1704193937),('dealfy','Dealfy','','','https://cdn.parcelpanel.com/assets/common/images/express/dealfy.png','https://track.dealfy.com/#/track-order?trackingStr=******',9999,1704193937),('decnlh','decnlh','','','https://cdn.parcelpanel.com/assets/common/images/express/decnlh.png','http://www.decnlh.com/',9999,1704193937),('dekun','Dekun','','+86 400-830-8686','https://cdn.parcelpanel.com/assets/common/images/express/dekun.png','http://www.dekuncn.com/goods-num_1324657987.html',9999,1704193937),('delcart-in','Delcart','','+1 (800) 3000-2622','https://cdn.parcelpanel.com/assets/common/images/express/delcart-in.png','http://www.delcart.in/tracking_details_3.php',9999,1704193937),('delhivery','Delhivery','','+91 (124) 6719500','https://cdn.parcelpanel.com/assets/common/images/express/delhivery.png','https://www.delhivery.com/',82,1704193937),('dellin','Dellin','','','https://cdn.parcelpanel.com/assets/common/images/express/dellin.png','https://www.dellin.ru/tracker/',9999,1704193937),('delnext','Delnext','','707 019 368','https://cdn.parcelpanel.com/assets/common/images/express/delnext.png','https://www.delnext.com/',9999,1704193937),('deltafille','Trending Times','','909-529-0472','https://cdn.parcelpanel.com/assets/common/images/express/deltafille.png','www.trendingtimes.net',9999,1704193937),('deltec-courier','Deltec Courier','','+44 20 8569 6767','https://cdn.parcelpanel.com/assets/common/images/express/deltec-courier.png','https://www.deltec-courier.com/services/track-and-trace',9999,1704193937),('denmark-post','Denmark post','','+45 70 70 70 30','https://cdn.parcelpanel.com/assets/common/images/express/denmark-post.png','https://www.postnord.dk/en/track-and-trace#dynamicloading=true&shipmentid=******',87,1704193937),('deppon','DEPPON','','+86 95353','https://cdn.parcelpanel.com/assets/common/images/express/deppon.png','https://www.deppon.com/newwebsite/track/ordertrack',9999,1704193937),('deutsche-post','Deutsche Post','','0228 4333118','https://cdn.parcelpanel.com/assets/common/images/express/deutsche-post.png','https://www.deutschepost.de/sendung/simpleQuery.html',51,1704193937),('dex-i','DEX-I','','+86 20 66854050','https://cdn.parcelpanel.com/assets/common/images/express/dex-i.png','http://www.dex-i.com/',9999,1704193937),('dfglobalex','dfglobalex','','','https://cdn.parcelpanel.com/assets/common/images/express/dfglobalex.png','http://www.dfglobalex.com/SelectOrder.htm?order=******',9999,1704193937),('dg-transporte','DG Transporte','','','https://cdn.parcelpanel.com/assets/common/images/express/dg-transporte.png','https://www.dg-transporte.de/',9999,1704193937),('dhl','DHL','','1-800-225-5345','https://cdn.parcelpanel.com/assets/common/images/express/dhl.png','http://www.dhl.com/en/express/tracking.html?brand=DHL&AWB=******',37,1704193937),('dhl-active','DHL Active Tracing','','+1 2400 3388','https://cdn.parcelpanel.com/assets/common/images/express/dhl-active.png','https://activetracing.dhl.com/DatPublic/datSelection.do',9999,1704193937),('dhl-benelux','DHL Benelux','','+31 26-324 6700','https://cdn.parcelpanel.com/assets/common/images/express/dhl-benelux.png','https://www.logistics.dhl/nl-en/home/tracking.html?tracking-id=******',9999,1704193937),('dhl-es','DHL Spain Domestic','','+34 902 09 05 41','https://cdn.parcelpanel.com/assets/common/images/express/dhl-es.png','https://www.logistics.dhl/es-es/home/seguimiento.html?tracking-id=******',9999,1704193937),('dhl-germany','DHL Germany','','+49 228 4 333 112','https://cdn.parcelpanel.com/assets/common/images/express/dhl-germany.png','https://nolp.dhl.de/nextt-online-public/de/search?piececode=******&cid=dhlde',25,1704193937),('dhl-germany-zip','DHL Germany(PostalCode)','','','https://cdn.parcelpanel.com/assets/common/images/express/dhl-germany-zip.png','https://www.dhl.de/de/',9999,1704193937),('dhl-global-logistics','DHL Global Forwarding','','','https://cdn.parcelpanel.com/assets/common/images/express/dhl-global-logistics.png','https://www.dhl.com/global-en/home/tracking/tracking-parcel.html?submit=1&tracking-id=******',148,1704193937),('dhl-hong-kong','DHL Hong Kong','','+852 2218-6888','https://cdn.parcelpanel.com/assets/common/images/express/dhl-hong-kong.png','https://www.logistics.dhl/hk-zh/home/tracking.html',185,1704193937),('dhl-nl','DHL Netherlands','','+31 (0)26 324 6700','https://cdn.parcelpanel.com/assets/common/images/express/dhl-nl.png','https://www.logistics.dhl/nl-en/home/tracking.html?tracking-id=******',197,1704193937),('dhl-poland','DHL Poland Domestic','','+48 42 6 345 345','https://cdn.parcelpanel.com/assets/common/images/express/dhl-poland.png','https://www.logistics.dhl/pl-pl/home/sledzenie.html?tracking-id=******',9999,1704193937),('dhl-uk','DHL Parcel UK','','02476 937 770','https://cdn.parcelpanel.com/assets/common/images/express/dhl-uk.png','https://track.dhlparcel.co.uk/',182,1704193937),('dhl-unified-api','DHL API','','','https://cdn.parcelpanel.com/assets/common/images/express/dhl-unified-api.png','https://www.dhl.com/hk-zh/home.html',9999,1704193937),('dhlecommerce-asia','DHL Global Mail Asia','','+65 6883 0771','https://cdn.parcelpanel.com/assets/common/images/express/dhlecommerce-asia.png','https://ecommerceportal.dhl.com/track/?ref=',208,1704193937),('dhlglobalmail','DHL eCommerce','','+1 317-554-5191','https://cdn.parcelpanel.com/assets/common/images/express/dhlglobalmail.png','https://webtrack.dhlglobalmail.com/?trackingnumber=******',32,1704193937),('dhlink','Dhlink','','','https://cdn.parcelpanel.com/assets/common/images/express/dhlink.png','http://www.dhlink.com/trackQuery',9999,1704193937),('dhlparcel-nl','DHL eCommerce NL','','+31(0)900 - 222 21 20','https://cdn.parcelpanel.com/assets/common/images/express/dhlparcel-nl.png','https://www.dhlparcel.nl/nl/consument/volg-je-pakket?tc=******&lc=nl-NL',55,1704193937),('dicom','Dicom','','','https://cdn.parcelpanel.com/assets/common/images/express/dicom.png','https://www.dicom.com/en/dicom/tracking/result',9999,1704193937),('didadi','DIDADI LOGISTICS TECH','','','https://cdn.parcelpanel.com/assets/common/images/express/didadi.png','http://120.79.38.89/default/index/get-track-detail',9999,1704193937),('doortodoor','CJ Logistics','','110-81-05034','https://cdn.parcelpanel.com/assets/common/images/express/doortodoor.png','https://www.cjlogistics.com/cn/tool/international/tracking',9999,1704193937),('doragate','Dora Gate','','18565802333','https://cdn.parcelpanel.com/assets/common/images/express/doragate.png','http://www.doragate.com',9999,1704193937),('dotzot','Dotzot','','+91 33004444','https://cdn.parcelpanel.com/assets/common/images/express/dotzot.png','http://dotzot.in/index-web.html',9999,1704193937),('dpd','DPD','','0121 275 9222','https://cdn.parcelpanel.com/assets/common/images/express/dpd.png','https://tracking.dpd.de/status/de_DE/parcel/******',52,1704193937),('dpd-be','DPD Belgium','','070/222 222','https://cdn.parcelpanel.com/assets/common/images/express/dpd-be.png','https://tracking.dpd.de/status/en_BE/parcel/******',9999,1704193937),('dpd-ch','DPD Switzerland','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-ch.png','https://www.dpd.com/ch/en/',9999,1704193937),('dpd-cz','DPD CZ','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-cz.png','https://www.dpdgroup.com/cz/mydpd/my-parcels/incoming?parcelNumber=******',9999,1704193937),('dpd-de','DPD Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-de.png','https://www.dpd.com/de/',141,1704193937),('dpd-fr','DPD-FR','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-fr.png','https://www.dpd.com/',9999,1704193937),('dpd-hk','DPD HK','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-hk.png','https://www.dpd.com/tracking',9999,1704193937),('dpd-hr','DPD Croatia','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-hr.png','https://www.dpd.com/hr_en',9999,1704193937),('dpd-ireland','DPD Ireland','','+353 (0)90 64 20500','https://cdn.parcelpanel.com/assets/common/images/express/dpd-ireland.png','https://dpd.ie/tracking?deviceType=5&consignmentNumber=******',175,1704193937),('dpd-nl','DPD Netherlands','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-nl.png','https://www.dpd.com/nl/nl/',9999,1704193937),('dpd-poland','DPD Poland','','+48 801 400 373','https://cdn.parcelpanel.com/assets/common/images/express/dpd-poland.png','https://www.dpd.com.pl/',138,1704193937),('dpd-por','DPD Portugal','','21 854 6001','https://cdn.parcelpanel.com/assets/common/images/express/dpd-por.png','https://tracking.dpd.pt/track-and-trace?reference=******',9999,1704193937),('dpd-ro','DPD Romania','','031.824.9090','https://cdn.parcelpanel.com/assets/common/images/express/dpd-ro.png','https://www.dpd.com/ro/',200,1704193937),('dpd-ru','DPD Russia','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-ru.png','https://www.dpd.ru/dpd/search/search.do2',9999,1704193937),('dpd-sk','DPD SK','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-sk.png','https://www.dpd.com/sk/sk/',9999,1704193937),('dpd-uk','DPD UK','','+44 845 9 300 350','https://cdn.parcelpanel.com/assets/common/images/express/dpd-uk.png','https://track.dpd.co.uk/',47,1704193937),('dpe-express','DPE Express','','','https://cdn.parcelpanel.com/assets/common/images/express/dpe-express.png','http://www.dpe.net.cn/Tracking.php',9999,1704193937),('dpe-south-africa','DPE South Africa','','+27 (011) 573 3000','https://cdn.parcelpanel.com/assets/common/images/express/dpe-south-africa.png','http://www.southafricanpostoffice.post/',9999,1704193937),('dpex','DPEX','','+65 6781 8888','https://cdn.parcelpanel.com/assets/common/images/express/dpex.png','https://dpex.com/track-and-trace/',146,1704193937),('driverfastgo','Driverfastgo','','678 296 8540','https://cdn.parcelpanel.com/assets/common/images/express/driverfastgo.png','https://www.driverfastgo.com/index.htm',9999,1704193937),('dropshipman','Dropshipman','','','https://cdn.parcelpanel.com/assets/common/images/express/dropshipman.png','https://www.dropshipman.com/',9999,1704193937),('dsv','DSV','','1 (732) 850-8000','https://cdn.parcelpanel.com/assets/common/images/express/dsv.png','http://www.dsv.com/',127,1704193937),('dtdc','DTDC','','3300444','https://cdn.parcelpanel.com/assets/common/images/express/dtdc.png','http://dtdc.com/track',90,1704193937),('dtdc-plus','DTDC Plus','','3300444','https://cdn.parcelpanel.com/assets/common/images/express/dtdc-plus.png','http://dtdc.com/track',9999,1704193937),('dwz','DWZ Express','','+86 0755-3632 6899','https://cdn.parcelpanel.com/assets/common/images/express/dwz.png','http://www.dwz56.com/cgi-bin/GInfo.dll?DispInfo&w=szdwz&nid=27',9999,1704193937),('dxdelivery','DX Delivery','','+44 0333 241 5700','https://cdn.parcelpanel.com/assets/common/images/express/dxdelivery.png','https://www.dxdelivery.com/consumer/my-tracking/',196,1704193937),('dyj-express','DYJ Express','','','https://cdn.parcelpanel.com/assets/common/images/express/dyj-express.png','http://www.dyjexp.com/search.html',113,1704193937),('dylt','Daylight Transport','','','https://cdn.parcelpanel.com/assets/common/images/express/dylt.png','https://www.dylt.com/',9999,1704193937),('e-can','Taiwan Pelican Express','','+8862 6618-1818','https://cdn.parcelpanel.com/assets/common/images/express/e-can.png','http://query2.e-can.com.tw/A.htm',9999,1704193937),('e-commercekz','e-Commerce KZ','','','https://cdn.parcelpanel.com/assets/common/images/express/e-commercekz.png','http://www.e-commercekz.com/',9999,1704193937),('earlybird','Early Bird','','','https://cdn.parcelpanel.com/assets/common/images/express/earlybird.png','https://earlybird.se/tracking/',219,1704193937),('easy-mail','Easy Mail','','+30 210 48 35 000','https://cdn.parcelpanel.com/assets/common/images/express/easy-mail.png','https://www.easymail.gr/',218,1704193937),('easyship','Easy Ship','','','https://cdn.parcelpanel.com/assets/common/images/express/easyship.png','https://www.trackmyshipment.co/shipment-tracking/******',9999,1704193937),('ebowxp','EBO','','152-7119-5959','https://cdn.parcelpanel.com/assets/common/images/express/ebowxp.png','http://www.eboexp.com/',9999,1704193937),('ec-firstclass','EC-Firstclass','','+86 4006 988 223','https://cdn.parcelpanel.com/assets/common/images/express/ec-firstclass.png','http://www.ec-firstclass.org/Details.aspx',216,1704193937),('ecargo-asia','Ecargo','','+82) 1577-9817','https://cdn.parcelpanel.com/assets/common/images/express/ecargo-asia.png','http://www.ecargo.com/',9999,1704193937),('echo','Echo','','+1 (800) 354-7993','https://cdn.parcelpanel.com/assets/common/images/express/echo.png','https://www.echo.com/shipment-tracking?ref=******',9999,1704193937),('ecms','ECMS Express','','','https://cdn.parcelpanel.com/assets/common/images/express/ecms.png','https://ese.ecmsglobal.com/#/ecms/tracking?order_number=******',9999,1704193937),('ecmsglobal','Ecmsglobal','','(855)-266-9299','https://cdn.parcelpanel.com/assets/common/images/express/ecmsglobal.png','http://www.ecmsglobal.com',9999,1704193937),('ecom-express','Ecom Express','','+91-8376888888','https://cdn.parcelpanel.com/assets/common/images/express/ecom-express.png','https://ecomexpress.in/tracking/?awb_field=******',165,1704193937),('ecoscooting','ECOSCOOTING','','','https://cdn.parcelpanel.com/assets/common/images/express/ecoscooting.png','https://www.ecoscooting.com/',9999,1704193937),('ecpost','ECPOST','','+86 0755-36921735','https://cdn.parcelpanel.com/assets/common/images/express/ecpost.png','http://www.ecpostchina.com/track/track/index?trackNo=******',9999,1704193937),('ees-logistics','ees-logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/ees-logistics.png','',9999,1704193937),('efs','EFS Asia','','','https://cdn.parcelpanel.com/assets/common/images/express/efs.png','http://web.efs.asia/script/users/tracking.php',9999,1704193937),('efspost','EFSPost','','0061-02 9742 5555','https://cdn.parcelpanel.com/assets/common/images/express/efspost.png','http://www.efspost.com/index/trackbatch',9999,1704193937),('efwtrack','EFW Track','','','https://cdn.parcelpanel.com/assets/common/images/express/efwtrack.png','https://efwtrack.com/track/******',9999,1704193937),('ekart','Ekart Logistics','','+91 18004201111','https://cdn.parcelpanel.com/assets/common/images/express/ekart.png','https://www.ekartlogistics.com/shipmenttrack/******',157,1704193937),('el-salvador-post','El Salvador Post','','(503) 2527-7600','https://cdn.parcelpanel.com/assets/common/images/express/el-salvador-post.png','http://www.correos.gob.sv/',9999,1704193937),('elcorreo','Guatemala Post','','','https://cdn.parcelpanel.com/assets/common/images/express/elcorreo.png','http://www.elcorreo.com.gt/',9999,1704193937),('elianpost','E-lian','','+86 020-37413475','https://cdn.parcelpanel.com/assets/common/images/express/elianpost.png','http://manage.elianpost.com/web/trackstatus/init.do',9999,1704193937),('elitebio','ELITEBIO','','','https://cdn.parcelpanel.com/assets/common/images/express/elitebio.png','https://www.elitebio.com/',9999,1704193937),('elog-luxembourg','Elog Luxembourg','','+352 8002 8004','https://cdn.parcelpanel.com/assets/common/images/express/elog-luxembourg.png','https://www.elog-luxembourg.com/',9999,1704193937),('elta-courier-gr','ELTA Courier','','+30 210 6073 000','https://cdn.parcelpanel.com/assets/common/images/express/elta-courier-gr.png','http://www.elta-courier.gr/',206,1704193937),('emhsz','METEOR EXPRESS','','','https://cdn.parcelpanel.com/assets/common/images/express/emhsz.png','https://emhsz.com/',9999,1704193937),('emirates-post','Emirates Post','','(971) /600 599999','https://cdn.parcelpanel.com/assets/common/images/express/emirates-post.png','https://emiratespost.ae/Portal/Track?TrackingNumber=******&locale=en-us',219,1704193937),('emons','Emons','','','https://cdn.parcelpanel.com/assets/common/images/express/emons.png','https://emons.com/tracking',9999,1704193937),('empsexpress','EMPS Express','','+86 (755) 36620359','https://cdn.parcelpanel.com/assets/common/images/express/empsexpress.png','http://www.empsexpress.com/IrobotBox/TrackingNoSerach/Index.aspx?TrackingNo=******',9999,1704193937),('ems-post','EMS','','','https://cdn.parcelpanel.com/assets/common/images/express/ems-post.png','https://www.ems.post/en/global-network/tracking',9999,1704193937),('envfast','EnvFast','','','https://cdn.parcelpanel.com/assets/common/images/express/envfast.png','https://envfast.com/ver-tracking/',9999,1704193937),('envialia','Envialia','','+34 902400909','https://cdn.parcelpanel.com/assets/common/images/express/envialia.png','http://www.envialia.com/tracking/',195,1704193937),('epacket','ePacket','','+86 11183','https://cdn.parcelpanel.com/assets/common/images/express/epacket.png','http://www.ems.com.cn/mailtracking/you_jian_cha_xun.html',9999,1704193937),('eparcel-kr','eParcel Korea','','+822-2664-4032','https://cdn.parcelpanel.com/assets/common/images/express/eparcel-kr.png','http://eparcel.kr',216,1704193937),('equick-cn','Equick','','4007066078','https://cdn.parcelpanel.com/assets/common/images/express/equick-cn.png','http://www.equick.cn/F10003.aspx',71,1704193937),('eretail','eRetail Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/eretail.png','http://eretail.amservices.net.au:8080/parceltracker.aspx',9999,1704193937),('eritrea-post','Eritrea Post','','','https://cdn.parcelpanel.com/assets/common/images/express/eritrea-post.png','http://www.eriposta.com/',9999,1704193937),('esnad','ESNAD Express','','920034000','https://cdn.parcelpanel.com/assets/common/images/express/esnad.png','https://www.esnadexpress.com/',9999,1704193937),('espeedpost','Espeedpost','','400 000 8105','https://cdn.parcelpanel.com/assets/common/images/express/espeedpost.png','http://www.espeedpost.com/html-tracking.html?trackingnumber=******#trackingresult',9999,1704193937),('espost','Espost','','917558886','https://cdn.parcelpanel.com/assets/common/images/express/espost.png','http://www.espost.es/track',9999,1704193937),('estafetausa','Estafeta USA','','1 (866) 518-6600','https://cdn.parcelpanel.com/assets/common/images/express/estafetausa.png','https://estafetausa.com/',38,1704193937),('estes','Estes','','+1-886-378-3748','https://cdn.parcelpanel.com/assets/common/images/express/estes.png','http://www.estes-express.com/WebApp/ShipmentTracking/MainServlet',9999,1704193937),('eteenlog','ETEEN','','+8618617131682','https://cdn.parcelpanel.com/assets/common/images/express/eteenlog.png','http://eteenlog.com/',9999,1704193937),('ethiopia-post','Ethiopia Post','','+ 251 011 515 20 72','https://cdn.parcelpanel.com/assets/common/images/express/ethiopia-post.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('etotal','eTotal','','+86 020 83036431/83702521','https://cdn.parcelpanel.com/assets/common/images/express/etotal.png','http://www.e-total.com/index.php/express.html',9999,1704193937),('etower','etower','','','https://cdn.parcelpanel.com/assets/common/images/express/etower.png','',9999,1704193937),('ets-express','ETS Express','','+86 400-879-6597','https://cdn.parcelpanel.com/assets/common/images/express/ets-express.png','http://www.ets-express.com/Home/Index/guiji.html',9999,1704193937),('euasia','Euasia Express','','088-668-1277','https://cdn.parcelpanel.com/assets/common/images/express/euasia.png','http://www.euasia.eu',9999,1704193937),('eurodis','Eurodis','','','https://cdn.parcelpanel.com/assets/common/images/express/eurodis.png','https://eurodis.com/track-trace',9999,1704193937),('ewe','EWE Global Express','','+86 21 55961727','https://cdn.parcelpanel.com/assets/common/images/express/ewe.png','https://www.ewe.com.au/html/track.html?cno=******#track-results',9999,1704193937),('exapaq','DPD France (formerly exapaq)','','+33 (0)1 55 35 02 80','https://cdn.parcelpanel.com/assets/common/images/express/exapaq.png','https://www.dpd.fr/trace/******',72,1704193937),('exelot','Exelot','','','https://cdn.parcelpanel.com/assets/common/images/express/exelot.png','https://my.exelot.com/public/track/',193,1704193937),('expeditors','Expeditors','','+1206-674-3400','https://cdn.parcelpanel.com/assets/common/images/express/expeditors.png','http://expo.expeditors.com/expo/ExpoReport/SQGuestList.jsp',9999,1704193937),('express-dy','DaoExpress','','','https://cdn.parcelpanel.com/assets/common/images/express/express-dy.png','http://www.express-dy.com/track.html',9999,1704193937),('express-lj','Express LJ','','','https://cdn.parcelpanel.com/assets/common/images/express/express-lj.png','http://express-lj.com/track.html',9999,1704193937),('expresscourierintl','Express Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/expresscourierintl.png','https://expresscourierintl.com/tracking-results',9999,1704193937),('expressone','Express One','','','https://cdn.parcelpanel.com/assets/common/images/express/expressone.png','https://tracking.expressone.hu/',9999,1704193937),('eyoupost','Eyou800','','+86 400 000 9961','https://cdn.parcelpanel.com/assets/common/images/express/eyoupost.png','',9999,1704193937),('fafalux','fafalux','','','https://cdn.parcelpanel.com/assets/common/images/express/fafalux.png','http://www.fafalux.vip/',9999,1704193937),('famiport','Famiport','','(03)2550119','https://cdn.parcelpanel.com/assets/common/images/express/famiport.png','https://ecfme.fme.com.tw/fmedcfpwebv2/index.aspx',9999,1704193937),('far800','Far International Logistics','','0571-28121835','https://cdn.parcelpanel.com/assets/common/images/express/far800.png','https://www.far800.com/',218,1704193937),('faroe-islands-post','Faroe Islands Post','','+298 34 60 00','https://cdn.parcelpanel.com/assets/common/images/express/faroe-islands-post.png','https://www.posta.fo/search?cc=******',9999,1704193937),('fast-house-us','Fast Horse (US)','','','https://cdn.parcelpanel.com/assets/common/images/express/fast-house-us.png','https://us.fh.express/pc/search?orderNo=******',9999,1704193937),('fastdespatch','Fast Despatch Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/fastdespatch.png','https://fastdespatch.com/track',169,1704193937),('fastgo','Fastgo','','+86 4008863278','https://cdn.parcelpanel.com/assets/common/images/express/fastgo.png','http://www.fastgo.com.au/index/index/logquery?order_sn=******&type=1',9999,1704193937),('fastrak-services','Fastrak Services','','+66 (2) 710-2900','https://cdn.parcelpanel.com/assets/common/images/express/fastrak-services.png','http://www.fastrak.co.th/',9999,1704193937),('fastway-au','Aramex Australia(Fastway Australia)','','+61 (0) 2 9737 8288','https://cdn.parcelpanel.com/assets/common/images/express/fastway-au.png','https://www.aramex.com.au/tools/track?l=******',92,1704193937),('fastway-ie','Fastway Ireland','','+353 1 4242 900','https://cdn.parcelpanel.com/assets/common/images/express/fastway-ie.png','http://www.fastway.ie/courier-services/track-your-parcel?l=******',207,1704193937),('fastway-nz','Fastway New Zealand','','+64 (09) 634 3704','https://cdn.parcelpanel.com/assets/common/images/express/fastway-nz.png','https://www.fastway.co.nz/tools/track/',216,1704193937),('fastway-za','Fastway South Africa','','','https://cdn.parcelpanel.com/assets/common/images/express/fastway-za.png','http://www.fastway.co.za/our-services/track-your-parcel',219,1704193937),('fb56','China Railway Flying Leopard','','400-000-5566','https://cdn.parcelpanel.com/assets/common/images/express/fb56.png','http://www.fb56.com/',9999,1704193937),('fbb','FAST BEE','','86-18206040889','https://cdn.parcelpanel.com/assets/common/images/express/fbb.png','http://www.xffbb.com',9999,1704193937),('fd-express','FD Express','','+86 0755-22225656','https://cdn.parcelpanel.com/assets/common/images/express/fd-express.png','http://fd.kingtrans.cn//WebTrack',9999,1704193937),('fedex','FedEx','','+1 800 247 4747','https://cdn.parcelpanel.com/assets/common/images/express/fedex.png','https://www.fedex.com/fedextrack/?trknbr=******',27,1704193937),('fedex-fims','Fedex FIMS','','','https://cdn.parcelpanel.com/assets/common/images/express/fedex-fims.png','http://mailviewrecipient.fedex.com/recip_package_summary.aspx?PostalID=******',9999,1704193937),('fetchr','Fetchr','','+971-4801-8100','https://cdn.parcelpanel.com/assets/common/images/express/fetchr.png','https://track.fetchr.us/',9999,1704193937),('fgmailconnect','fgmailconnect','','','https://cdn.parcelpanel.com/assets/common/images/express/fgmailconnect.png','https://track.fgmailconnect.co.nz/?id=******',9999,1704193937),('fietskoeriers','fietskoeriers','','','https://cdn.parcelpanel.com/assets/common/images/express/fietskoeriers.png','',9999,1704193937),('fiji-post','Fiji Post','','(63) 3302022','https://cdn.parcelpanel.com/assets/common/images/express/fiji-post.png','http://www.postfiji.com.fj/pages.cfm/services/track-trace/',9999,1704193937),('finalmilespros','Final Miles Pros','','','https://cdn.parcelpanel.com/assets/common/images/express/finalmilespros.png','https://finalmilespros.com/',9999,1704193937),('finland-posti','Finland Post - Posti','','358 200 77000','https://cdn.parcelpanel.com/assets/common/images/express/finland-posti.png','https://www.posti.fi/private/tracking/#/?lang=en',117,1704193937),('first-flight','First Flight','','+91 022-39576666','https://cdn.parcelpanel.com/assets/common/images/express/first-flight.png','https://firstflight.net/domestictracking.php',9999,1704193937),('firstflightme','First Flight Couriers','','600 54 54 56','https://cdn.parcelpanel.com/assets/common/images/express/firstflightme.png','http://firstflightme.com/Track-Shipment',9999,1704193937),('firstline56','First Line','','0755-23722446','https://cdn.parcelpanel.com/assets/common/images/express/firstline56.png','http://www.firstline56.com/',75,1704193937),('firstmile','FirstMile','','888-993-8594','https://cdn.parcelpanel.com/assets/common/images/express/firstmile.png','https://track.firstmile.com/',9999,1704193937),('flashexpress','Flash Express','','','https://cdn.parcelpanel.com/assets/common/images/express/flashexpress.png','https://www.flashexpress.co.th/tracking/?se=******',88,1704193937),('flashexpress-my','Flash Express MY','','','https://cdn.parcelpanel.com/assets/common/images/express/flashexpress-my.png','https://www.flashexpress.my/fle/tracking',9999,1704193937),('flashexpress-ph','FlashExpress PH','','(02) 8539-4002','https://cdn.parcelpanel.com/assets/common/images/express/flashexpress-ph.png','https://www.flashexpress.ph/',218,1704193937),('flow-io','Flow Commerce','','','https://cdn.parcelpanel.com/assets/common/images/express/flow-io.png','https://track.flow.io/index.html?number=******',9999,1704193937),('flysman','FLYSMAN','','（0755）8344-8000','https://cdn.parcelpanel.com/assets/common/images/express/flysman.png','http://www.flysman.com/',9999,1704193937),('flytexpress','Flyt Express','','400-888-4003','https://cdn.parcelpanel.com/assets/common/images/express/flytexpress.png','http://www.flytexpress.com/Home/LogisticsTracking#orderIds=******',63,1704193937),('flywayex','Flyway Express','','0064 9 948 2780','https://cdn.parcelpanel.com/assets/common/images/express/flywayex.png','http://www.flywayex.com/cgi-bin/GInfo.dll?DispInfo&w=flyway&nid=22',9999,1704193937),('fmx','eFMX','','','https://cdn.parcelpanel.com/assets/common/images/express/fmx.png','https://www.fmx.asia/cn/result_detail.php?p=1&conno=******',9999,1704193937),('fourseasonsfly','fourseasonsfly','','','https://cdn.parcelpanel.com/assets/common/images/express/fourseasonsfly.png','http://www.fourseasonsfly.net/tracking',9999,1704193937),('fragt','Danske Fragtmænd','','','https://cdn.parcelpanel.com/assets/common/images/express/fragt.png','https://trace.fragt.dk/#/trackTrace/******',9999,1704193937),('frayun','Frayun','','','https://cdn.parcelpanel.com/assets/common/images/express/frayun.png','https://www.frayun.com/tracking.html',9999,1704193937),('freightquote','Freightquote','','','https://cdn.parcelpanel.com/assets/common/images/express/freightquote.png','https://www.freightquote.com/track-shipment/?bol=******',9999,1704193937),('ftd','FTD Express','','09-4436935','https://cdn.parcelpanel.com/assets/common/images/express/ftd.png','http://www.ftd.nz/query/',9999,1704193937),('fujexp','FUJIE Express','','','https://cdn.parcelpanel.com/assets/common/images/express/fujexp.png','http://www.fujexp.com:8082/trackIndex.htm',9999,1704193937),('fulfillmen','Fulfillmen','','+86 752-2313067','https://cdn.parcelpanel.com/assets/common/images/express/fulfillmen.png','https://www.fulfillmen.com/tracking-links/',9999,1704193937),('gaopost','Gao Post','','020-66687715','https://cdn.parcelpanel.com/assets/common/images/express/gaopost.png','http://www.gaopost.com:8082/trackIndex.htm',9999,1704193937),('gati-kwe','Gati-KWE','','+91 1800-180-4284','https://cdn.parcelpanel.com/assets/common/images/express/gati-kwe.png','https://www.gati.com/track-by-docket/',211,1704193937),('gaticn','GATI Courier','','040-71204284','https://cdn.parcelpanel.com/assets/common/images/express/gaticn.png','http://www.gaticn.com/site/tracking.html',9999,1704193937),('gdex','GDEX','','+60 03-77872222','https://cdn.parcelpanel.com/assets/common/images/express/gdex.png','https://web3.gdexpress.com/official/iframe/etracking_v4.php?input=******&choice=cnGdex',100,1704193937),('gdwse','WSE Logistics','','+86 4008-456-856','https://cdn.parcelpanel.com/assets/common/images/express/gdwse.png','http://www.gdwse.com/',9999,1704193937),('geis-cz','Geis CZ','','','https://cdn.parcelpanel.com/assets/common/images/express/geis-cz.png','https://www.geis-group.cz/en/tracking-tracing?p=******',9999,1704193937),('geis-pl','Geis Poland','','','https://cdn.parcelpanel.com/assets/common/images/express/geis-pl.png','https://www.geis.pl/pl/sledzenie-przesylki?packNumber=******',9999,1704193937),('gel-express','GEL Express','','+49 02154 - 9467 -0','https://cdn.parcelpanel.com/assets/common/images/express/gel-express.png','https://srv4.thalmaier.de/gel/send/EN-en/TrackingAndTracing.aspx?sp=1&snr=******&submit.x=13&submit.y=7',9999,1704193937),('geodis','Geodis','','','https://cdn.parcelpanel.com/assets/common/images/express/geodis.png','http://www.geodis.com/',79,1704193937),('georgian-post','Georgia Post','','(995) 2 24 09 09','https://cdn.parcelpanel.com/assets/common/images/express/georgian-post.png','http://www.gpost.ge/',215,1704193937),('geswl','Yisu International Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/geswl.png','https://www.geswl.com/home/en/index.asp',108,1704193937),('ghana-post','Ghana Post','','030-266-8619','https://cdn.parcelpanel.com/assets/common/images/express/ghana-post.png','https://tools.v2.ghanapost.com.gh/toolsv1/',9999,1704193937),('ghn','Giao Hàng Nhanh','','18001201','https://cdn.parcelpanel.com/assets/common/images/express/ghn.png','https://track.ghn.vn/order/tracking?code=******',9999,1704193937),('giantpost','GIANT EXPRESS','','03 9544 6495 04 4977 6168','https://cdn.parcelpanel.com/assets/common/images/express/giantpost.png','http://www.giantpost.com.au/',9999,1704193937),('gibraltar-post','Gibraltar Post','','+350 200 75714','https://cdn.parcelpanel.com/assets/common/images/express/gibraltar-post.png','https://www.royalgibraltar.post/track-and-trace/',9999,1704193937),('global-leader','Global Leader','','','https://cdn.parcelpanel.com/assets/common/images/express/global-leader.png','http://qqldex.nextsls.com/tracking#******',9999,1704193937),('global-routers','Echindia','','+9172 9095 9131','https://cdn.parcelpanel.com/assets/common/images/express/global-routers.png','http://www.globalrouters.cn/',9999,1704193937),('globegistics','Globegistics Inc.','','+1 516-479-6671','https://cdn.parcelpanel.com/assets/common/images/express/globegistics.png','https://us.mytracking.net/globegistics/portal/ExternalTracking.aspx?track=******',206,1704193937),('gls','GLS','','44 247 621 3455','https://cdn.parcelpanel.com/assets/common/images/express/gls.png','https://gls-group.eu/EU/en/parcel-tracking?match=******',112,1704193937),('gls-canada','GLS Canada','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-canada.png','https://gls-canada.com/en/express/tracking/result',9999,1704193937),('gls-de','GLS Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-de.png','https://www.gls-pakete.de/',9999,1704193937),('gls-es','GLS Spain','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-es.png','https://mygls.gls-spain.es/parcel-tracking',178,1704193937),('gls-hr','GLS(HR)','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-hr.png','https://gls-group.eu/HR/en/home/',9999,1704193937),('gls-italy','GLS Italy','','+39 199 151188','https://cdn.parcelpanel.com/assets/common/images/express/gls-italy.png','https://gls-group.com/IT/en/home',60,1704193937),('gls-pl','GLS Poland','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-pl.png','https://gls-group.eu/PL/pl/home',9999,1704193937),('gls-sk','GLS Slovakia','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-sk.png','https://gls-group.eu/SK/en/parcel-tracking.html?match=******',9999,1704193937),('gls-us','GLS US','','+1-800-322-5555','https://cdn.parcelpanel.com/assets/common/images/express/gls-us.png','https://www.gls-us.com/Tracking/PackageDetail',153,1704193937),('gls-zip','GLS(PostalCode)','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-zip.png','https://gls-group.eu/EU/en/parcel-tracking',9999,1704193937),('gmsworldwide','GMS Worldwide Express','','','https://cdn.parcelpanel.com/assets/common/images/express/gmsworldwide.png','https://www.gmsworldwide.com/',9999,1704193937),('goex','Go Express','','','https://cdn.parcelpanel.com/assets/common/images/express/goex.png','http://www.goex.co.nz/',9999,1704193937),('gofly','Gofly','','+86 131 4383 0725','https://cdn.parcelpanel.com/assets/common/images/express/gofly.png','http://goflyi.com/?page_id=35809',9999,1704193937),('goglobalpost','Goglobal Post','','','https://cdn.parcelpanel.com/assets/common/images/express/goglobalpost.png','https://www.goglobalpost.com/track-detail/?t=******',9999,1704193937),('gogo-xpress','GOGO Xpress','','','https://cdn.parcelpanel.com/assets/common/images/express/gogo-xpress.png','https://www.gogoxpress.com',97,1704193937),('gojavas','GoJavas','','0124-4405730','https://cdn.parcelpanel.com/assets/common/images/express/gojavas.png','http://gojavas.com/docket_details.php?pop=docno&docno=******',9999,1704193937),('good-express','Good Express','','','https://cdn.parcelpanel.com/assets/common/images/express/good-express.png','https://www.goodexpress.com.cn/',9999,1704193937),('gotofreight','Gotofreight','','0755-25904049','https://cdn.parcelpanel.com/assets/common/images/express/gotofreight.png','https://gotofreight.com/',9999,1704193937),('grandslamexpress','Grand Slam Express','','+91 22 2850 9877','https://cdn.parcelpanel.com/assets/common/images/express/grandslamexpress.png','http://icms.grandslamexpress.in/webtracking/WebTracking.aspx',9999,1704193937),('greece-post','ELTA Hellenic Post','','(+30) 800-11-82000','https://cdn.parcelpanel.com/assets/common/images/express/greece-post.png','https://www.elta.gr/en/track',136,1704193937),('greyhound','Greyhound','','+1-800-739-5020','https://cdn.parcelpanel.com/assets/common/images/express/greyhound.png','http://www.shipgreyhound.com/e/sitepages/trackapackage.aspx',9999,1704193937),('grupoampm','Grupo ampm','','55 5061-6800','https://cdn.parcelpanel.com/assets/common/images/express/grupoampm.png','http://www.grupoampm.com/rastreo/',182,1704193937),('gti','GTI','','0755-28213860','https://cdn.parcelpanel.com/assets/common/images/express/gti.png','http://www.gti56.com/',154,1704193937),('gttexpress','GTTEXPRESS','','1-929-666-1606 1-718-395-8077','https://cdn.parcelpanel.com/assets/common/images/express/gttexpress.png','http://gttexpress.com/',9999,1704193937),('guangdongyongbang','Yong Bang','','8620-86195130','https://cdn.parcelpanel.com/assets/common/images/express/guangdongyongbang.png','http://www.guangdongyongbang.com/',9999,1704193937),('guangyy56','GYY','','','https://cdn.parcelpanel.com/assets/common/images/express/guangyy56.png','http://www.guangyy56.com/',9999,1704193937),('guernsey-post','Guernsey Post','','01481 711720','https://cdn.parcelpanel.com/assets/common/images/express/guernsey-post.png','https://www.guernseypost.com/track-trace',9999,1704193937),('gw-world','Gebrüder Weiss Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/gw-world.png','https://developer.my.gw-world.com/home',9999,1704193937),('gzbtygj','HONGHAI SUPPLY CHAIN','','','https://cdn.parcelpanel.com/assets/common/images/express/gzbtygj.png','http://www.gzbtygj.com/track.aspx',9999,1704193937),('gzxdgyl','XiangDao Supply Chain','','','https://cdn.parcelpanel.com/assets/common/images/express/gzxdgyl.png','http://gzxdgyl.com/',9999,1704193937),('happy-post','Happy Post','','','https://cdn.parcelpanel.com/assets/common/images/express/happy-post.png','https://happy-post.com/en/track/',219,1704193937),('hccd','CEL HCCD','','','https://cdn.parcelpanel.com/assets/common/images/express/hccd.png','http://hccd.rtb56.com/track_query.aspx',9999,1704193937),('hct','HCT Express','','+886 412-8866','https://cdn.parcelpanel.com/assets/common/images/express/hct.png','https://www.hct.com.tw/Search/SearchGoods_n.aspx',217,1704193937),('hdc-express','HD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hdc-express.png','http://www.hdc-express.com/#/user/login/redirect=',9999,1704193937),('hellmann','Hellmann','','','https://cdn.parcelpanel.com/assets/common/images/express/hellmann.png','https://portal.emea.hellmann.net/tracking-public/search/#/road/******',9999,1704193937),('hepsijet','HepsiJET','','','https://cdn.parcelpanel.com/assets/common/images/express/hepsijet.png','https://www.hepsijet.com/gonderi-takibi/******',9999,1704193937),('hermes','Hermes','','+44 844 543 7000','https://cdn.parcelpanel.com/assets/common/images/express/hermes.png','https://www.hermesworld.com/en/our-services/distribution/parcel-delivery/parcel-tracking/?trackingNo=******',33,1704193937),('hermes-borderguru','Hermes Borderguru','','','https://cdn.parcelpanel.com/assets/common/images/express/hermes-borderguru.png','https://tracking.borderguru.com/id/******',215,1704193937),('hermes-de','Hermes Germany','','+49 1806-311211','https://cdn.parcelpanel.com/assets/common/images/express/hermes-de.png','https://www.myhermes.de/empfangen/sendungsverfolgung/sendungsinformation#******',76,1704193937),('hermes-uk','Evri (Hermes UK)','','+44 330 333 6556','https://cdn.parcelpanel.com/assets/common/images/express/hermes-uk.png','https://www.evri.com/track/parcel/******/details',58,1704193937),('hfd','HFD','','','https://cdn.parcelpanel.com/assets/common/images/express/hfd.png','https://www.e-post.co.il/',168,1704193937),('hhexp','Hua Han Logistics','','+86-0755-82518733','https://cdn.parcelpanel.com/assets/common/images/express/hhexp.png','http://www.hhddb.com/default/index/get-track-detail',45,1704193937),('hhyexpress','HHY Express','','15920162131','https://cdn.parcelpanel.com/assets/common/images/express/hhyexpress.png','http://121.36.64.162:8082/trackIndex.htm',9999,1704193937),('hi-life','Hi Life','','','https://cdn.parcelpanel.com/assets/common/images/express/hi-life.png','http://www.hilife.com.tw/',9999,1704193937),('hivewms','HiveWMS','','+49 7251 72332','https://cdn.parcelpanel.com/assets/common/images/express/hivewms.png','www.hivewms.com',9999,1704193937),('hjwl','HJWL','','','https://cdn.parcelpanel.com/assets/common/images/express/hjwl.png','http://www.hjwl.ltd/login',9999,1704193937),('hjyt56','HJYT Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hjyt56.png','http://120.78.64.88:8082/trackIndex.htm',219,1704193937),('hkdexpress','HKD','','','https://cdn.parcelpanel.com/assets/common/images/express/hkdexpress.png','http://www.hkdexpress.net/index.php?m=track&a=index',9999,1704193937),('hkems','Cloud mail cross border Express','','15919965201','https://cdn.parcelpanel.com/assets/common/images/express/hkems.png','http://134.175.174.238:8082/trackIndex.htm',9999,1704193937),('hlihang-express','Hlihang Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hlihang-express.png','http://www.hhjy56.cn',188,1704193937),('hnfywl','Hnfywl','','+86 400-6673-777','https://cdn.parcelpanel.com/assets/common/images/express/hnfywl.png','http://www.hnfywl.com/search.asp',9999,1704193937),('holisol','Holisol','','','https://cdn.parcelpanel.com/assets/common/images/express/holisol.png','https://www.holisoldelivery.com/api/tracking/TrackAwb?awb=******',9999,1704193937),('honamlogis','Woori Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/honamlogis.png','http://www.honamlogis.co.kr/page/index.php?pid=tracking_number&SLIP_BARCD=******',9999,1704193937),('hong-kong-post','Hong Kong Post','','852 2921 2222','https://cdn.parcelpanel.com/assets/common/images/express/hong-kong-post.png','https://www.hongkongpost.hk/sc/mail_tracking/index.html',215,1704193937),('honold','Honold Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/honold.png','https://tt.honold.net/tracking/anon/anondetail.seam?colliScanNumber=******',9999,1704193937),('hotwms','HOTWMS','','','https://cdn.parcelpanel.com/assets/common/images/express/hotwms.png','http://www.hotwms.com/trace.html',9999,1704193937),('hound','hound','','','https://cdn.parcelpanel.com/assets/common/images/express/hound.png','http://www.hound-express.com/',208,1704193937),('hoyangexpress','HoYang Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hoyangexpress.png','http://www.hoyangexpress.com/',216,1704193937),('hplogistics','HP Express','','+86 15878389479','https://cdn.parcelpanel.com/assets/common/images/express/hplogistics.png','http://www.hplogistics.com.cn/',9999,1704193937),('hrparcel','HR Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/hrparcel.png','https://www.hrparcel.com/',9999,1704193937),('hrvatska-posta','Croatia Post','','+(385) 072 303 304','https://cdn.parcelpanel.com/assets/common/images/express/hrvatska-posta.png','https://www.posta.hr/tracktrace.aspx?tracklng=en&broj=******',9999,1704193937),('ht56','Hong Tai','','400-8607777','https://cdn.parcelpanel.com/assets/common/images/express/ht56.png','http://www.ht56.com/plus/order.php',9999,1704193937),('htkjwl','HuanTong Express','','','https://cdn.parcelpanel.com/assets/common/images/express/htkjwl.png','http://47.106.83.127:8086/xms/client/wnoView.htm',9999,1704193937),('huanshid','Huanshid','','','https://cdn.parcelpanel.com/assets/common/images/express/huanshid.png','http://www.huanshid.com/',212,1704193937),('huaxiexpress','Hua Xi','','18680667881','https://cdn.parcelpanel.com/assets/common/images/express/huaxiexpress.png','http://www.huaxiexpress.com/',9999,1704193937),('huayu','Hua Yu','','','https://cdn.parcelpanel.com/assets/common/images/express/huayu.png','http://www.huayu-ex.com/',9999,1704193937),('huidaex','Huida Express','','1-347-399-8336','https://cdn.parcelpanel.com/assets/common/images/express/huidaex.png','http://huidaex.com/tracking?field_huida_tracking_number_value=******',9999,1704193937),('huif56','Hui Feng Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/huif56.png','https://www.huif56.com/chaxun.php?act=search',9999,1704193937),('huilin56','HuiLin56','','400-921-8889','https://cdn.parcelpanel.com/assets/common/images/express/huilin56.png','http://www.huilin56.com/',9999,1704193937),('huilogistics','Hui Logistics','','+86 0755-84742220','https://cdn.parcelpanel.com/assets/common/images/express/huilogistics.png','http://wms.fulfillment-cn.com/Manage/WebManage/Inquire.aspx?txtID=No',9999,1704193937),('huisenky','HuiSenKy','','400-921-8889','https://cdn.parcelpanel.com/assets/common/images/express/huisenky.png','http://www.huisenky.com/',9999,1704193937),('hunterexpress','Hunter Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hunterexpress.png','https://www.hunterexpress.com.au/tracking/',9999,1704193937),('hxgj56','Hanxuan international express','','020-36481329','https://cdn.parcelpanel.com/assets/common/images/express/hxgj56.png','',9999,1704193937),('hzchgj','CH EXPRESS','','0571-85096381','https://cdn.parcelpanel.com/assets/common/images/express/hzchgj.png','http://www.hzchgj.com/',9999,1704193937),('i-parcel','I-parcel','','+44 (0) 1342 315 455','https://cdn.parcelpanel.com/assets/common/images/express/i-parcel.png','https://tracking.i-parcel.com/?TrackingNumber=******',9999,1704193937),('iceland-post','Iceland Post','','+354 5801000','https://cdn.parcelpanel.com/assets/common/images/express/iceland-post.png','https://www.postur.is/en/individuals/domestic-parcels/track-shipment/?TrackingNumber=******',9999,1704193937),('ics-ca','ICS courier','','','https://cdn.parcelpanel.com/assets/common/images/express/ics-ca.png','https://www.icscourier.ca/',140,1704193937),('icumulus','iCumulus Global Express','','','https://cdn.parcelpanel.com/assets/common/images/express/icumulus.png','https://tracking.icumulus.cloud/Tracking/******',9999,1704193937),('idada56','Dada logistic','','400-098-5656','https://cdn.parcelpanel.com/assets/common/images/express/idada56.png','http://www.idada56.com/track.html',9999,1704193937),('idexpress','IDEX','','+86 400 880 9976','https://cdn.parcelpanel.com/assets/common/images/express/idexpress.png','http://www.idexpress.com.cn/cgi-bin/GInfo.dll?EmmisTrack',9999,1704193937),('ids-logistik','IDS Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/ids-logistik.png','https://www.ids-logistik.de/de/sendungsverfolgung?trackingNumber=******&zipCode=***',9999,1704193937),('iepost','IEPost','','020-3147-7487','https://cdn.parcelpanel.com/assets/common/images/express/iepost.png','http://www.ie-post.com/',9999,1704193937),('igcaexpress','Igcaexpress','','+1 604 620 9587','https://cdn.parcelpanel.com/assets/common/images/express/igcaexpress.png','http://www.igcaexpress.com/',9999,1704193937),('imexglobalsolutions','IMEX Global Solutions','','+001-888-795-1842','https://cdn.parcelpanel.com/assets/common/images/express/imexglobalsolutions.png','http://dm.mytracking.net/IMEX/track/TrackDetails.aspx?t=******',9999,1704193937),('imile','iMile','','+ 971600566221','https://cdn.parcelpanel.com/assets/common/images/express/imile.png','https://www.imile.com/',181,1704193937),('imlb2c','IML Logistics','','0755-61218688','https://cdn.parcelpanel.com/assets/common/images/express/imlb2c.png','https://iml.ru/en/status',9999,1704193937),('imlexpres','IML','','18682141108','https://cdn.parcelpanel.com/assets/common/images/express/imlexpres.png','http://www.imlexpress.cn/',9999,1704193937),('india-post','India Post','','91 1800 11 2011','https://cdn.parcelpanel.com/assets/common/images/express/india-post.png','https://www.indiapost.gov.in/_layouts/15/DOP.Portal.Tracking/TrackConsignment.aspx',175,1704193937),('indonesia-post','Indonesia Post','','','https://cdn.parcelpanel.com/assets/common/images/express/indonesia-post.png','https://www.posindonesia.co.id/en/tracking',213,1704193937),('inposdom','Dominican Post','','(809)/534-5838','https://cdn.parcelpanel.com/assets/common/images/express/inposdom.png','http://www.inposdom.gob.do/',9999,1704193937),('inpost-paczkomaty','InPost','','+48 722 444 000 / +48 746 600 000','https://cdn.parcelpanel.com/assets/common/images/express/inpost-paczkomaty.png','https://inpost.pl/sledzenie-przesylek?number=******',128,1704193937),('intelcom','intelcom','','','https://cdn.parcelpanel.com/assets/common/images/express/intelcom.png','https://intelcomexpress.com/en/tracking/',208,1704193937),('international-seur','Seur','','+34 902101010','https://cdn.parcelpanel.com/assets/common/images/express/international-seur.png','https://www.seur.com/livetracking/pages/seguimiento-online-busqueda.do?faces-redirect=true',145,1704193937),('interparcel-au','Interparcel Au','','1300 006 031','https://cdn.parcelpanel.com/assets/common/images/express/interparcel-au.png','https://au.interparcel.com/tracking/******',218,1704193937),('interparcel-uk','Interparcel Uk','','0333 3000 700','https://cdn.parcelpanel.com/assets/common/images/express/interparcel-uk.png','https://uk.interparcel.com/tracking/******',9999,1704193937),('intexpress','Intexpress','','011-973 2867, 011-973 3566','https://cdn.parcelpanel.com/assets/common/images/express/intexpress.png','http://www.internetexpress.co.za/Home/TrackWBOnline',9999,1704193937),('iposita-rwanda','Rwanda Post','','','https://cdn.parcelpanel.com/assets/common/images/express/iposita-rwanda.png','http://i-posita.rw/track-trace-gtt/',9999,1704193937),('iran-post','Iran Post','','88532387​','https://cdn.parcelpanel.com/assets/common/images/express/iran-post.png','http://post.ir/',9999,1704193937),('israel-post','Israel Post','','+(972) 2 629 0691','https://cdn.parcelpanel.com/assets/common/images/express/israel-post.png','https://mypost.israelpost.co.il/itemtrace',219,1704193937),('isunnyway','Sunnyway','','','https://cdn.parcelpanel.com/assets/common/images/express/isunnyway.png','http://www.isunnyway.com',9999,1704193937),('italy-sda','Italy SDA','','+39 199 113366','https://cdn.parcelpanel.com/assets/common/images/express/italy-sda.png','http://www.sda.it/SITO_SDA-WEB/dispatcher?id_ldv=******&invoker=home&LEN=ENG&execute2=ActionTracking.doGetTrackingHome&button=Go',56,1704193937),('ivory-coast-ems','Ivory Coast EMS','','​(225) 20 00 69 50 / 08 83 83 30','https://cdn.parcelpanel.com/assets/common/images/express/ivory-coast-ems.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('j-net','J-NET Express','','400-728-7156','https://cdn.parcelpanel.com/assets/common/images/express/j-net.png','http://www.j-net.cn/cms/index.php/page/track.html?number=******',207,1704193937),('jam-express','Jam Express','','+63 239 7502','https://cdn.parcelpanel.com/assets/common/images/express/jam-express.png','http://www.myjamexpress.com/',9999,1704193937),('jamaica-post','Jamaica Post','','(876) 922-9448','https://cdn.parcelpanel.com/assets/common/images/express/jamaica-post.png','https://jamaicapost.gov.jm/track-and-trace/',9999,1704193937),('janco','Janco Ecommerce','','+852 2575 7883','https://cdn.parcelpanel.com/assets/common/images/express/janco.png','https://track.jancoecommerce.com/cargotracking_ecom/itxp/xpop/xpordertrack?as_order_no=******',9999,1704193937),('jancoexpress','Janco Express','','(852) 3525 0826','https://cdn.parcelpanel.com/assets/common/images/express/jancoexpress.png','http://www.jancoexpress.com/',9999,1704193937),('janio','Janio Asia','','','https://cdn.parcelpanel.com/assets/common/images/express/janio.png','https://tracker.janio.asia/******',9999,1704193937),('japan-post','Japan Post','','+81 0570-046111','https://cdn.parcelpanel.com/assets/common/images/express/japan-post.png','https://trackings.post.japanpost.jp/services/srv/search/direct?reqCodeNo1=******&searchKind=S002&locale=en',183,1704193937),('jayeek','Jayeek','','+971 4 344 1112','https://cdn.parcelpanel.com/assets/common/images/express/jayeek.png','http://www.jayeek.com/index.html',9999,1704193937),('jayonexpress','Jayon Express (JEX)','','','https://cdn.parcelpanel.com/assets/common/images/express/jayonexpress.png','http://128.199.254.149/m/',9999,1704193937),('jc-express','深圳市晶晟国际物流','','','https://cdn.parcelpanel.com/assets/common/images/express/jc-express.png','',9999,1704193937),('jcex','JCEX','','400－887－1083','https://cdn.parcelpanel.com/assets/common/images/express/jcex.png','https://www.jcex.com/html/web/guijichaxun/index.html?nums=******',68,1704193937),('jch-exp','JCH','','','https://cdn.parcelpanel.com/assets/common/images/express/jch-exp.png','http://www.jch-exp.com:8082/trackIndex.htm',9999,1704193937),('jcsuda','Jcsuda','','0591-88034960','https://cdn.parcelpanel.com/assets/common/images/express/jcsuda.png','',9999,1704193937),('jcwexpress','JCW','','','https://cdn.parcelpanel.com/assets/common/images/express/jcwexpress.png','https://jcwexpress.com/tracking/',9999,1704193937),('jd','JD Express','','400-603-3600','https://cdn.parcelpanel.com/assets/common/images/express/jd.png','http://www.jdwl.com/order/search?waybillCodes=******',9999,1704193937),('jd-168','JD-168','','17702627260 03-3936660','https://cdn.parcelpanel.com/assets/common/images/express/jd-168.png','http://www.jd-168.com/',9999,1704193937),('jd-logistics','JD Logistics','','950616','https://cdn.parcelpanel.com/assets/common/images/express/jd-logistics.png','https://www.jdworldwide.com/',9999,1704193937),('jdiex','JDIEX','','626-689-0106','https://cdn.parcelpanel.com/assets/common/images/express/jdiex.png','https://www.jdiex.com/',9999,1704193937),('jdy','JINDOUYUN Logistics','','15521336586','https://cdn.parcelpanel.com/assets/common/images/express/jdy.png','http://www.szjdy.ltd/',9999,1704193937),('jersey-post','Jersey Post','','+441534616616','https://cdn.parcelpanel.com/assets/common/images/express/jersey-post.png','https://www.jerseypost.com/tools/track-trace/',9999,1704193937),('jet','J&T Express','','+62 021 8066 1888','https://cdn.parcelpanel.com/assets/common/images/express/jet.png','https://www.jet.co.id/track',193,1704193937),('jet-global','Jet Global Express','','(853) 2871 1286','https://cdn.parcelpanel.com/assets/common/images/express/jet-global.png','https://api.jetft-tracking.com/order',9999,1704193937),('jet-ship','Jet-Ship Worldwide','','','https://cdn.parcelpanel.com/assets/common/images/express/jet-ship.png','http://jet-ship.com/track.html',9999,1704193937),('jetlogistic','J&T International','','400-8256-356','https://cdn.parcelpanel.com/assets/common/images/express/jetlogistic.png','http://jetlogistic.com/logistics.html',131,1704193937),('jetstarexp','Jetstarexp','','020-36713719','https://cdn.parcelpanel.com/assets/common/images/express/jetstarexp.png','http://www.jetstarexp.cn/',9999,1704193937),('jiachenexpress','JIACHEN INTERNATIONAL','','','https://cdn.parcelpanel.com/assets/common/images/express/jiachenexpress.png','https://www.jiachenexpress.com/',9999,1704193937),('jiayi56','Jiayi Express','','400-631-9999','https://cdn.parcelpanel.com/assets/common/images/express/jiayi56.png','http://221.214.94.21:8088/aspx/ydcx_kh.aspx',9999,1704193937),('jieborne','Jieborne','','020-62630488','https://cdn.parcelpanel.com/assets/common/images/express/jieborne.png','http://www.jieborne.com/',9999,1704193937),('jingleexpressx','JingLe Express','','','https://cdn.parcelpanel.com/assets/common/images/express/jingleexpressx.png','http://www.jingleexpressx.com/logistics.html',9999,1704193937),('jne','jne','','021-50868880','https://cdn.parcelpanel.com/assets/common/images/express/jne.png','https://cekresi.jne.co.id/******',73,1704193937),('joeyco','JoeyCo','','(855) 909-0053','https://cdn.parcelpanel.com/assets/common/images/express/joeyco.png','https://www.joeyco.com/tracking/******',9999,1704193937),('joomlogistics','joomlogistics','','','https://cdn.parcelpanel.com/assets/common/images/express/joomlogistics.png','https://joomlogistics.com/track?id=******',9999,1704193937),('jordan-post','Jordan Post','','+(962)-6-4293000','https://cdn.parcelpanel.com/assets/common/images/express/jordan-post.png','http://www.jordanpost.com.jo/',9999,1704193937),('joying-box','JOYING BOX','','400-150-1188','https://cdn.parcelpanel.com/assets/common/images/express/joying-box.png','https://www.joyingbox.com/',9999,1704193937),('jrs-express','jrs-express','','(02) 8637-2066','https://cdn.parcelpanel.com/assets/common/images/express/jrs-express.png','https://www.jrs-express.com/Home/Tracking?Length=4#',9999,1704193937),('js-exp','JS EXPRESS','','400-0353-518','https://cdn.parcelpanel.com/assets/common/images/express/js-exp.png','http://www.js-exp.com/index.php?page=19',134,1704193937),('jssdt56','SDT','','','https://cdn.parcelpanel.com/assets/common/images/express/jssdt56.png','http://www.jssdt56.com/webOnline.html',9999,1704193937),('jt-express','J&T Express Vietnam','','19001088','https://cdn.parcelpanel.com/assets/common/images/express/jt-express.png','https://jtexpress.vn/vi/tracking?type=track&billcode=******',9999,1704193937),('jt-express-sg','J&T Express Singapore','','','https://cdn.parcelpanel.com/assets/common/images/express/jt-express-sg.png','https://www.jtexpress.sg/trackmyparcel',216,1704193937),('jt-express-th','J&T Express Thailand','','02-009-5678','https://cdn.parcelpanel.com/assets/common/images/express/jt-express-th.png','https://www.jtexpress.co.th',215,1704193937),('jtexpress','J&T Express China','','400-820-1666','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress.png','http://www.jtexpress.com.cn/',9999,1704193937),('jtexpress-ae','J&T Express UAE','','800-568','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress-ae.png','https://www.jtexpress.ae/trajectoryQuery?waybillNo=******&type=0',9999,1704193937),('jtexpress-my','J&T Express Malaysia','','','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress-my.png','https://www.jtexpress.my/track.php?awbs=******',119,1704193937),('jtexpress-ph','J&T Express Philippines','','','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress-ph.png','https://www.jtexpress.ph/index/query/gzquery.html',161,1704193937),('jtexpress-vn','jtexpress-vn','','19001088','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress-vn.png','https://jtexpress.vn/track?billcodes=******&btn_track=',9999,1704193937),('jumstc','Jumstc','','40016-56580','https://cdn.parcelpanel.com/assets/common/images/express/jumstc.png','http://www.jumstc.com/',9999,1704193937),('jusdasr','JusdaSR','','','https://cdn.parcelpanel.com/assets/common/images/express/jusdasr.png','https://www.jusdasr.com/',9999,1704193937),('juxiex','JUXI EXPRESS','','021-60739366','https://cdn.parcelpanel.com/assets/common/images/express/juxiex.png','http://www.juxiex.com/',137,1704193937),('kahaexpress','Kaha Express','','','https://cdn.parcelpanel.com/assets/common/images/express/kahaexpress.png','https://www.kahaexpress.com/',9999,1704193937),('kaigenlogistics','Kaigenlogistics','','400-699-3396','https://cdn.parcelpanel.com/assets/common/images/express/kaigenlogistics.png','https://www.kaigenlogistics.com/',9999,1704193937),('kajie','Ka Jie','','','https://cdn.parcelpanel.com/assets/common/images/express/kajie.png','',9999,1704193937),('kangaroo-my','Kangaroo Worldwide Express','','603-5518 8228','https://cdn.parcelpanel.com/assets/common/images/express/kangaroo-my.png','http://www.kangaroo.com.my/',9999,1704193937),('kawa','Kawa','','86-0755-27397426','https://cdn.parcelpanel.com/assets/common/images/express/kawa.png','http://14.215.133.9:8032/query.aspx',9999,1704193937),('kazpost','Kazakhstan Post','','7 7172 61-16-99','https://cdn.parcelpanel.com/assets/common/images/express/kazpost.png','https://post.kz/mail/search/track/******/detail',204,1704193937),('kdexp','KYOUNGDONG(경동택배)','','','https://cdn.parcelpanel.com/assets/common/images/express/kdexp.png','https://kdexp.com/index.do',9999,1704193937),('kenya-post','Kenya Post','','(254) 020 324 2000','https://cdn.parcelpanel.com/assets/common/images/express/kenya-post.png','http://www.posta.co.ke/',9999,1704193937),('kerry-ecommerce','Kerry eCommerce','','','https://cdn.parcelpanel.com/assets/common/images/express/kerry-ecommerce.png','https://kerry-ecommerce.com/index.php',214,1704193937),('kerry-logistics','Kerry Logistics','','+852 2410 3600','https://cdn.parcelpanel.com/assets/common/images/express/kerry-logistics.png','http://www.expba.com/emmis/www.kerryeas.com.html',9999,1704193937),('kerry-tec','Kerry Tec','','+852 2410 3600','https://cdn.parcelpanel.com/assets/common/images/express/kerry-tec.png','http://www.kerry-tec.com/track_trace.php',9999,1704193937),('kerryexpress','Kerry Express VN','','1900 6663','https://cdn.parcelpanel.com/assets/common/images/express/kerryexpress.png','https://kerryexpress.com.vn/tracking.aspx?tc=******',9999,1704193937),('kerryexpress-th','Kerry Express TH','','','https://cdn.parcelpanel.com/assets/common/images/express/kerryexpress-th.png','http://th.kerryexpress.com/en/home/',219,1704193937),('kerrytj','Kerry TJ Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/kerrytj.png','https://www.kerrytj.com/en/',9999,1704193937),('kgmhub','KGM Hub','','+65 6532 7172','https://cdn.parcelpanel.com/assets/common/images/express/kgmhub.png','http://kgmhub.com/customer/public-tracking',9999,1704193937),('kingfreight','King Freight','','1300 949 566','https://cdn.parcelpanel.com/assets/common/images/express/kingfreight.png','',9999,1704193937),('kingruns','KINGRUNS','','+86 0755 88606701','https://cdn.parcelpanel.com/assets/common/images/express/kingruns.png','http://www.kingruns.com/tms_track.php',9999,1704193937),('kjkd','Fast Express','','4008333666','https://cdn.parcelpanel.com/assets/common/images/express/kjkd.png','http://www.kjkd.com/',9999,1704193937),('kjy','SHUNBANG EXPRESS','','0755-22675209','https://cdn.parcelpanel.com/assets/common/images/express/kjy.png','http://tracking.kjy.com/track_kjy?shipment=******',9999,1704193937),('kke','King Kong Express','','852-23329918','https://cdn.parcelpanel.com/assets/common/images/express/kke.png','http://www.szkke.com/index.php/Index/index/select.html',9999,1704193937),('komonexpress','KOMON EXPRESS','','135 5447 1805','https://cdn.parcelpanel.com/assets/common/images/express/komonexpress.png','http://www.komonexpress.com/',199,1704193937),('korea-post','Korea Post','','82-2-2108-9895','https://cdn.parcelpanel.com/assets/common/images/express/korea-post.png','https://ems.epost.go.kr/front.Tracking01Eng.postal',190,1704193937),('kuaidaexp','King Delivery','','','https://cdn.parcelpanel.com/assets/common/images/express/kuaidaexp.png','http://www.kuaidaexp.com/',9999,1704193937),('kuajingyihao','K1 Express','','+86 400-8063-513','https://cdn.parcelpanel.com/assets/common/images/express/kuajingyihao.png','http://www.kuajingyihao.com/',9999,1704193937),('kuehne','Kuehne Nagel','','','https://cdn.parcelpanel.com/assets/common/images/express/kuehne.png','https://mykn.kuehne-nagel.com/public-tracking/shipments?query=******',140,1704193937),('kurasi','Kurasi','','','https://cdn.parcelpanel.com/assets/common/images/express/kurasi.png','https://www.kurasi.co.id/tracking',9999,1704193937),('kwe','Kintetsu World Express','','','https://cdn.parcelpanel.com/assets/common/images/express/kwe.png','https://www.kwe.com',9999,1704193937),('kwt56','KWT Express','','0755-89689111','https://cdn.parcelpanel.com/assets/common/images/express/kwt56.png','http://58.61.160.51:8240/TrackInfoJHD/track/qry_track_info',9999,1704193937),('kye','KUAYUE EXPRESS','','4008098098','https://cdn.parcelpanel.com/assets/common/images/express/kye.png','http://www.ky-express.com/',219,1704193937),('kyrgyzpost','Kyrgyzstan Post','','(996) 31261 52 94','https://cdn.parcelpanel.com/assets/common/images/express/kyrgyzpost.png','http://kyrgyzpost.kg/ru/zip-search.html?searchword=******',9999,1704193937),('la-poste-monaco','Monaco Post','','+ (377) 99998080','https://cdn.parcelpanel.com/assets/common/images/express/la-poste-monaco.png','http://www.lapostemonaco.mc/Suivi-envoi.html',9999,1704193937),('lahuoex','La Huo Express','','','https://cdn.parcelpanel.com/assets/common/images/express/lahuoex.png','http://www.lahuoex.com/cha/query1.php',9999,1704193937),('landmark-global','Landmark Global','','+(888) 205-2251','https://cdn.parcelpanel.com/assets/common/images/express/landmark-global.png','https://track.landmarkglobal.com/?trck=******&Submit=Track',197,1704193937),('lanqichuhai','Lanqichuhai','','','https://cdn.parcelpanel.com/assets/common/images/express/lanqichuhai.png','https://tms.lanqichuhai.com/tms/open/logistics?trackNos=******',9999,1704193937),('laos-post','Laos Post','','','https://cdn.parcelpanel.com/assets/common/images/express/laos-post.png','http://www.laopostapl.com/#/tracking/index',9999,1704193937),('laposte','La Poste','','+ 33 810 821 821','https://cdn.parcelpanel.com/assets/common/images/express/laposte.png','https://www.laposte.fr/outils/suivre-vos-envois?code=******',36,1704193937),('lasership','LaserShip','','(804) 414-2590','https://cdn.parcelpanel.com/assets/common/images/express/lasership.png','http://www.lasership.com/track.php?track_number_input=******',86,1704193937),('latamyou','LATAM YOU','','','https://cdn.parcelpanel.com/assets/common/images/express/latamyou.png','https://latamyou.com/#/newTrack?no=******',9999,1704193937),('latvijas-pasts','Latvia Post','','(371) 27008001','https://cdn.parcelpanel.com/assets/common/images/express/latvijas-pasts.png','http://www.pasts.lv/en/Category/Tracking_of_Postal_Items/',151,1704193937),('lbcexpress','LBC Express','','+63 800-10-8585999','https://cdn.parcelpanel.com/assets/common/images/express/lbcexpress.png','https://www.lbcexpress.com/us/track/?tracking_no=******',107,1704193937),('lbexps','LiBang International Logistics','','+86 020-66686638','https://cdn.parcelpanel.com/assets/common/images/express/lbexps.png','http://47.52.162.35:22227/lbexps_ifd_web/track/trackAction!query.action',9999,1704193937),('ldlog','LD Logistics','','0755-29700570','https://cdn.parcelpanel.com/assets/common/images/express/ldlog.png','http://www.ldlog.com.cn/cxwl.asp',9999,1704193937),('ldxpress','LDXpress','','4008200112','https://cdn.parcelpanel.com/assets/common/images/express/ldxpress.png','http://www.ldxpress.com/#/track',9999,1704193937),('leda-express','LD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/leda-express.png','http://www.leda-express.com/',9999,1704193937),('ledii','Ledii','','0755-29778511','https://cdn.parcelpanel.com/assets/common/images/express/ledii.png','http://ledii.itdida.com/zhanghao/landing.xhtml',9999,1704193937),('legionexp','Legion Express','','','https://cdn.parcelpanel.com/assets/common/images/express/legionexp.png','https://legionexp.com/',9999,1704193937),('leopardschina','Leopards Express','','+86 400-668-1818','https://cdn.parcelpanel.com/assets/common/images/express/leopardschina.png','http://www.leopardschina.com/Home/Track',9999,1704193937),('leopardscourier','Leopards Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/leopardscourier.png','https://www.leopardscourier.com/leopards_tracking',199,1704193937),('lesotho-post','Lesotho Post','','(266) 2232 1690','https://cdn.parcelpanel.com/assets/common/images/express/lesotho-post.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('lexship','Lexship','','+91 8660390631','https://cdn.parcelpanel.com/assets/common/images/express/lexship.png','https://www.lexship.com/track.php',9999,1704193937),('lf-express','LF Express','','','https://cdn.parcelpanel.com/assets/common/images/express/lf-express.png','https://lf-express.com/',9999,1704193937),('lhexpressus','UNICON EXPRESS USA','','','https://cdn.parcelpanel.com/assets/common/images/express/lhexpressus.png','http://www.lhexpressus.com/',9999,1704193937),('lhtex','LHT Express','','4008888887','https://cdn.parcelpanel.com/assets/common/images/express/lhtex.png','http://58.61.37.152:7000/lhtex/track.action',9999,1704193937),('liban-post','Lebanon Post','','961 1 629628','https://cdn.parcelpanel.com/assets/common/images/express/liban-post.png','https://www.libanpost.com/arabic/individuals/mailing',9999,1704193937),('liccardi-express','LICCARDI','','','https://cdn.parcelpanel.com/assets/common/images/express/liccardi-express.png','http://www.spacecomputer-web.it/web/index.php/liccardi/spedizioni/cerca',9999,1704193937),('liechtenstein-post','Liechtenstein Post','','+ (423) 399 44 44','https://cdn.parcelpanel.com/assets/common/images/express/liechtenstein-post.png','https://www.tnt.com/express/de_ch/site/home/applications/tracking.html?searchType=CON&cons=******',9999,1704193937),('liefergruen','Liefergrün','','','https://cdn.parcelpanel.com/assets/common/images/express/liefergruen.png','https://en.liefergruen.de/sendungsverfolgung',9999,1704193937),('lietuvos-pastas','Lithuania Post','','(370) 8 700 55400','https://cdn.parcelpanel.com/assets/common/images/express/lietuvos-pastas.png','https://www.post.lt/siuntu-sekimas',201,1704193937),('line-1','Line-1 International Express','','+8613986837403','https://cdn.parcelpanel.com/assets/common/images/express/line-1.png','http://www.line-1.com.au/',9999,1704193937),('line-clear','Line Clear Express & Logistics','','03-7890 3535','https://cdn.parcelpanel.com/assets/common/images/express/line-clear.png','https://lineclearexpress.com/my/tracking-mobile/',9999,1704193937),('lineclearexpress','Lineclear Express','','','https://cdn.parcelpanel.com/assets/common/images/express/lineclearexpress.png','https://www.lineclearexpress.com/',9999,1704193937),('linexsolutions','Linex','','(+852)2735 2012','https://cdn.parcelpanel.com/assets/common/images/express/linexsolutions.png','http://tracking.linexsolutions.com/Shipment/TrackingList?Type=L',9999,1704193937),('lingsong','LingSong','','4008-638-388','https://cdn.parcelpanel.com/assets/common/images/express/lingsong.png','http://www.lingsong.cn/',9999,1704193937),('lmparcel','LM Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/lmparcel.png','https://www.lmparcel.com/search?nums=******',9999,1704193937),('logisters','Logisters','','','https://cdn.parcelpanel.com/assets/common/images/express/logisters.png','http://193.112.169.101:8082/en/trackIndex.htm',9999,1704193937),('logistics','WEL','','+86 400-8338-066','https://cdn.parcelpanel.com/assets/common/images/express/logistics.png','http://119.23.238.137/default/index/get-track-detail?type=cp&documentCode=******&Submit.x=10&Submit.y=11',9999,1704193937),('lonestar','Lonestar','','','https://cdn.parcelpanel.com/assets/common/images/express/lonestar.png','https://api-prod.lso.com/tracking/track_barcode?barcodes=******',9999,1704193937),('longbiao56','LB Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/longbiao56.png','http://81.71.34.49:8082/trackIndex.htm',9999,1704193937),('longcps','LONGCPS','','','https://cdn.parcelpanel.com/assets/common/images/express/longcps.png','http://www.longcps.com/index.aspx',9999,1704193937),('loomis','Loomis Express','','','https://cdn.parcelpanel.com/assets/common/images/express/loomis.png','https://www.loomis-express.com/loomship/en/Track/TrackStatus?wbs=******',217,1704193937),('loomis-zip','Loomis Express(PostalCode)','','','https://cdn.parcelpanel.com/assets/common/images/express/loomis-zip.png','https://www.loomis-express.com/loomship/Track',9999,1704193937),('lpexpress','LP Express','','8700 55400','https://cdn.parcelpanel.com/assets/common/images/express/lpexpress.png','https://www.lpexpress.lt/en/home/',9999,1704193937),('lso','Lone Star Overnight','','','https://cdn.parcelpanel.com/assets/common/images/express/lso.png','https://www2.lso.com/access/package-tracking?seo_redirect=1',191,1704193937),('ltexp','Ltexp','','800-820-3585','https://cdn.parcelpanel.com/assets/common/images/express/ltexp.png','http://www.ltexp.com.cn/',129,1704193937),('ltian','Jiayou','','','https://cdn.parcelpanel.com/assets/common/images/express/ltian.png','http://www.jiayouexp.com',54,1704193937),('lubang56','LuBang56','','13723517517','https://cdn.parcelpanel.com/assets/common/images/express/lubang56.png','http://www.lubang56.com.cn/',9999,1704193937),('luben','Luben','','（08）9478 4837 0413 686 354','https://cdn.parcelpanel.com/assets/common/images/express/luben.png','https://www.luben.com.au/#/',9999,1704193937),('luxembourg-post','Luxembourg Post','','(352) 8002 8004','https://cdn.parcelpanel.com/assets/common/images/express/luxembourg-post.png','http://www.trackandtrace.lu/',213,1704193937),('lwehk','LWE','','+852 3421 1122','https://cdn.parcelpanel.com/assets/common/images/express/lwehk.png','http://www.lwe.com.hk/tracking',198,1704193937),('m-xpress','Mxpress','','','https://cdn.parcelpanel.com/assets/common/images/express/m-xpress.png','https://www.mxpress2u.com/',9999,1704193937),('macao-post','Macao Post','','+(853) 2857 4491','https://cdn.parcelpanel.com/assets/common/images/express/macao-post.png','http://www.ctt.gov.mo/macaupost/contents/MailTrack.aspx',9999,1704193937),('macedonia-post','Macedonia Post','','(389) 02 3 105 105','https://cdn.parcelpanel.com/assets/common/images/express/macedonia-post.png','https://www.posta.com.mk/',200,1704193937),('madhur-couriers','Madhur Couriers','','','https://cdn.parcelpanel.com/assets/common/images/express/madhur-couriers.png','https://www.madhurcouriers.in/(S(1tkrac5ipfqkadybqcvniki3))/CNoteTracking',9999,1704193937),('madrooex','madrooex','','+8618321689771','https://cdn.parcelpanel.com/assets/common/images/express/madrooex.png','http://www.madrooex.com/index.aspx',9999,1704193937),('maersk','MAERSK','','','https://cdn.parcelpanel.com/assets/common/images/express/maersk.png','https://delivers.maersk.com/technology/?currentTab=consumer',9999,1704193937),('magyar-posta','Magyar Posta','','(36)/06 40 46 46 46','https://cdn.parcelpanel.com/assets/common/images/express/magyar-posta.png','https://www.posta.hu/nyomkovetes/nyitooldal?searchvalue=******',192,1704193937),('mailamericas','MailAmericas','','+ 54 11 4814 1500','https://cdn.parcelpanel.com/assets/common/images/express/mailamericas.png','http://tracking.mailamericas.com/search',219,1704193937),('mainfreight','Mainfreight','','','https://cdn.parcelpanel.com/assets/common/images/express/mainfreight.png','https://www.mainfreight.com/en-nz/tracking?trackingnumber=******',219,1704193937),('malaysia-post','Malaysia Post','','(60) 3-2727-9100','https://cdn.parcelpanel.com/assets/common/images/express/malaysia-post.png','https://tracking.pos.com.my/tracking/******',218,1704193937),('maldives-post','Maldives Post','','(960) 33155555','https://cdn.parcelpanel.com/assets/common/images/express/maldives-post.png','http://www.maldivespost.com/',9999,1704193937),('malta-post','Malta Post','','(356) 2596 1740','https://cdn.parcelpanel.com/assets/common/images/express/malta-post.png','https://www.maltapost.com/tracking/#/trackedItems?barcode=******',9999,1704193937),('maratrack','Maratrack','','400-770-5656','https://cdn.parcelpanel.com/assets/common/images/express/maratrack.png','https://www.maratrack.com',9999,1704193937),('matdespatch','Matdespatch','','000660000768','https://cdn.parcelpanel.com/assets/common/images/express/matdespatch.png','https://matdespatch-my.delyva.app/customer/strack?trackingNo=******',135,1704193937),('matkahuolto','Matkahuolto','','+358 0800 132 582','https://cdn.parcelpanel.com/assets/common/images/express/matkahuolto.png','https://www.matkahuolto.fi/fi/seuranta/tilanne/?package_code=******#.XAuE5tUzYdU',213,1704193937),('mauritius-post','Mauritius Post','','+ (230) 208 2851','https://cdn.parcelpanel.com/assets/common/images/express/mauritius-post.png','http://www.mauritiuspost.biz/?itemid=******',164,1704193937),('maxcellents','Maxcellents Pte Ltd','','+65 81115705','https://cdn.parcelpanel.com/assets/common/images/express/maxcellents.png','http://www.maxcellents.com.sg/',9999,1704193937),('maxeedexpress','maxeedexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/maxeedexpress.png','',9999,1704193937),('maxway','Maxway Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/maxway.png','http://www.maxpress.cn',188,1704193937),('mbe','Mail Boxed Etc','','','https://cdn.parcelpanel.com/assets/common/images/express/mbe.png','https://www.mbe.es/es/tracking?c=******',9999,1704193937),('md-express','MC Express','','+86 0371-63529638','https://cdn.parcelpanel.com/assets/common/images/express/md-express.png','http://www.mc-express.cn:8082/trackIndex.htm',9999,1704193937),('meest','Meest Express','','1 800 288 9949','https://cdn.parcelpanel.com/assets/common/images/express/meest.png','https://t.meest-group.com/en',9999,1704193937),('mhsy88','Mhsy88','','4001-663-613','https://cdn.parcelpanel.com/assets/common/images/express/mhsy88.png','http://www.mhsy88.com/',9999,1704193937),('mircoexpress','mircoexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/mircoexpress.png','http://api.mircoexpress.com/#/AboutUs',9999,1704193937),('miuson-international','Miuson Express','','0755-84557420','https://cdn.parcelpanel.com/assets/common/images/express/miuson-international.png','http://211.159.182.134:8082/trackIndex.htm',9999,1704193937),('mm-logi','MM-logi','','+49-2824-9990030','https://cdn.parcelpanel.com/assets/common/images/express/mm-logi.png','http://www.mm-logi.com/',9999,1704193937),('moldova-post','Moldova Post','','(373 22) 251-201','https://cdn.parcelpanel.com/assets/common/images/express/moldova-post.png','http://www.posta.md/en/tracking?id=******',9999,1704193937),('monaco-ems','Monaco EMS','','+377 9999 8080','https://cdn.parcelpanel.com/assets/common/images/express/monaco-ems.png','http://www.lapostemonaco.mc/Suivi-envoi.html',9999,1704193937),('mondialrelay','Mondial Relay','','09 69 32 23 32','https://cdn.parcelpanel.com/assets/common/images/express/mondialrelay.png','https://www.mondialrelay.fr/suivi-de-colis/',65,1704193937),('mongol-post','Mongol Post','','+ (976) 180001613','https://cdn.parcelpanel.com/assets/common/images/express/mongol-post.png','http://www.mongolpost.mn/',9999,1704193937),('morning','Morning Express','','','https://cdn.parcelpanel.com/assets/common/images/express/morning.png','https://www.mechk.com/guest-order-tracking/',9999,1704193937),('morninglobal','Morning Global','','+852 36696360','https://cdn.parcelpanel.com/assets/common/images/express/morninglobal.png','https://www.morninglobal.com/yundan/status.php?ydh=******',9999,1704193937),('mrw-spain','MRW','','+34 902 300 403','https://cdn.parcelpanel.com/assets/common/images/express/mrw-spain.png','http://www.mrw.es/seguimiento_envios/MRW_resultados_consultas.asp?modo=nacional&envio=******',103,1704193937),('myaustrianpost','GmbH','','','https://cdn.parcelpanel.com/assets/common/images/express/myaustrianpost.png','https://controlling.myaustrianpost.de/index.php?page=trackingBlank',9999,1704193937),('mydpd','DPD Austria','','','https://cdn.parcelpanel.com/assets/common/images/express/mydpd.png','https://www.mydpd.at/meine-pakete',214,1704193937),('myhes-de','Hermes Einrichtungs Service','','','https://cdn.parcelpanel.com/assets/common/images/express/myhes-de.png','https://myhes.de/de/tracking/******',9999,1704193937),('myib','MyIB','','','https://cdn.parcelpanel.com/assets/common/images/express/myib.png','https://www.myib.com/trackpackage',9999,1704193937),('mykn','myKN','','','https://cdn.parcelpanel.com/assets/common/images/express/mykn.png','https://mykn.kuehne-nagel.com/public-tracking/shipments?',9999,1704193937),('mylerz','Mylerz','','','https://cdn.parcelpanel.com/assets/common/images/express/mylerz.png','https://api.mylerz.net/api/package/GetPackageTrackingDetails?BarCode=******',211,1704193937),('mypostonline','Mypostonline','','+60 07-6625692','https://cdn.parcelpanel.com/assets/common/images/express/mypostonline.png','http://qsm.mypostonline.com.cn/Tracking.php',9999,1704193937),('myzufall-de','Zufall Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/myzufall-de.png','https://tracking.myzufall.de/Track/******',9999,1704193937),('mz56','mz56','','','https://cdn.parcelpanel.com/assets/common/images/express/mz56.png','http://www.mz56.com/',9999,1704193937),('mzlyuanhao','Yuan Hao','','','https://cdn.parcelpanel.com/assets/common/images/express/mzlyuanhao.png','http://www.mzlyuanhao.com/',9999,1704193937),('namibia-post','Namibia Post','','(264) 61 201 3042','https://cdn.parcelpanel.com/assets/common/images/express/namibia-post.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('nanjingwoyuan','Nanjing Woyuan','','+86 18168003600','https://cdn.parcelpanel.com/assets/common/images/express/nanjingwoyuan.png','http://www.nanjingwoyuan.com/',9999,1704193937),('naqel','Naqel','','+966 1147 10030','https://cdn.parcelpanel.com/assets/common/images/express/naqel.png','http://www.naqelksa.com/',98,1704193937),('nationwide-my','Nationwide Express','','+60 603-5163 3333','https://cdn.parcelpanel.com/assets/common/images/express/nationwide-my.png','http://www.nationwide2u.com/v2/care_track.cfm#',9999,1704193937),('nege-it','UAB Nėgė','','','https://cdn.parcelpanel.com/assets/common/images/express/nege-it.png','https://www.nege.lt/?lang=en',9999,1704193937),('netherlands-post','Netherlands Post','','','https://cdn.parcelpanel.com/assets/common/images/express/netherlands-post.png','https://www.tnt.com/',219,1704193937),('new-caledonia-post','New Caledonia Post','','+ 687 27 77 94','https://cdn.parcelpanel.com/assets/common/images/express/new-caledonia-post.png','http://webtrack.opt.nc/ipswebtracking/',9999,1704193937),('new-zealand-post','New Zealand Post','','0800 501 501 / +64 9 977 0102','https://cdn.parcelpanel.com/assets/common/images/express/new-zealand-post.png','https://www.nzpost.co.nz/tools/tracking',115,1704193937),('neway','Neway','','','https://cdn.parcelpanel.com/assets/common/images/express/neway.png','https://esmart.newaytransport.com/v6/tracking/Track.external?refno=******',9999,1704193937),('newgistics','Newgistics','','+1 877-860-5997','https://cdn.parcelpanel.com/assets/common/images/express/newgistics.png','http://tracking.newgistics.com/',185,1704193937),('nexive','Nexive','','+39 02 50720011','https://cdn.parcelpanel.com/assets/common/images/express/nexive.png','https://tracking.nexive.it/?b=******&lang=IT',9999,1704193937),('nextsmartship','nextsmartship','','','https://cdn.parcelpanel.com/assets/common/images/express/nextsmartship.png','https://fulfill.nextsmartship.com/track',81,1704193937),('nhans-solutions','Nhans Solutions','','+65 66590749','https://cdn.parcelpanel.com/assets/common/images/express/nhans-solutions.png','http://www.nhans.worldsyntech.com/',9999,1704193937),('nicaragua-post','Nicaragua Post','','+ (505) 22558410','https://cdn.parcelpanel.com/assets/common/images/express/nicaragua-post.png','http://www.correos.gob.ni/',9999,1704193937),('nigeria-post','Nigeria Post','','+(234) 7055991758','https://cdn.parcelpanel.com/assets/common/images/express/nigeria-post.png','http://ips.nipost.gov.ng/ipswebtracking/',9999,1704193937),('nightline','Nightline','','+353 (0)1 883 5400','https://cdn.parcelpanel.com/assets/common/images/express/nightline.png','https://www.nightline.ie/',9999,1704193937),('ninjavan','Ninja Van Singapore','','+65 6602 8271','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan.png','http://ninjavan.sg',199,1704193937),('ninjavan-my','Ninja Van Malaysia','','','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan-my.png','https://www.ninjavan.co/en-my',100,1704193937),('ninjavan-ph','Ninja Van Philippines','','+632 729 9365','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan-ph.png','https://www.ninjavan.co/en-ph',170,1704193937),('ninjavan-th','Ninja Van Thailand','','','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan-th.png','https://www.ninjavan.co/th-th',9999,1704193937),('ninjavan-vn','Ninja Van Vietnam','','+84 1900 886 877','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan-vn.png','https://www.ninjavan.co/vn-vn',9999,1704193937),('ninjaxpress','Ninja Van Indonesia','','085574670049','https://cdn.parcelpanel.com/assets/common/images/express/ninjaxpress.png','https://www.ninjaxpress.co/',115,1704193937),('nippon','Nippon Express','','','https://cdn.parcelpanel.com/assets/common/images/express/nippon.png','https://www.nittsu.co.jp/',9999,1704193937),('njfeibao','Flying Leopards Express','','86-025-52433090 ','https://cdn.parcelpanel.com/assets/common/images/express/njfeibao.png','http://www.njfeibao.com/',9999,1704193937),('norsk','Norsk Global','','','https://cdn.parcelpanel.com/assets/common/images/express/norsk.png','https://norsk.global/track-and-trace.html',9999,1704193937),('nova-poshta','Nova Poshta','','+380 50-4-500-609','https://cdn.parcelpanel.com/assets/common/images/express/nova-poshta.png','https://novaposhta.ua/tracking/index/cargo_number/******/no_redirect/1',158,1704193937),('nox-nighttimeexpress','NOX Night Time Express','','','https://cdn.parcelpanel.com/assets/common/images/express/nox-nighttimeexpress.png','https://tcs-ords.app.nox.express/ords/stcs/STCS_TRACK_AND_TRACE.Info?pBarcode=******',9999,1704193937),('ntlogistics-vn','NT Logistics VN','','','https://cdn.parcelpanel.com/assets/common/images/express/ntlogistics-vn.png','https://www.ntlogistics.vn/chi-tiet-van-don.html?bill=******',9999,1704193937),('ntlsgj','LvSe International','','','https://cdn.parcelpanel.com/assets/common/images/express/ntlsgj.png','http://www.ntlsgj.com/',9999,1704193937),('nzcouriers','NZCouriers','','','https://cdn.parcelpanel.com/assets/common/images/express/nzcouriers.png','https://www.nzcouriers.co.nz/nzc/servlet/ITNG_TAndTServlet?barcode_data=******&page=1&VCCA=Enabled&Key_Type=BarCode#Detail_0',9999,1704193937),('ocs','OCS India','','','https://cdn.parcelpanel.com/assets/common/images/express/ocs.png','https://webcsw.ocs.co.jp/csw/ECSWG0201R00003P.do',9999,1704193937),('ocs-worldwide','OCS Worldwide','','0845 678 9800','https://cdn.parcelpanel.com/assets/common/images/express/ocs-worldwide.png','http://www.ocsworldwide.co.uk',9999,1704193937),('ocschina','OCS Express','','+86 400-1188-588','https://cdn.parcelpanel.com/assets/common/images/express/ocschina.png','http://www.ocschina.com/track.html',9999,1704193937),('ogilogistic','Guangzhou Onegoal International Logistics','','020-36299453','https://cdn.parcelpanel.com/assets/common/images/express/ogilogistic.png','http://www.ogilogistic.com/',9999,1704193937),('old-dominion','Old Dominion Freight Line','','+1-800-432-6335','https://cdn.parcelpanel.com/assets/common/images/express/old-dominion.png','https://www.odfl.com/Trace/standardResult.faces?pro=******',9999,1704193937),('oman-post','Oman Post','','+ (968) 24769925','https://cdn.parcelpanel.com/assets/common/images/express/oman-post.png','http://www.omanpost.om/',9999,1704193937),('omgoexpress','OmgoExpress','','','https://cdn.parcelpanel.com/assets/common/images/express/omgoexpress.png','https://omgoexpress.cn/tracking.html?documentCode=******',66,1704193937),('omni2','Omni2','','400-6885-666','https://cdn.parcelpanel.com/assets/common/images/express/omni2.png','https://omni2.cn/#',9999,1704193937),('omniparcel','Omni Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/omniparcel.png','http://track.omniparcel.com/?id=******',9999,1704193937),('omniva','Estonia Post','','372 661 6616','https://cdn.parcelpanel.com/assets/common/images/express/omniva.png','https://www.omniva.ee/abi/jalgimine',166,1704193937),('oneworldexpress','One World Express','','+44 208 867 6060','https://cdn.parcelpanel.com/assets/common/images/express/oneworldexpress.png','https://oneworldexpress.co.uk/tracking/en/results_multitrack.php',9999,1704193937),('ontrac','OnTrac','','+1 800 334 5000','https://cdn.parcelpanel.com/assets/common/images/express/ontrac.png','https://www.ontrac.com/tracking.asp',118,1704193937),('opek','FedEx Poland Domestic','','+48 22 732 79 99','https://cdn.parcelpanel.com/assets/common/images/express/opek.png','https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber=******&cntry_code=pl&locale=pl_PL',9999,1704193937),('orangeconnex','ORANGE CONNEX','','86-21-60556068','https://cdn.parcelpanel.com/assets/common/images/express/orangeconnex.png','http://www.orangeconnex.com.cn/tracking',9999,1704193937),('orangeds','OrangeDS','','','https://cdn.parcelpanel.com/assets/common/images/express/orangeds.png','https://tracking.orangedsinc.com/',9999,1704193937),('osmworldwide','OSM Worldwide','','','https://cdn.parcelpanel.com/assets/common/images/express/osmworldwide.png','https://www.osmworldwide.com/tracking/?trackingNumbers=BTHEPK00271976',9999,1704193937),('overseas-logistics','Overseas Logistics','','+91-11-47244444','https://cdn.parcelpanel.com/assets/common/images/express/overseas-logistics.png','http://www.overseaslogistics.in/tracking.aspx',9999,1704193937),('overseas-territory-fr-ems','Overseas Territory FR EMS','','','https://cdn.parcelpanel.com/assets/common/images/express/overseas-territory-fr-ems.png','http://www.chronopost.fr/',9999,1704193937),('overseas-territory-us-post','Overseas Territory US Post','','1/800-275-8777','https://cdn.parcelpanel.com/assets/common/images/express/overseas-territory-us-post.png','https://tools.usps.com/go/TrackConfirmAction_input',9999,1704193937),('packeta','Packeta','','','https://cdn.parcelpanel.com/assets/common/images/express/packeta.png','https://tracking.packeta.com/en/?id=******',218,1704193937),('packfleet','Packfleet','','','https://cdn.parcelpanel.com/assets/common/images/express/packfleet.png','https://packfleet.com/',184,1704193937),('packlink','Packlink','','','https://cdn.parcelpanel.com/assets/common/images/express/packlink.png','https://www.packlink.es/seguimiento-envios/',212,1704193937),('padtf','Padtf','','0769-85712366','https://cdn.parcelpanel.com/assets/common/images/express/padtf.png','http://www.padtf.com/',9999,1704193937),('pakistan-post','Pakistan Post','','+(92) 51-4102906','https://cdn.parcelpanel.com/assets/common/images/express/pakistan-post.png','https://ep.gov.pk/emtts/EPTrack_Live.aspx?ArticleIDz=******',219,1704193937),('palletways','Palletways','','','https://cdn.parcelpanel.com/assets/common/images/express/palletways.png','https://www.palletwaysonline.com/en-gb/tracking/******',9999,1704193937),('pan-asia','Pan-Asia International','','','https://cdn.parcelpanel.com/assets/common/images/express/pan-asia.png','http://www.panasiachina.com',9999,1704193937),('pandulogistics','Pandu Logistics','','+62 (021) 461 6007','https://cdn.parcelpanel.com/assets/common/images/express/pandulogistics.png','http://pandulogistics.com/',9999,1704193937),('paquet','Paquet Express','','800-821-0208','https://cdn.parcelpanel.com/assets/common/images/express/paquet.png','https://www.paquetexpress.com.mx/',185,1704193937),('parcel-force','Parcelforce','','0345 774 0740','https://cdn.parcelpanel.com/assets/common/images/express/parcel-force.png','https://www.parcelforce.com/track-trace',147,1704193937),('parcll','PARCLL','','','https://cdn.parcelpanel.com/assets/common/images/express/parcll.png','https://www.parclltrack.com/parcelTracking?id=******',9999,1704193937),('pargo','Pargo','','021 447 3636','https://cdn.parcelpanel.com/assets/common/images/express/pargo.png','https://pargo.co.za/track-trace/',9999,1704193937),('passport-shipping','Passport Shipping','','','https://cdn.parcelpanel.com/assets/common/images/express/passport-shipping.png','https://passportshipping.com/track/******',150,1704193937),('passtheparcel','Pass The Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/passtheparcel.png','https://www.passtheparcel.co.nz/Pass/Track/******',9999,1704193937),('payo','Payo','','+63285555208','https://cdn.parcelpanel.com/assets/common/images/express/payo.png','https://payo.asia/parcel-tracking/',9999,1704193937),('payport','Parcelport','','','https://cdn.parcelpanel.com/assets/common/images/express/payport.png','https://parcelport.co.nz/',9999,1704193937),('pca','PCA','','1800 518 000','https://cdn.parcelpanel.com/assets/common/images/express/pca.png','https://www.pcaexpress.com.au/tracking/?c=******',9999,1704193937),('pfcexpress','PFC Express','','+86-755-83727415','https://cdn.parcelpanel.com/assets/common/images/express/pfcexpress.png','http://www.pfcexpress.com/Manage/WebManage/Inquire.aspx?txtID=No',9999,1704193937),('pflogistics','Parcel Freight Logistics','','+ 61 2 9746 9997','https://cdn.parcelpanel.com/assets/common/images/express/pflogistics.png','http://www.pflogistics.com.au/',187,1704193937),('phlpost','PhilPost','','+ (63) 854-9825','https://cdn.parcelpanel.com/assets/common/images/express/phlpost.png','https://tracking.phlpost.gov.ph/',9999,1704193937),('pickrr','Pickrr','','','https://cdn.parcelpanel.com/assets/common/images/express/pickrr.png','https://pickrr.com/tracking/#/?tracking_id=******',169,1704193937),('pickupp','Pickupp','','','https://cdn.parcelpanel.com/assets/common/images/express/pickupp.png','https://hk.pickupp.io/en/tracking',9999,1704193937),('pickupp-mys','Pickupp','','','https://cdn.parcelpanel.com/assets/common/images/express/pickupp-mys.png','https://gateway.my.pickupp.io/v2/public/orders/******/detail',9999,1704193937),('pidge','Pidge','','+91-9319482670','https://cdn.parcelpanel.com/assets/common/images/express/pidge.png','https://tracking.pidge.in/login',9999,1704193937),('piggycars','Piggycars','','','https://cdn.parcelpanel.com/assets/common/images/express/piggycars.png','https://dsp-tracking.piggyship.com/?tracking=******',9999,1704193937),('pilot','Pilot','','','https://cdn.parcelpanel.com/assets/common/images/express/pilot.png','https://www.pilotdelivers.com/pilot-shipment-detail/?Pro=******',9999,1704193937),('pingda56','PINGDA EXPRESS','','','https://cdn.parcelpanel.com/assets/common/images/express/pingda56.png','http://www.pingda56.com.cn:8082/trackIndex.htm',9999,1704193937),('pitneybowes','Pitney Bowes','','844-256-6444','https://cdn.parcelpanel.com/assets/common/images/express/pitneybowes.png','https://pitneybowes.shipment.co/track/',9999,1704193937),('pittohio','Pitt Ohio','','','https://cdn.parcelpanel.com/assets/common/images/express/pittohio.png','https://works.pittohio.com/myPittOhio/',9999,1704193937),('pkd-express','PKD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/pkd-express.png','http://49.234.139.190:8082/trackIndex.htm?documentCode=******',9999,1704193937),('poczta-polska','Poland Post','','(48) 43 842 06 00','https://cdn.parcelpanel.com/assets/common/images/express/poczta-polska.png','https://www.envelo.pl/?s=******',215,1704193937),('polarexpress','Polar Express','','','https://cdn.parcelpanel.com/assets/common/images/express/polarexpress.png','https://www.polarexpress.com.au/track?post_num=******',9999,1704193937),('pony-express','Pony Express','','+7 495 937 77 77','https://cdn.parcelpanel.com/assets/common/images/express/pony-express.png','http://www.ponyexpress.ru',9999,1704193937),('poslaju','Pos Malaysia','','1300 300 300 / +603 2705 9900','https://cdn.parcelpanel.com/assets/common/images/express/poslaju.png','https://www.poslaju.com.my/track-trace-v2/',9999,1704193937),('posta-crne-gore','Montenegro Post','','19801','https://cdn.parcelpanel.com/assets/common/images/express/posta-crne-gore.png','https://e-racuni.postacg.me/PracenjePosiljaka/',9999,1704193937),('posta-romana','Romania Post','','+ (40) 021 9393 111','https://cdn.parcelpanel.com/assets/common/images/express/posta-romana.png','https://www.posta-romana.ro/en/track-trace.html',9999,1704193937),('posta-shqiptare','Albania Post','','0800 4141','https://cdn.parcelpanel.com/assets/common/images/express/posta-shqiptare.png','https://www.postashqiptare.al/',9999,1704193937),('postaplus','PostaPlus','','1881881','https://cdn.parcelpanel.com/assets/common/images/express/postaplus.png','https://www.postaplus.com/',9999,1704193937),('poste-italiane','Poste Italiane','','+39 803 160','https://cdn.parcelpanel.com/assets/common/images/express/poste-italiane.png','https://www.poste.it/cerca/index.html#/risultati-spedizioni/******',67,1704193937),('poste-maroc','Maroc Poste','','+ (212) 0537 210 202','https://cdn.parcelpanel.com/assets/common/images/express/poste-maroc.png','http://www.poste.ma/',9999,1704193937),('posten-norge','Posten Norge','','+(47) 21 31 62 60','https://cdn.parcelpanel.com/assets/common/images/express/posten-norge.png','https://sporing.posten.no/sporing.html?q=******',155,1704193937),('postex','PostEX','','','https://cdn.parcelpanel.com/assets/common/images/express/postex.png','https://merchant.postex.pk/track-order',189,1704193937),('posthaste','Post Haste','','','https://cdn.parcelpanel.com/assets/common/images/express/posthaste.png','https://www.posthaste.co.nz/phl/servlet/ITNG_TAndTServlet?page=1&VCCA=Enabled&Key_Type=BarCode&barcode_data=******',212,1704193937),('postnl-3s','PostNL','','+31 (0)900 0990','https://cdn.parcelpanel.com/assets/common/images/express/postnl-3s.png','https://www.internationalparceltracking.com/#/search',91,1704193937),('postnl-parcels','PostNL International','','+31 88 868 6161','https://cdn.parcelpanel.com/assets/common/images/express/postnl-parcels.png','https://postnl.post/tracktrace',95,1704193937),('postone','Post One','','+359 0700 200 40','https://cdn.parcelpanel.com/assets/common/images/express/postone.png','https://postone.eu/en/track?code=******',9999,1704193937),('postpng','Papua New Guinea Post','','(675) 305 3700','https://cdn.parcelpanel.com/assets/common/images/express/postpng.png','http://www.postpng.com.pg/track_trace',9999,1704193937),('ppl-cz','PPL CZ','','','https://cdn.parcelpanel.com/assets/common/images/express/ppl-cz.png','https://www.ppl.cz/en/track-a-shipment',9999,1704193937),('pressiode','Pressiode','','','https://cdn.parcelpanel.com/assets/common/images/express/pressiode.png','http://pressiode.de/sendungsverfolgung',9999,1704193937),('professional-couriers','The Professional Couriers (TPC)','','+91-22-278 13309','https://cdn.parcelpanel.com/assets/common/images/express/professional-couriers.png','https://www.tpcindia.com/',120,1704193937),('promeddelivery','ProMed Deliversy','','','https://cdn.parcelpanel.com/assets/common/images/express/promeddelivery.png','https://promeddel.e-courier.com/promeddel/home/wizard_tracking.asp?AllRef=******',9999,1704193937),('purolator','Purolator','','1-888-744-7123','https://cdn.parcelpanel.com/assets/common/images/express/purolator.png','https://www.purolator.com/purolator/ship-track/tracking-summary.page',130,1704193937),('pushpak-courier','Pushpak Courier','','+91 9214097167','https://cdn.parcelpanel.com/assets/common/images/express/pushpak-courier.png','https://www.pushpakcourier.net/query.php',9999,1704193937),('qatar-post','Qatar Post','','(974)/44464000/44464277','https://cdn.parcelpanel.com/assets/common/images/express/qatar-post.png','http://www.qpost.com.qa/',9999,1704193937),('qexlogistics','Qexlogistics','','09-8388681','https://cdn.parcelpanel.com/assets/common/images/express/qexlogistics.png','http://www.qexlogistics.com/',9999,1704193937),('qexpress','QEXPRESS','','09-8388681','https://cdn.parcelpanel.com/assets/common/images/express/qexpress.png','http://www.qexpress.co.nz/tracking.aspx',219,1704193937),('qfkd','QFKD Express','','4001000001','https://cdn.parcelpanel.com/assets/common/images/express/qfkd.png','http://www.qfkd.com.cn/',9999,1704193937),('qhxyyg','Qhxyyg','','0971-7733777','https://cdn.parcelpanel.com/assets/common/images/express/qhxyyg.png','http://www.qhxyyg.com/',9999,1704193937),('qi-eleven','7-ELEVEN','','1-800-255-0711','https://cdn.parcelpanel.com/assets/common/images/express/qi-eleven.png','https://eservice.7-11.com.tw/E-Tracking/search.aspx',9999,1704193937),('qichen','venucia','','00852-31166708','https://cdn.parcelpanel.com/assets/common/images/express/qichen.png','http://www.qichen.hk/',9999,1704193937),('qiyue','Qiyue Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/qiyue.png','http://47.115.152.56:8883/BestECOnline_QY/',9999,1704193937),('qlinyun','QLINYUN','','','https://cdn.parcelpanel.com/assets/common/images/express/qlinyun.png','https://www.qlinyun.com/',9999,1704193937),('quantium','Quantium','','+852 2318 1213','https://cdn.parcelpanel.com/assets/common/images/express/quantium.png','https://quantiumsolutions.com/search.html?searchphrase=all&searchword=******',9999,1704193937),('quickway','QuicKway','','','https://cdn.parcelpanel.com/assets/common/images/express/quickway.png','http://www.quickway-sc.com/TRACK.html',9999,1704193937),('quikenmx','QuikenMx','','','https://cdn.parcelpanel.com/assets/common/images/express/quikenmx.png','https://api.quiken.mx/track',9999,1704193937),('quiqup','Quiqup','','04 512 6212','https://cdn.parcelpanel.com/assets/common/images/express/quiqup.png','https://www.quiqup.com/',9999,1704193937),('qwintry','Qwintry Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/qwintry.png','https://logistics.qwintry.com/track?tracking=******',9999,1704193937),('qxpress','Qxpress','','+86 755-8829 7707','https://cdn.parcelpanel.com/assets/common/images/express/qxpress.png','http://www.qxpress.asia/chi/html/customer_tracking_view.html?value=******',171,1704193937),('qyexp','QYEXP','','','https://cdn.parcelpanel.com/assets/common/images/express/qyexp.png','http://www.qyexp.cn/',9999,1704193937),('qyunexpress','QYUN GLOBAL','','','https://cdn.parcelpanel.com/assets/common/images/express/qyunexpress.png','http://106.52.192.65:8082/trackIndex.htm',74,1704193937),('raben-group','Raben Group','','','https://cdn.parcelpanel.com/assets/common/images/express/raben-group.png','https://oftc.myraben.com/index.html',9999,1704193937),('raf','RAF Philippines','','(632) 820-2920 to 25','https://cdn.parcelpanel.com/assets/common/images/express/raf.png','http://www.raf.ph/beta/',9999,1704193937),('raiderex','RaidereX','','+65 8666 5481','https://cdn.parcelpanel.com/assets/common/images/express/raiderex.png','https://app.detrack.com/w/#/tracking/s/c2ed7ab0c381d61e1959731ff286cbb0ba590cb4',9999,1704193937),('ram','Ram','','','https://cdn.parcelpanel.com/assets/common/images/express/ram.png','https://www.ram.co.za/Track/******',9999,1704193937),('redchains','RedC','','0755-26942727','https://cdn.parcelpanel.com/assets/common/images/express/redchains.png','https://www.redchains.cc/',9999,1704193937),('redpack-mexico','Redpack Mexico','','+52 1800-013-3333','https://cdn.parcelpanel.com/assets/common/images/express/redpack-mexico.png','http://www.redpack.com.mx/',111,1704193937),('redur-es','Redur Spain','','+34 93 263 16 16','https://cdn.parcelpanel.com/assets/common/images/express/redur-es.png','http://redlink.redur.es/RedLink/jsp/jsp_esp/listadoExpedicionesB.jsp?idioma=uk',9999,1704193937),('renrenex','Renrenex','','','https://cdn.parcelpanel.com/assets/common/images/express/renrenex.png','http://www.renrenex.com/',9999,1704193937),('rl-carriers','RL Carriers','','800-543-5589','https://cdn.parcelpanel.com/assets/common/images/express/rl-carriers.png','https://www.rlcarriers.com/shiptrace.asp',214,1704193937),('roadbull','Roadbull Logistics','','(+65) 6812 9797','https://cdn.parcelpanel.com/assets/common/images/express/roadbull.png','https://www.roadbull.com/',9999,1704193937),('rosan','ROSAN EXPRESS','','+86 134 342 72270','https://cdn.parcelpanel.com/assets/common/images/express/rosan.png','https://t.meest-group.com/',9999,1704193937),('royal-international','Royal International','','852-53401851','https://cdn.parcelpanel.com/assets/common/images/express/royal-international.png','http://www.royal-international.cc/',9999,1704193937),('royal-mail','UK Royal Mail','','03457 641 641','https://cdn.parcelpanel.com/assets/common/images/express/royal-mail.png','https://www.royalmail.com/track-your-item#/tracking-results/******',34,1704193937),('royal-shipments','Royal Shipments','','22 122 12 18','https://cdn.parcelpanel.com/assets/common/images/express/royal-shipments.png','http://royalshipments.com',9999,1704193937),('rpx','RPX Indonesia','','+62 0-800-1-888-900','https://cdn.parcelpanel.com/assets/common/images/express/rpx.png','https://www.rpx.co.id/en/your-assistant/domestic-tracking/',9999,1704193937),('rpxonline','RPX Online','','+852 2620 0289','https://cdn.parcelpanel.com/assets/common/images/express/rpxonline.png','http://www.rpx.com.cn/',9999,1704193937),('rrdonnelley','RR Donnelley','','','https://cdn.parcelpanel.com/assets/common/images/express/rrdonnelley.png','https://internationalservices.rrd.com/ParcelTracker/HomePageTracker',219,1704193937),('rrs','RRS Logistics','','400-800-9999','https://cdn.parcelpanel.com/assets/common/images/express/rrs.png','https://www.rrswl.com',9999,1704193937),('rrts','Roadrunner Freight','','','https://cdn.parcelpanel.com/assets/common/images/express/rrts.png','http://tools.rrts.com/LTLTrack/?searchValues=******',219,1704193937),('rufengda','Rufengda','','400-010-6660','https://cdn.parcelpanel.com/assets/common/images/express/rufengda.png','http://www.rufengda.com/page/twoPage/waybill.html',9999,1704193937),('runbail','Run Bai Internation','','','https://cdn.parcelpanel.com/assets/common/images/express/runbail.png','http://www.runbail.com/',9999,1704193937),('russian-post','Russian Post','','+7 (495) 956-20-67','https://cdn.parcelpanel.com/assets/common/images/express/russian-post.png','https://www.pochta.ru/tracking#******',212,1704193937),('ruston','Ruston','','400-656-0077','https://cdn.parcelpanel.com/assets/common/images/express/ruston.png','http://www.ruston.cc/customer/xiaojianchaxun.html',9999,1704193937),('rzyexpress','RZY Express','','+65 96982006','https://cdn.parcelpanel.com/assets/common/images/express/rzyexpress.png','http://rzyexpress.com.sg/track.php',9999,1704193937),('safexpress','Safexpress','','+911800113113','https://cdn.parcelpanel.com/assets/common/images/express/safexpress.png','http://www.safexpress.com/Portal/faces/TrackShipment.jspx?',9999,1704193937),('sagawa','Sagawa','','','https://cdn.parcelpanel.com/assets/common/images/express/sagawa.png','http://k2k.sagawa-exp.co.jp/p/sagawa/web/okurijosearcheng.jsp',174,1704193937),('sagawa-global','Sagawa Global','','','https://cdn.parcelpanel.com/assets/common/images/express/sagawa-global.png','https://tracking.sagawa-sgx.com/sgx/trackeng.asp?enc=ENG&cat=AWB&awb=******',219,1704193937),('saia-freight','Saia LTL Freight','','1-800-765-7242','https://cdn.parcelpanel.com/assets/common/images/express/saia-freight.png','https://www.saia.com/',9999,1704193937),('saicheng','Sai Cheng Logistics','','+61 1300 883 856','https://cdn.parcelpanel.com/assets/common/images/express/saicheng.png','http://www.saichenglogistics.com/a/waybill/',9999,1704193937),('sailpost','Sailpost','','800933311','https://cdn.parcelpanel.com/assets/common/images/express/sailpost.png','https://www.sailpost.it',9999,1704193937),('saint-lucia-post','Saint Lucia Post','','1 (758) 452-2671','https://cdn.parcelpanel.com/assets/common/images/express/saint-lucia-post.png','http://www.stluciapostal.com/global-track-trace/',9999,1704193937),('sameday','sameday','','','https://cdn.parcelpanel.com/assets/common/images/express/sameday.png','https://sameday.ro/#awb=******',212,1704193937),('samoa-post','Samoa Post','','+ 685-27640','https://cdn.parcelpanel.com/assets/common/images/express/samoa-post.png','http://samoapost.ws/',9999,1704193937),('san-marino-post','San Marino Post','','(378) 0549-882564','https://cdn.parcelpanel.com/assets/common/images/express/san-marino-post.png','https://www.poste.sm/on-line/home/servizi/servizi-on-line/tracciatura-oggetti-a-firma.html#service',9999,1704193937),('sap-express','SAP Express','','021 2280 6611','https://cdn.parcelpanel.com/assets/common/images/express/sap-express.png','https://www.sap-express.id/layanan/tracking/track',9999,1704193937),('saudi-post','Saudi Post','','19992','https://cdn.parcelpanel.com/assets/common/images/express/saudi-post.png','https://splonline.com.sa/en/shipmentdetailsstatic/?tid=******',199,1704193937),('scaexpress','Sca Express','','','https://cdn.parcelpanel.com/assets/common/images/express/scaexpress.png','https://scaexpress.com.au/tracking/',9999,1704193937),('scg-express','SCG Express','','','https://cdn.parcelpanel.com/assets/common/images/express/scg-express.png','https://www.scgexpress.co.th/tracking/index',9999,1704193937),('sdhexpress','SDH Express','','','https://cdn.parcelpanel.com/assets/common/images/express/sdhexpress.png','https://www.sdh-scm.com/',80,1704193937),('sdk-express','SDK Express','','','https://cdn.parcelpanel.com/assets/common/images/express/sdk-express.png','http://www.sdk-express.cn/track.aspx',9999,1704193937),('sdto','Sdto','','0082 10-6860-8188','https://cdn.parcelpanel.com/assets/common/images/express/sdto.png','http://www.sdto.hk/',9999,1704193937),('se-freightlines','Southeastern Freightlines','','','https://cdn.parcelpanel.com/assets/common/images/express/se-freightlines.png','https://www.sefl.com/Tracing/index.jsp',9999,1704193937),('segmail','Segmail','','','https://cdn.parcelpanel.com/assets/common/images/express/segmail.png','https://track.myeship.co/es/track/track?no=******',9999,1704193937),('seino','SEINO(西濃運輸)','','','https://cdn.parcelpanel.com/assets/common/images/express/seino.png','https://track.seino.co.jp/cgi-bin/gnpquery.pgm?*****',9999,1704193937),('sendex','Sendex','','01 800 841 41 41','https://cdn.parcelpanel.com/assets/common/images/express/sendex.png','http://www.sendex.mx/Rastreo/Rastreo/',9999,1704193937),('sendle','Sendle','','','https://cdn.parcelpanel.com/assets/common/images/express/sendle.png','https://try.sendle.com/tracking',77,1704193937),('senegal-post','Senegal Post','','(221) 33 839 34 34','https://cdn.parcelpanel.com/assets/common/images/express/senegal-post.png','http://www.laposte.sn/laposte/tracking.php',9999,1704193937),('serbia-post','Serbia Post','','381 700 100 300','https://cdn.parcelpanel.com/assets/common/images/express/serbia-post.png','http://www.posta.rs/struktura/eng/aplikacije/alati/posiljke.asp',214,1704193937),('serpost','Serpost','','(51) 511-5000','https://cdn.parcelpanel.com/assets/common/images/express/serpost.png','http://www.serpost.com.pe/',9999,1704193937),('setel','Setel Express','','','https://cdn.parcelpanel.com/assets/common/images/express/setel.png','https://track.setel.com/t/******',9999,1704193937),('seychelles-post','Seychelles Post','','(248) 428 85 55','https://cdn.parcelpanel.com/assets/common/images/express/seychelles-post.png','http://www.seychelles-post.com/globaltrack.php',9999,1704193937),('sf-express','SF Express','','+86 95338','https://cdn.parcelpanel.com/assets/common/images/express/sf-express.png','http://www.sf-express.com/us/en/dynamic_function/waybill/#search/bill-number/******',9999,1704193937),('sfb2c','SF International','','(+86) 9533883','https://cdn.parcelpanel.com/assets/common/images/express/sfb2c.png','http://www.sf-express.com/us/en/dynamic_function/waybill/#search/bill-number/******',59,1704193937),('sfcservice','SFC Service','','+86 400-881-8106','https://cdn.parcelpanel.com/assets/common/images/express/sfcservice.png','http://www.sfcservice.com/track/track/track',110,1704193937),('sfwl','sfwl','','4008-556688','https://cdn.parcelpanel.com/assets/common/images/express/sfwl.png','http://www.sfwl.com.cn/',9999,1704193937),('sfydexpress','SFYD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/sfydexpress.png','http://www.sfydexpress.com/track.html?c=******',102,1704193937),('sgt-it','SGT Corriere Espresso','','+39 02 580751','https://cdn.parcelpanel.com/assets/common/images/express/sgt-it.png','https://my.sgt.it/Shippings/QuickActions/QuickTracking_Shippings?LdvQuickSearch=******',9999,1704193937),('sgtwl','SGT Express','','+86 0755-82811186','https://cdn.parcelpanel.com/assets/common/images/express/sgtwl.png','http://www.sgtwl.cn/',9999,1704193937),('shadowfax','Shadowfax','','','https://cdn.parcelpanel.com/assets/common/images/express/shadowfax.png','https://tracker.shadowfax.in/#/',201,1704193937),('shangqiao56','Shang Qiao','','','https://cdn.parcelpanel.com/assets/common/images/express/shangqiao56.png','http://www.shangqiao56.com/page/query/logQuery.html?orderId=******',9999,1704193937),('ship-it-asia','Ship It Asia','','','https://cdn.parcelpanel.com/assets/common/images/express/ship-it-asia.png','https://viewider.com/labs/shipment/track',9999,1704193937),('shipa','Shipa','','80074472','https://cdn.parcelpanel.com/assets/common/images/express/shipa.png','https://tracking.shipadelivery.com/?bc=******',196,1704193937),('shipentegra','ShipEntegra','','0（850）550 5859','https://cdn.parcelpanel.com/assets/common/images/express/shipentegra.png','https://shipentegra.com',216,1704193937),('shipgce','Shipgce Express','','626-527-5800','https://cdn.parcelpanel.com/assets/common/images/express/shipgce.png','https://express.shipgce.com/postcheck.htm?checkvalue=******&type=identity',9999,1704193937),('shippit','shippit','','','https://cdn.parcelpanel.com/assets/common/images/express/shippit.png','https://www.shippit.com/',9999,1704193937),('shiprocket','Shiprocket','','','https://cdn.parcelpanel.com/assets/common/images/express/shiprocket.png','https://www.shiprocket.in/shipment-tracking/',187,1704193937),('showl','Showl','','0769-8561-8358','https://cdn.parcelpanel.com/assets/common/images/express/showl.png','http://www.showl.com/chajian/',9999,1704193937),('shree-mahabali-express','Shree Mahabali Express','','+91 (0261)2410414','https://cdn.parcelpanel.com/assets/common/images/express/shree-mahabali-express.png','http://www.shreemahabaliexpress.com/',9999,1704193937),('shree-nandan','Shree Nandan Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/shree-nandan.png','http://www.shreenandancourier.com/TrackingInfo.aspx?cn=******',9999,1704193937),('shree-tirupati','Shree Tirupati Courier','','+9102613995227','https://cdn.parcelpanel.com/assets/common/images/express/shree-tirupati.png','http://www.trackcourier.in/tracking-shreetirupati.php',194,1704193937),('shreeanjanicourier','Shree Anjani Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/shreeanjanicourier.png','http://anjanicourier.in/Doc_Track.aspx?No=******',9999,1704193937),('shreemaruticourier','Shree Maruti Courier','','+91 9712 666 666','https://cdn.parcelpanel.com/assets/common/images/express/shreemaruticourier.png','https://shreemaruti.com/',202,1704193937),('shunchangguoji','Shun Chang International','','','https://cdn.parcelpanel.com/assets/common/images/express/shunchangguoji.png','http://shunchang.kingtrans.net/WebTrack',9999,1704193937),('sicepat','Sicepat Ekspres','','','https://cdn.parcelpanel.com/assets/common/images/express/sicepat.png','https://www.sicepat.com/checkAwb',142,1704193937),('singapore-post','Singapore Post','','1605 / +65 6222 5777','https://cdn.parcelpanel.com/assets/common/images/express/singapore-post.png','https://www.singpost.com/',168,1704193937),('sinoair','SINOAIR','','010-80418808','https://cdn.parcelpanel.com/assets/common/images/express/sinoair.png','https://www.sinoex.com.cn/track?nums=',9999,1704193937),('siodemka','Siodemka','','','https://cdn.parcelpanel.com/assets/common/images/express/siodemka.png','https://tracktrace.dpd.com.pl',9999,1704193937),('sj-kd','SJ KD','','','https://cdn.parcelpanel.com/assets/common/images/express/sj-kd.png','http://ywlj.rtb56.com/track_query.aspx',9999,1704193937),('sja56','Sja56','','400-707-1158','https://cdn.parcelpanel.com/assets/common/images/express/sja56.png','http://www.sja56.cn/',9999,1704193937),('sjtsz','SJTSZ Express','','0755-27775501','https://cdn.parcelpanel.com/assets/common/images/express/sjtsz.png','http://47.52.141.31:8089/',9999,1704193937),('skr56','SKR InterNational','','0755-8465-2253','https://cdn.parcelpanel.com/assets/common/images/express/skr56.png','http://www.skr56.com/',9999,1704193937),('sky-postal','SKY Postal','','','https://cdn.parcelpanel.com/assets/common/images/express/sky-postal.png','https://tracking.skypostal.com/single-tracking.aspx?trck_number=******',9999,1704193937),('skybox','skybox','','','https://cdn.parcelpanel.com/assets/common/images/express/skybox.png','https://get.attskybox.com/tracking',9999,1704193937),('skyex','Sky Express','','','https://cdn.parcelpanel.com/assets/common/images/express/skyex.png','https://skyexpressinternational.com/Home/Tracking',192,1704193937),('skynet','SkyNet Malaysia','','603- 56239090','https://cdn.parcelpanel.com/assets/common/images/express/skynet.png','http://www.skynet.com.my/track',9999,1704193937),('skynet-za','Skynet South Africa','','','https://cdn.parcelpanel.com/assets/common/images/express/skynet-za.png','https://api.skynet.co.za:3227/api/waybill/getWaybillTracking/?waybillReference=******',9999,1704193937),('skynetworldwide','SkyNet Worldwide Express','','+44 (0) 20 8538 1988','https://cdn.parcelpanel.com/assets/common/images/express/skynetworldwide.png','http://sky.skynet.net/public/Tracking.aspx?guide=******',219,1704193937),('skynetworldwide-uk','Skynet Worldwide Express UK','','+44 20 8538 1988','https://cdn.parcelpanel.com/assets/common/images/express/skynetworldwide-uk.png','https://www.skynetworldwide.com/services/track-and-trace',9999,1704193937),('slovakia-post','Slovakia Post','','(421) 48 437 87 77','https://cdn.parcelpanel.com/assets/common/images/express/slovakia-post.png','https://tandt.posta.sk/en',208,1704193937),('slovenia-post','Slovenia Post','','386 080 14 00','https://cdn.parcelpanel.com/assets/common/images/express/slovenia-post.png','https://sledenje.posta.si/Default.aspx',173,1704193937),('smart-delivery','Smart Delivery','','','https://cdn.parcelpanel.com/assets/common/images/express/smart-delivery.png','https://www.smartdelivery.kz/',9999,1704193937),('smartcat','Smartcat','','','https://cdn.parcelpanel.com/assets/common/images/express/smartcat.png','',9999,1704193937),('smartr','Smartr Logistics','','1860-210-1999','https://cdn.parcelpanel.com/assets/common/images/express/smartr.png','http://www.smartr.in/',170,1704193937),('smooth','Smooth Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/smooth.png','https://app.smoothparcel.com/trackmyshipments',9999,1704193937),('smsa-express','SMSA Express','','+966 92000 9999','https://cdn.parcelpanel.com/assets/common/images/express/smsa-express.png','http://www.smsaexpress.com/Track.aspx?tracknumbers=******',219,1704193937),('solidlogistics','Solid Logistcs','','+86 13681759975','https://cdn.parcelpanel.com/assets/common/images/express/solidlogistics.png','http://39.108.136.109:8066/OrderSearch/index.html#/',9999,1704193937),('solomon-post','Solomon Post','','','https://cdn.parcelpanel.com/assets/common/images/express/solomon-post.png','https://www.ems.post/en/global-network/tracking',9999,1704193937),('sonapost','Burkina Faso Post','','(226) 25 30 64 20','https://cdn.parcelpanel.com/assets/common/images/express/sonapost.png','http://webtracking.sonapost.bf/webtracking/',9999,1704193937),('south-africa-post','South African Post Office','','+(27) 0860 111 502','https://cdn.parcelpanel.com/assets/common/images/express/south-africa-post.png','http://www.postoffice.co.za/',9999,1704193937),('southamericapost','South American Post','','','https://cdn.parcelpanel.com/assets/common/images/express/southamericapost.png','',9999,1704193937),('specialised-freight','Specialised Freight','','+27 21 528 1000','https://cdn.parcelpanel.com/assets/common/images/express/specialised-freight.png','http://tracking.parcelperfect.com/login.php',9999,1704193937),('speed-post','Speed Post','','+91 1800 11 2011','https://cdn.parcelpanel.com/assets/common/images/express/speed-post.png','http://www.indiapost.gov.in/',9999,1704193937),('speedaf','Speedaf Express','','','https://cdn.parcelpanel.com/assets/common/images/express/speedaf.png','https://speedaf.com/cn-cn',9999,1704193937),('speedee','Spee-Dee Delivery','','800-862-5578','https://cdn.parcelpanel.com/assets/common/images/express/speedee.png','http://speedeedelivery.com/',215,1704193937),('speedexcourier','Speedex Courier','','+965 1881881','https://cdn.parcelpanel.com/assets/common/images/express/speedexcourier.png','https://mybox.postaplus.com/#track-shipments',9999,1704193937),('speedpak','SpeedPAK','','86-21-60556068','https://cdn.parcelpanel.com/assets/common/images/express/speedpak.png','http://www.orangeconnex.com.cn/tracking',9999,1704193937),('speedy','SPEEDY','','','https://cdn.parcelpanel.com/assets/common/images/express/speedy.png','https://www.speedy.bg/en/track-shipment',9999,1704193937),('spoton','Spoton Logistics','','1800 102 1414','https://cdn.parcelpanel.com/assets/common/images/express/spoton.png','https://web1.spoton.co.in/spotoncontracker.html',9999,1704193937),('spring-gds','Spring GDS','','','https://cdn.parcelpanel.com/assets/common/images/express/spring-gds.png','https://mailingtechnology.com/tracking/',217,1704193937),('sprintpack','SprintPack','','+86 10 67762567','https://cdn.parcelpanel.com/assets/common/images/express/sprintpack.png','http://track.sprintpack.com.cn/',9999,1704193937),('sps-sro','Slovak Parcel Service','','','https://cdn.parcelpanel.com/assets/common/images/express/sps-sro.png','https://www.sps-sro.sk/',9999,1704193937),('spsr','SPSR','','+7 (495) 981-10-10','https://cdn.parcelpanel.com/assets/common/images/express/spsr.png','https://www.spsr.ru/ru/service/monitoring?search=******',9999,1704193937),('spx-id','SPX ID','','1500702','https://cdn.parcelpanel.com/assets/common/images/express/spx-id.png','https://spx.co.id/#/detail/******',9999,1704193937),('spx-my','Shopee Express Malaysia','','+603 2777-9222','https://cdn.parcelpanel.com/assets/common/images/express/spx-my.png','https://shopeexpress.com.my',9999,1704193937),('spx-ph','Shopee Express Philipines','','0288805200','https://cdn.parcelpanel.com/assets/common/images/express/spx-ph.png','https://spx.ph/#/detail/******',9999,1704193937),('spx-vn','Shopee Express Vietnam','','19001221','https://cdn.parcelpanel.com/assets/common/images/express/spx-vn.png','https://spx.vn',9999,1704193937),('srekorea','SRE Korea','','+82 02 2661 0055','https://cdn.parcelpanel.com/assets/common/images/express/srekorea.png','http://www.srekorea.co.kr/home/index.html',9999,1704193937),('sri-lanka-post','Sri Lanka Post','','(94) 011 2325111','https://cdn.parcelpanel.com/assets/common/images/express/sri-lanka-post.png','http://www.slpost.gov.lk/',215,1704193937),('ssd','Ssd','','0472-8598668','https://cdn.parcelpanel.com/assets/common/images/express/ssd.png','https://ssd.nmrhzk.cn/deliver/ssd/index.html',9999,1704193937),('stallionexpress','Stallion Express','','','https://cdn.parcelpanel.com/assets/common/images/express/stallionexpress.png','https://stallionexpress.ca/tracking/',9999,1704193937),('star-track','StarTrack','','+61 13 2345','https://cdn.parcelpanel.com/assets/common/images/express/star-track.png','https://startrack.com.au/',191,1704193937),('star-wish','StarWish','','','https://cdn.parcelpanel.com/assets/common/images/express/star-wish.png','http://www.star-wish.cn/',70,1704193937),('starglobal','Star Global','','','https://cdn.parcelpanel.com/assets/common/images/express/starglobal.png','',9999,1704193937),('starken','Starken','','','https://cdn.parcelpanel.com/assets/common/images/express/starken.png','https://www.starken.cl/',149,1704193937),('starlinks','Starlinks','','','https://cdn.parcelpanel.com/assets/common/images/express/starlinks.png','https://www.starlinks-me.com/track-your-shipment',9999,1704193937),('ste56','Suteng Logistics','','400-650-6666','https://cdn.parcelpanel.com/assets/common/images/express/ste56.png','http://www.ste56.com/kehu.aspx',9999,1704193937),('stepforwardfs','Step Forward Freight','','','https://cdn.parcelpanel.com/assets/common/images/express/stepforwardfs.png','https://stepforwardfs.com///?tracking=******',9999,1704193937),('sto','STO Express','','95543','https://cdn.parcelpanel.com/assets/common/images/express/sto.png','http://www.sto.cn',9999,1704193937),('stone3pl','STONE3PL','','','https://cdn.parcelpanel.com/assets/common/images/express/stone3pl.png','https://www.exfresh.com.cn/',9999,1704193937),('sudan-post','Sudan Post','','+1-345-949-6263','https://cdn.parcelpanel.com/assets/common/images/express/sudan-post.png','http://www.sudapost.com/',9999,1704193937),('sumxpress','Sum Xpress','','+86-0755-84869607','https://cdn.parcelpanel.com/assets/common/images/express/sumxpress.png','http://www.sumxpress.com',9999,1704193937),('suning','SUNING','','95315','https://cdn.parcelpanel.com/assets/common/images/express/suning.png','http://wuliu.suning.com/slp/home/home.htm',9999,1704193937),('sunjex','Xinjie Logistics','','18616218802','https://cdn.parcelpanel.com/assets/common/images/express/sunjex.png','http://www.sunjex.com/',9999,1704193937),('sunyou','Sunyou','','400-607-5388','https://cdn.parcelpanel.com/assets/common/images/express/sunyou.png','https://www.sypost.net/search?orderNo=******',29,1704193937),('super-parcel','Super Parcel','','+86-19975321596','https://cdn.parcelpanel.com/assets/common/images/express/super-parcel.png','https://track-sp.com/tracking/detail',35,1704193937),('super-ton','Superton','','18688829756','https://cdn.parcelpanel.com/assets/common/images/express/super-ton.png','https://www.super-ton.com/',9999,1704193937),('superb-express','Superb Express','','01703076336','https://cdn.parcelpanel.com/assets/common/images/express/superb-express.png','http://www.superb-express.com/',9999,1704193937),('superoz','SuperOZ Logistics','','+61 07-31942954','https://cdn.parcelpanel.com/assets/common/images/express/superoz.png','http://www.superoz.com.au/track.html',9999,1704193937),('sure56','Sure56','','400-158-9888','https://cdn.parcelpanel.com/assets/common/images/express/sure56.png','http://www.sure56.com/Demo_contatc.asp',9999,1704193937),('suyd56','SYD Express','','0755-86265929','https://cdn.parcelpanel.com/assets/common/images/express/suyd56.png','http://sud.kingtrans.cn/WebTrack',9999,1704193937),('svgpost','Saint Vincent And The Grenadines','','(784) 4571744','https://cdn.parcelpanel.com/assets/common/images/express/svgpost.png','http://www.gpost.ge/?site-lang=ka&site-path=help/tracking/',9999,1704193937),('sweden-posten','PostNord','','+46 771 33 33 10','https://cdn.parcelpanel.com/assets/common/images/express/sweden-posten.png','https://www.postnord.se/sok/sok?searchquery=******',109,1704193937),('swiship-au','FBA AU Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-au.png','https://www.swiship.com.au/track/?id=******',177,1704193937),('swiship-ca','FBA CA Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-ca.png','https://www.swiship.ca/track/?loc=zh-CN&id=*****',219,1704193937),('swiship-de','FBA DE Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-de.png','https://www.swiship.de/track/?id=******',194,1704193937),('swiship-es','FBA ES Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-es.png','https://www.swiship.es/track/?id=******',219,1704193937),('swiship-fr','FBA FR Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-fr.png','https://www.swiship.fr/track?id=******',9999,1704193937),('swiship-it','FBA IT Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-it.png','https://www.swiship.it/track?loc=it-IT&id=******',214,1704193937),('swiship-jp','FBA JP Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-jp.png','https://www.swiship.jp/track/?loc=ja-JP&id=******',9999,1704193937),('swiship-uk','FBA UK Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-uk.png','https://www.swiship.co.uk/track/?id=******',44,1704193937),('swiship-usa','FBA USA Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-usa.png','https://www.swiship.com/track/?id=******',53,1704193937),('swiss-post','Swiss Post','','0848 888 888','https://cdn.parcelpanel.com/assets/common/images/express/swiss-post.png','https://www.post.ch/swisspost-tracking?formattedParcelCodes=******',69,1704193937),('sxexpress','SX-Express','','+61 420319144','https://cdn.parcelpanel.com/assets/common/images/express/sxexpress.png','http://www.sxexpress.com.au/Search.aspx',9999,1704193937),('sxjdfreight','SXJD','','','https://cdn.parcelpanel.com/assets/common/images/express/sxjdfreight.png','https://www.sxjdfreight.com/',9999,1704193937),('syrian-post','Syrian Post','','(963) 2247563','https://cdn.parcelpanel.com/assets/common/images/express/syrian-post.png','http://www.syrianpost.gov.sy/',9999,1704193937),('sz-linkexpress','Link Supply Chain','','','https://cdn.parcelpanel.com/assets/common/images/express/sz-linkexpress.png','http://www.sz-linkexpress.com:8082/trackIndex.htm',9999,1704193937),('szdpex','DPEX China','','+86 4000633198','https://cdn.parcelpanel.com/assets/common/images/express/szdpex.png','https://dpex.com/track-and-trace/',9999,1704193937),('szendex','Szendex','','93 790 15 15','https://cdn.parcelpanel.com/assets/common/images/express/szendex.png','https://www.szendex.com',9999,1704193937),('szjiuz','JIUZHOU Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/szjiuz.png','http://szjiuz.sah.nextsls.com/tracking/app#/tracking',9999,1704193937),('szpago','Pago Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/szpago.png','http://pago.itdida.com/query.xhtml',9999,1704193937),('szuem','Szuem','','0755-27775333','https://cdn.parcelpanel.com/assets/common/images/express/szuem.png','http://www.szuem.com/',9999,1704193937),('szyn','YingNuo Supply Chain','','','https://cdn.parcelpanel.com/assets/common/images/express/szyn.png','',9999,1704193937),('t-cat','T Cat','','412-8888','https://cdn.parcelpanel.com/assets/common/images/express/t-cat.png','https://www.t-cat.com.tw/inquire/explain.aspx',9999,1704193937),('taijin-logistics','Taijin-logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/taijin-logistics.png','https://taijin-logistics.tuhu.cn/',9999,1704193937),('taimek','Taimek','','(510)984-3783','https://cdn.parcelpanel.com/assets/common/images/express/taimek.png','http://www.taimek.com/',9999,1704193937),('taiwan-post','Chunghwa POST','','0800-700-365','https://cdn.parcelpanel.com/assets/common/images/express/taiwan-post.png','http://postserv.post.gov.tw/pstmail/main_mail.html',211,1704193937),('takesend','Takesend Logistics','','+86 400-640-5699','https://cdn.parcelpanel.com/assets/common/images/express/takesend.png','http://k5.takesend.com:8180/WebTrack',125,1704193937),('tanzania-post','Tanzania Post','','+(255) 22-2118280','https://cdn.parcelpanel.com/assets/common/images/express/tanzania-post.png','https://postashoptz.post/search?q=******',9999,1704193937),('taoplus','Taoplus','','0755-23211445','https://cdn.parcelpanel.com/assets/common/images/express/taoplus.png','http://www.taoplus.cc/',9999,1704193937),('taqbin-hk','TAQBIN Hong Kong','','(852) 2829-2222','https://cdn.parcelpanel.com/assets/common/images/express/taqbin-hk.png','http://www.bizlogi.com/WWTSGeneral/TrackingGeneral/Search.aspx',9999,1704193937),('taqbin-jp','Yamato Japan','','0120 01 9625','https://cdn.parcelpanel.com/assets/common/images/express/taqbin-jp.png','http://track.kuronekoyamato.co.jp/english/tracking',158,1704193937),('taqbin-my','TAQBIN Malaysia','','+60 1800-8-827246','https://cdn.parcelpanel.com/assets/common/images/express/taqbin-my.png','http://myhuiai.com/mytrack/taqbin/',9999,1704193937),('tarrive','TONGDA Global','','0532-80990826','https://cdn.parcelpanel.com/assets/common/images/express/tarrive.png','http://www.tarrive.com/',133,1704193937),('tascourier','TAScourier','','210 8846000','https://cdn.parcelpanel.com/assets/common/images/express/tascourier.png','https://www.tascourier.gr/',9999,1704193937),('taxydromiki','Geniki Taxydromiki','','+30 210 4851100','https://cdn.parcelpanel.com/assets/common/images/express/taxydromiki.png','https://www.taxydromiki.com/track/******',215,1704193937),('tci','TCI Express','','+91 1800 2000 977','https://cdn.parcelpanel.com/assets/common/images/express/tci.png','https://www.tciexpress.in/trackingdocket.asp',9999,1704193937),('tcs-express','TCS Express','','','https://cdn.parcelpanel.com/assets/common/images/express/tcs-express.png','https://www.tcsexpress.com/tracking',176,1704193937),('tele-post','Greenland Post','','89 15 55','https://cdn.parcelpanel.com/assets/common/images/express/tele-post.png','https://tracktrace.telepost.services/?lang=kl&q=******',9999,1704193937),('test-carrier','Test Carrier','','','https://cdn.parcelpanel.com/assets/common/images/express/test-carrier.png','https://www.trackingmore.com/carriers.html',9999,1704193937),('tforce','TForce Final Mile','','','https://cdn.parcelpanel.com/assets/common/images/express/tforce.png','https://direct.tfesg.com/finalmiletrack/Track',212,1704193937),('tgx','TGX','','','https://cdn.parcelpanel.com/assets/common/images/express/tgx.png','http://hk.kerryexpress.com/track?track=******',9999,1704193937),('thabit-logistics','Thabit Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/thabit-logistics.png','https://thabit-logistics.com/track-shipment',9999,1704193937),('thailand-post','Thailand Post','','+ (66) 0 2831 3131','https://cdn.parcelpanel.com/assets/common/images/express/thailand-post.png','http://track.thailandpost.co.th/tracking/default.aspx',198,1704193937),('thecourierguy','The Courier Guy','','010 222 2300','https://cdn.parcelpanel.com/assets/common/images/express/thecourierguy.png','http://www.thecourierguy.co.za/tracking_home.php',173,1704193937),('thecourierguy-co','The Courier Guy Co','','010 222 2300','https://cdn.parcelpanel.com/assets/common/images/express/thecourierguy-co.png','https://portal.thecourierguy.co.za',193,1704193937),('thelorry','The Lorry','','','https://cdn.parcelpanel.com/assets/common/images/express/thelorry.png','https://thelorry.com/v3/my/tracking/******',9999,1704193937),('tianyun','Tianyun International','','','https://cdn.parcelpanel.com/assets/common/images/express/tianyun.png','http://47.115.152.56:8883/BestECOnline/',9999,1704193937),('timelytitan','Timelytitan','','+31(0)10 7371 864','https://cdn.parcelpanel.com/assets/common/images/express/timelytitan.png','https://www.timelytitan.com/',9999,1704193937),('timisc','TIMISC','','134-1399-6641','https://cdn.parcelpanel.com/assets/common/images/express/timisc.png','http://www.timisc.com/orderTracking.htm',191,1704193937),('tip-sa','TIPSA','','902 10 10 47','https://cdn.parcelpanel.com/assets/common/images/express/tip-sa.png','http://www.tip-sa.com/',9999,1704193937),('tk-kit','Tk Kit','','8 (800) 23456-50','https://cdn.parcelpanel.com/assets/common/images/express/tk-kit.png','https://tk-kit.ru/',9999,1704193937),('tmw-express','Tmw Express','','','https://cdn.parcelpanel.com/assets/common/images/express/tmw-express.png','http://www.tmw-express.com.au/#/',9999,1704193937),('tnt','TNT','','1 800 558 5555','https://cdn.parcelpanel.com/assets/common/images/express/tnt.png','http://www.tnt.com/',57,1704193937),('tnt-au','TNT Australia','','131150','https://cdn.parcelpanel.com/assets/common/images/express/tnt-au.png','https://www.tntexpress.com.au/interaction/trackntrace.aspx',216,1704193937),('tnt-click','TNT Click','','+39 199 803 868','https://cdn.parcelpanel.com/assets/common/images/express/tnt-click.png','https://www.tnt-click.it/',9999,1704193937),('tnt-fr','TNT France','','0825071071','https://cdn.parcelpanel.com/assets/common/images/express/tnt-fr.png','http://www.tnt.fr/',128,1704193937),('tnt-it','TNT Italy','','+39 199 803 868','https://cdn.parcelpanel.com/assets/common/images/express/tnt-it.png','https://www.tnt.it/tracking/Tracking.do',144,1704193937),('tnt-lt','TNT LT','','','https://cdn.parcelpanel.com/assets/common/images/express/tnt-lt.png','http://www.tnt.com',9999,1704193937),('tnt-reference','TNT Reference','','+1 800 558 5555','https://cdn.parcelpanel.com/assets/common/images/express/tnt-reference.png','http://www.tnt.com/webtracker/tracker.do?navigation=1&respLang=en',9999,1704193937),('tnt-uk','TNT UK','','0800 100 600','https://cdn.parcelpanel.com/assets/common/images/express/tnt-uk.png','https://www.tnt.com/express/en_gb/site/shipping-tools/tracking.html?searchType=con&cons=******',206,1704193937),('togo-post','Togo Post','','(228) 22214403','https://cdn.parcelpanel.com/assets/common/images/express/togo-post.png','http://41.207.181.70/webtracking/',9999,1704193937),('toll','TOLL','','+61 13 15 31 / +852 8106 3232','https://cdn.parcelpanel.com/assets/common/images/express/toll.png','https://www.mytoll.com/?externalSearchQuery=******&op=Search',167,1704193937),('toll-ipec','Team Global Express (Toll IPEC)','','+61 1300 865 547','https://cdn.parcelpanel.com/assets/common/images/express/toll-ipec.png','https://teamglobalexp.com/',163,1704193937),('tonga-post','Tonga Post','','+(676) 21700','https://cdn.parcelpanel.com/assets/common/images/express/tonga-post.png','http://tongapost.to/',9999,1704193937),('topdser','TD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/topdser.png','https://www.tdexpress.net/?tn=******',178,1704193937),('toptrans','Toptrans','','','https://cdn.parcelpanel.com/assets/common/images/express/toptrans.png','https://apis.toptrans.cz/search',9999,1704193937),('topyou','TopYou','','0755-28222577','https://cdn.parcelpanel.com/assets/common/images/express/topyou.png','http://www.szty56.com/',159,1704193937),('tracknator','Tracknator','','','https://cdn.parcelpanel.com/assets/common/images/express/tracknator.png','https://www.tracknator.com/#/track/******',201,1704193937),('trackon','Trackon Courier','','079 - 40242100 /101 /102 /103','https://cdn.parcelpanel.com/assets/common/images/express/trackon.png','http://trackoncourier.com/default.aspx',213,1704193937),('trackyourparcel','Trackyourparcel','','','https://cdn.parcelpanel.com/assets/common/images/express/trackyourparcel.png','https://www.trackyourparcel.eu/track/form',83,1704193937),('trakpak','P2P TrakPak','','+44 (0) 1268 533114','https://cdn.parcelpanel.com/assets/common/images/express/trakpak.png','https://fcbtracking.fedex.com/?MyFICNumber=******',218,1704193937),('transrush','Transrush','','4008311333','https://cdn.parcelpanel.com/assets/common/images/express/transrush.png','http://member.transrush.com/Transport/LogisticsTransferTrace.aspx?code=******&vcode=&source=undefined',9999,1704193937),('trunkrs-nl','Trunkrs','','','https://cdn.parcelpanel.com/assets/common/images/express/trunkrs-nl.png','https://parcel.trunkrs.nl',9999,1704193937),('tstexp','Tstexp','','400-012-9139 718-939-2023','https://cdn.parcelpanel.com/assets/common/images/express/tstexp.png','https://www.tstexp.com/',9999,1704193937),('ttkd','TTKD Express','','4001-888888','https://cdn.parcelpanel.com/assets/common/images/express/ttkd.png','http://www.ttkdex.com/staticFiles/pages/queryExpress.html',9999,1704193937),('ttkeurope','Ttkeurope','','+44(0)161 223 2300','https://cdn.parcelpanel.com/assets/common/images/express/ttkeurope.png','',9999,1704193937),('tunisia-post','Tunisia Post','','(+216) 71 839 000','https://cdn.parcelpanel.com/assets/common/images/express/tunisia-post.png','http://www.poste.tn/',9999,1704193937),('turkey-post','Turkish Post (PTT)','','90312509 50 00','https://cdn.parcelpanel.com/assets/common/images/express/turkey-post.png','http://gonderitakip.ptt.gov.tr/en/',219,1704193937),('turkmenistan-post','Turkmenistan Post','','(99312) 398936','https://cdn.parcelpanel.com/assets/common/images/express/turkmenistan-post.png','http://www.turkmenpost.gov.tm/about_index.php',9999,1704193937),('tuvalu-post','Tuvalu Post','','','https://cdn.parcelpanel.com/assets/common/images/express/tuvalu-post.png','http://www.tuvalupost.tv/',9999,1704193937),('twth','TT Sucha','','','https://cdn.parcelpanel.com/assets/common/images/express/twth.png','http://www.ttsucha.com',9999,1704193937),('tzgjwl','Tianzheng International Freight','','','https://cdn.parcelpanel.com/assets/common/images/express/tzgjwl.png','http://zstz.kingtrans.cn//WebTrack',9999,1704193937),('tzky','Tzky','','400-6666-386','https://cdn.parcelpanel.com/assets/common/images/express/tzky.png','http://www.tzky.cn/',9999,1704193937),('u-speedex','U-Speed Express','','','https://cdn.parcelpanel.com/assets/common/images/express/u-speedex.png','http://www.u-speedex.com/en/queryTracks?no=******',9999,1704193937),('ubi-logistics','UBI Smart Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/ubi-logistics.png','http://smartparcel.gotoubi.com',49,1704193937),('ubonex','UBon Express','','+86 4008306050','https://cdn.parcelpanel.com/assets/common/images/express/ubonex.png','http://www.ubonex.cn/f/list-71.html?orderNum=******',9999,1704193937),('ubx-uk','UBX Express','','+44 01753 762 860','https://cdn.parcelpanel.com/assets/common/images/express/ubx-uk.png','https://www.ubx.uk.net/tracking/',9999,1704193937),('uc-express','UC Express','','+86 400 111 1119','https://cdn.parcelpanel.com/assets/common/images/express/uc-express.png','http://www.uce.cn/service/expressTracking.html',9999,1704193937),('udel','UDEL','','','https://cdn.parcelpanel.com/assets/common/images/express/udel.png','http://www.u-del.com/tracking',9999,1704193937),('uds56','UDS','','','https://cdn.parcelpanel.com/assets/common/images/express/uds56.png','http://www.uds56.com/postdh.php?lan=',9999,1704193937),('ueq','UEQ','','020-37639835','https://cdn.parcelpanel.com/assets/common/images/express/ueq.png','http://www.ueq.com',9999,1704193937),('uganda-post','Uganda Post','','(256) 414 -255511','https://cdn.parcelpanel.com/assets/common/images/express/uganda-post.png','http://www.ugapost.co.ug/',9999,1704193937),('uhiexpress','Youhai International Express','','（0049）17647833350','https://cdn.parcelpanel.com/assets/common/images/express/uhiexpress.png','http://www.uhiexpress.com/',9999,1704193937),('ukmail','UK Mail','','','https://cdn.parcelpanel.com/assets/common/images/express/ukmail.png','https://www.ukmail.com',9999,1704193937),('ukraine-ems','Ukraine EMS','','(380) 44 245-43-15','https://cdn.parcelpanel.com/assets/common/images/express/ukraine-ems.png','http://dpsz.ua/track/ems',9999,1704193937),('ukraine-post','Ukraine Post','','+380 44 323 20 99','https://cdn.parcelpanel.com/assets/common/images/express/ukraine-post.png','https://track.ukrposhta.ua/tracking_UA.html?barcode=******',169,1704193937),('uktracking-asendia','UK Asendia','','','https://cdn.parcelpanel.com/assets/common/images/express/uktracking-asendia.png','https://uktracking.asendia.com',9999,1704193937),('un-line','Un-line','','','https://cdn.parcelpanel.com/assets/common/images/express/un-line.png','http://www.un-line.com/index.asp',9999,1704193937),('uni','UniUni','','(604) 288-0006','https://cdn.parcelpanel.com/assets/common/images/express/uni.png','https://uniexpress.ca/tracking?no=******',116,1704193937),('uniteddeliveryservice','United Delivery Services','','','https://cdn.parcelpanel.com/assets/common/images/express/uniteddeliveryservice.png','http://www.uniteddeliveryservice.com/packageTrack.php',106,1704193937),('ups','UPS','','+1 800 742 5877','https://cdn.parcelpanel.com/assets/common/images/express/ups.png','https://www.ups.com/track?loc=en_US&tracknum=******&requester=WT/',24,1704193937),('ups-freight','TForce Freight (UPS Freight)','','+1 800-333-7400','https://cdn.parcelpanel.com/assets/common/images/express/ups-freight.png','https://www.tforcefreight.com/ltl/apps/Tracking?proNumbers=******',9999,1704193937),('ups-ground','UPS Ground','','1 800 742 5877','https://cdn.parcelpanel.com/assets/common/images/express/ups-ground.png','https://www.ups.com/track?loc=en_US&tracknum=******&requester=WT',9999,1704193937),('ups-mi','UPS Mail Innovations','','+1 800-500-2224','https://cdn.parcelpanel.com/assets/common/images/express/ups-mi.png','https://www.ups-mi.net/packageID/default.aspx',122,1704193937),('upu','UPU','','','https://cdn.parcelpanel.com/assets/common/images/express/upu.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('uruguay-post','Uruguay Post','','(598) 29160200','https://cdn.parcelpanel.com/assets/common/images/express/uruguay-post.png','http://www.correo.com.uy/seguimientodeenvios',9999,1704193937),('urvaam','urvaam','','','https://cdn.parcelpanel.com/assets/common/images/express/urvaam.png','https://www.urvaam.es/track',9999,1704193937),('usasd','Usasd','','718-886-5508','https://cdn.parcelpanel.com/assets/common/images/express/usasd.png','https://www.usasd.com/',9999,1704193937),('uskyexpress','Usky','','020-31230719','https://cdn.parcelpanel.com/assets/common/images/express/uskyexpress.png','http://www.uskyexpress.com:8082/trackIndex.htm',172,1704193937),('usps','USPS','','+1 800-275-8777','https://cdn.parcelpanel.com/assets/common/images/express/usps.png','https://tools.usps.com/go/TrackConfirmAction?tLabels=******',21,1704193937),('utec','utec','','+38(044)228 53 03','https://cdn.parcelpanel.com/assets/common/images/express/utec.png','https://www.utec.info/en/',9999,1704193937),('uvan','UVAN Express','','0755-23347927','https://cdn.parcelpanel.com/assets/common/images/express/uvan.png','http://www.uvan56.com',9999,1704193937),('uzbekistan-ems','Uzbekistan EMS','','00998 / (371) 233-5747','https://cdn.parcelpanel.com/assets/common/images/express/uzbekistan-ems.png','http://www.ems.post/operators/uzbekistan',9999,1704193937),('uzbekistan-post','Uzbekistan Post','','(371) 233-6474','https://cdn.parcelpanel.com/assets/common/images/express/uzbekistan-post.png','http://www.pochta.uz/en/2014-06-09-08-50-39/track-trace.html',143,1704193937),('v-xpress','V-Xpress','','9870 242 243','https://cdn.parcelpanel.com/assets/common/images/express/v-xpress.png','http://www.vxpress.in/track/',9999,1704193937),('valueway','VALUEWAY','','','https://cdn.parcelpanel.com/assets/common/images/express/valueway.png','http://www.valueway.net/',9999,1704193937),('vanuatu-post','Vanuatu Post','','678 22000','https://cdn.parcelpanel.com/assets/common/images/express/vanuatu-post.png','http://www.vanuatupost.vu/index.php/en/track-and-trace',9999,1704193937),('venipak','Venipak','','+370 5 2107717','https://cdn.parcelpanel.com/assets/common/images/express/venipak.png','https://www.venipak.lt/en/',217,1704193937),('vietnam-post','Vietnam Post','','+84 1900 54 54 81','https://cdn.parcelpanel.com/assets/common/images/express/vietnam-post.png','http://www.vnpost.vn/en-us/dinh-vi/buu-pham?key=******',162,1704193937),('viettelpost','Viettel Post','','+84 1900 8095','https://cdn.parcelpanel.com/assets/common/images/express/viettelpost.png','http://en.viettelpost.com.vn/',202,1704193937),('vncpost','VNCPost','','1900 1031','https://cdn.parcelpanel.com/assets/common/images/express/vncpost.png','https://vncpost.com/hanh-trinh-don-hang',9999,1704193937),('vova-logistics','VOVA Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/vova-logistics.png','https://www.vovalogistics.com/index.php?q=admin/main/index/',9999,1704193937),('wahana','Wahana','','+62217341688','https://cdn.parcelpanel.com/assets/common/images/express/wahana.png','https://www.wahana.com/index#track',9999,1704193937),('wanbexpress','Wanb Express','','0755-28918827','https://cdn.parcelpanel.com/assets/common/images/express/wanbexpress.png','http://www.wanbexpress.com/',31,1704193937),('wanyuyuntong','Wan Yu Yun Tong','','','https://cdn.parcelpanel.com/assets/common/images/express/wanyuyuntong.png','http://120.78.220.225:8086/xms/client/getTrack.htm?trackingNo=******',9999,1704193937),('wcxex','WCXEX','','','https://cdn.parcelpanel.com/assets/common/images/express/wcxex.png','https://www.wcxex.com/search_order.aspx',9999,1704193937),('wearepro','Pro Carrier','','','https://cdn.parcelpanel.com/assets/common/images/express/wearepro.png','https://tracking.weareprocarrier.com/?tn=******',182,1704193937),('weaship','Weaship','','','https://cdn.parcelpanel.com/assets/common/images/express/weaship.png','http://www.weaship.com.cn/',9999,1704193937),('wedo','WeDo Logistics','','+86 (0779)2050300','https://cdn.parcelpanel.com/assets/common/images/express/wedo.png','https://www.wedo.cz/',208,1704193937),('weworld-express','We World Express','','+852 2957 2700','https://cdn.parcelpanel.com/assets/common/images/express/weworld-express.png','https://www.weworldexpress.com/wwe/track',9999,1704193937),('wexsu','WEI XIANG SU','','','https://cdn.parcelpanel.com/assets/common/images/express/wexsu.png','https://wexsu.com/en/track',9999,1704193937),('whatsship','Whats Ship','','','https://cdn.parcelpanel.com/assets/common/images/express/whatsship.png','https://www.whatsship.com/',48,1704193937),('whistl','Whistl','','+44 1628 891 644','https://cdn.parcelpanel.com/assets/common/images/express/whistl.png','https://trackmyitem.whistl.co.uk/tracking/******',206,1704193937),('winit','Winit','','+86 400-996-0766','https://cdn.parcelpanel.com/assets/common/images/express/winit.png','http://track.winit.com.cn/tracking/index.php?s=/Index/result',9999,1704193937),('winlink','Winlink logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/winlink.png','http://www.winlinklogistics.com/trackIndex.html',201,1704193937),('wise-express','Wise Express','','4008-206-207','https://cdn.parcelpanel.com/assets/common/images/express/wise-express.png','http://www.shwise.cn/home/index.html#home-lnquire',218,1704193937),('wiseloads','Wiseloads','','+353749101911','https://cdn.parcelpanel.com/assets/common/images/express/wiseloads.png','https://wiseloads.dmsmatrix.net/trackings/get_info',9999,1704193937),('wishpost','WishPost','','13917283454','https://cdn.parcelpanel.com/assets/common/images/express/wishpost.png','https://wishpost.wish.com/tracking',210,1704193937),('wizmo','Wizmo','','','https://cdn.parcelpanel.com/assets/common/images/express/wizmo.png','https://shipwizmo.com/tracking',217,1704193937),('wmycc','Wanmeng','','0755-27080350','https://cdn.parcelpanel.com/assets/common/images/express/wmycc.png','https://wms.wmycc.com/tracking.aspx',9999,1704193937),('wndirect','wnDirect','','(+44) 1753 561 262','https://cdn.parcelpanel.com/assets/common/images/express/wndirect.png','https://wndirect.com/tracking.php?type=OR&ref=******&submit=#',9999,1704193937),('world-express','World Express','','','https://cdn.parcelpanel.com/assets/common/images/express/world-express.png','http://www.sedel.com/',9999,1704193937),('worldwide-logistics','Worldwide Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/worldwide-logistics.png','https://www.worldwide-logistics.cn',9999,1704193937),('wsgd-logistics','WSGD Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/wsgd-logistics.png','http://www.worldshipgd.com/',9999,1704193937),('wyngs','Wyngs','','','https://cdn.parcelpanel.com/assets/common/images/express/wyngs.png','http://www.wyngs-my.com/track?order=******',9999,1704193937),('x-eagle','EAGLE CROSS BORDER','','','https://cdn.parcelpanel.com/assets/common/images/express/x-eagle.png','https://shipeag.hk/index.html#contact',9999,1704193937),('xde','XDE Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/xde.png','https://www.xde.com.ph/track-trace',9999,1704193937),('xdexpress','XDEXPRESS','','03 9544 7322','https://cdn.parcelpanel.com/assets/common/images/express/xdexpress.png','http://www.xdexpress.com.au/Express.aspx',9999,1704193937),('xdp-uk','XDP Express','','+44 843 1782222','https://cdn.parcelpanel.com/assets/common/images/express/xdp-uk.png','https://www.xdp.co.uk/track.php?c=00000&code=000',215,1704193937),('xend','Xend Express','','+63.2.806.9363','https://cdn.parcelpanel.com/assets/common/images/express/xend.png','http://tracker.xend.com.ph/?waybill=******',9999,1704193937),('xf-lt56','XF-lt56','','0592-5679666','https://cdn.parcelpanel.com/assets/common/images/express/xf-lt56.png','http://xf-lt56.com/',9999,1704193937),('xingyunyi','XingYunYi','','','https://cdn.parcelpanel.com/assets/common/images/express/xingyunyi.png','http://wms.xingyunyi.cn/tracking?numbers',124,1704193937),('xlobo','Xlobo','','626-269-2912','https://cdn.parcelpanel.com/assets/common/images/express/xlobo.png','http://www.xlobo.com/',9999,1704193937),('xpoweb','XPO Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/xpoweb.png','https://track.xpoweb.com/ltl-shipment/******',9999,1704193937),('xpresspost','xpresspost','','1-866-607-6301','https://cdn.parcelpanel.com/assets/common/images/express/xpresspost.png','https://www.canadapost.ca/trackweb/en#/search?searchFor=******',9999,1704193937),('xqwl','XQ Express','','020-2917 2361','https://cdn.parcelpanel.com/assets/common/images/express/xqwl.png','http://121.40.73.213:8082/trackIndex.htm',9999,1704193937),('xru','XRU','','400-688-0611','https://cdn.parcelpanel.com/assets/common/images/express/xru.png','http://www.xru.com/',9999,1704193937),('xs-exp','Xin Shu Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/xs-exp.png','http://106.52.18.124:8082/trackIndex.htm',9999,1704193937),('xtl','Xun Tian International','','020-36833002','https://cdn.parcelpanel.com/assets/common/images/express/xtl.png','https://xtl.itdida.com',9999,1704193937),('xyslogistics','XYS Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/xyslogistics.png','http://xyslogistics.com/track.html?c=******',9999,1704193937),('yadex','Yadex','','0769-85157789','https://cdn.parcelpanel.com/assets/common/images/express/yadex.png','http://www.yadex.com.cn/',9999,1704193937),('yakit','yakit','','+1 408 645 0086','https://cdn.parcelpanel.com/assets/common/images/express/yakit.png','https://www.yakit.com/shipment-tracking/',9999,1704193937),('yanwen','Yanwen','','86 400-108-5656','https://cdn.parcelpanel.com/assets/common/images/express/yanwen.png','https://track.yw56.com.cn/cn/querydel?nums=******',23,1704193937),('ybdexpress','Ybd Express','','+86 18058848333','https://cdn.parcelpanel.com/assets/common/images/express/ybdexpress.png','http://www.ybdexpress.com',183,1704193937),('ydexp','Yide International Freight Forwarder','','400-820-0153','https://cdn.parcelpanel.com/assets/common/images/express/ydexp.png','http://www.ydexp.com/',9999,1704193937),('ydhex','YDH','','+86 400-888-1378','https://cdn.parcelpanel.com/assets/common/images/express/ydhex.png','http://www.ydhex.com/tools/inquire?number=******',62,1704193937),('yemen-post','Yemen Post','','( 967) 771000202','https://cdn.parcelpanel.com/assets/common/images/express/yemen-post.png','http://www.yemenpost.net/',9999,1704193937),('yfhex','YFHEX LOGISTICS','','0769-87001100','https://cdn.parcelpanel.com/assets/common/images/express/yfhex.png','http://www.yfhex.com',132,1704193937),('yht','Eshipping Gateway','','+86 0755-83257748','https://cdn.parcelpanel.com/assets/common/images/express/yht.png','https://www.eshippinggateway.com/uexpress/cargo-tracking.html?orderNo=******',139,1704193937),('yhtlogistics','Hanghangtong Logistics','','4001-6868-56','https://cdn.parcelpanel.com/assets/common/images/express/yhtlogistics.png','www.yhtlogistics.com',9999,1704193937),('yidingmu','Monotetrad','','','https://cdn.parcelpanel.com/assets/common/images/express/yidingmu.png','',9999,1704193937),('yimidida','YMDD','','4008-311-311','https://cdn.parcelpanel.com/assets/common/images/express/yimidida.png','https://www.yimidida.com/online/waybilltrack.jsp',9999,1704193937),('yixiang','YIXIANG','','','https://cdn.parcelpanel.com/assets/common/images/express/yixiang.png','http://www.szdhl.cn/',9999,1704193937),('yiyuan','YiYuan','','','https://cdn.parcelpanel.com/assets/common/images/express/yiyuan.png','http://139.196.166.242/search_order.aspx?trackNumber=******&BtnSearch=+',218,1704193937),('yji','YJI','','','https://cdn.parcelpanel.com/assets/common/images/express/yji.png','http://www.yanjin-gj.com/track.aspx',209,1704193937),('yjs-china','Yjs-China','','+0476-5602057','https://cdn.parcelpanel.com/assets/common/images/express/yjs-china.png','http://www.yjs-china.com/#',9999,1704193937),('ylexp','Yi Long Exp','','021- 54323229','https://cdn.parcelpanel.com/assets/common/images/express/ylexp.png','http://www.ylexp.com/',9999,1704193937),('ymy','Yong Man Yi','','','https://cdn.parcelpanel.com/assets/common/images/express/ymy.png','http://www.2ezi-ymy.com',9999,1704193937),('yodel','Yodel','','0844 755 0117','https://cdn.parcelpanel.com/assets/common/images/express/yodel.png','https://www.yodel.co.uk/track?error=5&parcel_id=31312414&postcode=1321',105,1704193937),('yoseus','Yousheng International Express','','765-688-0099','https://cdn.parcelpanel.com/assets/common/images/express/yoseus.png','https://www.yoseus.com',9999,1704193937),('youban','Postal State International','','02203-8095414','https://cdn.parcelpanel.com/assets/common/images/express/youban.png','http://www.youban.de/',9999,1704193937),('ysdpost','YSD Post','','','https://cdn.parcelpanel.com/assets/common/images/express/ysdpost.png','http://c.ysdpost.com:8082/trackIndex.htm',114,1704193937),('yto','YTO Express','','95554','https://cdn.parcelpanel.com/assets/common/images/express/yto.png','http://www.yto.net.cn/gw/service/Shipmenttracking.html',9999,1704193937),('yue777','Yuema Express','','（831）337 4444','https://cdn.parcelpanel.com/assets/common/images/express/yue777.png','http://www.yue777.com/',9999,1704193937),('yujtong','Yujietong','','','https://cdn.parcelpanel.com/assets/common/images/express/yujtong.png','',9999,1704193937),('yunda','Yunda Express','','+86 95546','https://cdn.parcelpanel.com/assets/common/images/express/yunda.png','http://www.udalogistic.com/index',9999,1704193937),('yunexpress','YunExpress','','4000-2621-26','https://cdn.parcelpanel.com/assets/common/images/express/yunexpress.png','http://www.yuntrack.com/track/detail?id=******',20,1704193937),('yunhui','YunHui Express','','','https://cdn.parcelpanel.com/assets/common/images/express/yunhui.png','http://www.ayh56.com',157,1704193937),('yunlu','YL express','','+86 18688668111','https://cdn.parcelpanel.com/assets/common/images/express/yunlu.png','http://www.yl-scm.com/Express-index.html?m=Express&a=index&waybill_number=******&doexp=',9999,1704193937),('yuteng','YuTeng Worldwide','','','https://cdn.parcelpanel.com/assets/common/images/express/yuteng.png','http://www.yutengguoji.com/register.html?documentCode=******',9999,1704193937),('ywbzexpress','Bai Zhou Huo Yun','','','https://cdn.parcelpanel.com/assets/common/images/express/ywbzexpress.png','http://www.ywbzexpress.com/search_order.aspx?trackNumber=******&BtnSearch=+',9999,1704193937),('yxilogistics','Yue Xi Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/yxilogistics.png','http://www.yxilogistics.com/cn/track-trace/',9999,1704193937),('yypost','YYPOST','','0755 8522 5125','https://cdn.parcelpanel.com/assets/common/images/express/yypost.png','http://www.yypostal.com:8082/trackIndex.htm',9999,1704193937),('yz-ex','SLICITY','','0579-85869329','https://cdn.parcelpanel.com/assets/common/images/express/yz-ex.png','http://www.yz-ex.com/',9999,1704193937),('zajil','Zajil','','920000177','https://cdn.parcelpanel.com/assets/common/images/express/zajil.png','https://zajil-express.com/en/',9999,1704193937),('zambia-post','Zambia Post','','(260) 0978 118881','https://cdn.parcelpanel.com/assets/common/images/express/zambia-post.png','http://www.postglobalonline.com/track/zm/track.aspx',9999,1704193937),('zeleris','Zeleris','','+34 91 707 4001','https://cdn.parcelpanel.com/assets/common/images/express/zeleris.png','https://www.zeleris.com/seguimiento_envio.aspx',126,1704193937),('zes-express','ESHUN International Logistics','','0579-85400510','https://cdn.parcelpanel.com/assets/common/images/express/zes-express.png','http://120.26.82.200:8080/track_query.aspx?track_number=******',9999,1704193937),('zhiguil','Zhigu special goods','','0755-28269492','https://cdn.parcelpanel.com/assets/common/images/express/zhiguil.png','http://www.zhiguil.com/',9999,1704193937),('zhiteng','Zhi Teng Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/zhiteng.png','http://zhiteng.biz/',9999,1704193937),('zhonghuanus','Central Transit','','400-673-9555','https://cdn.parcelpanel.com/assets/common/images/express/zhonghuanus.png','http://www.zhonghuanus.com/',9999,1704193937),('zhongsu','ZHONGSU International','','+86 13705882229','https://cdn.parcelpanel.com/assets/common/images/express/zhongsu.png','http://zsgjky.com/',9999,1704193937),('zhuozhi','Top Ideal Express','','020 62262811','https://cdn.parcelpanel.com/assets/common/images/express/zhuozhi.png','https://www.esdex.com/',9999,1704193937),('zim','ZIM Logistics','','+86 (21) 23278000','https://cdn.parcelpanel.com/assets/common/images/express/zim.png','https://www.zim-logistics.com.cn/',94,1704193937),('zimbabwe-post','Zimbabwe Post','','(263) 4 783 583-94','https://cdn.parcelpanel.com/assets/common/images/express/zimbabwe-post.png','http://ips-webtracking.zimpost.co.zw/trackit/',9999,1704193937),('zinc','Zinc','','','https://cdn.parcelpanel.com/assets/common/images/express/zinc.png','https://tracking.link/tracking?tracking_id=******',206,1704193937),('zip-ph','Zip Philippines','','','https://cdn.parcelpanel.com/assets/common/images/express/zip-ph.png','https://zip-ph.com/tracking?no=******',9999,1704193937),('zis-one','ZIS','','','https://cdn.parcelpanel.com/assets/common/images/express/zis-one.png','http://112.74.73.203:8086/xms/client/wnoView.htm',9999,1704193937),('zjcy56','zjcy56','','','https://cdn.parcelpanel.com/assets/common/images/express/zjcy56.png','',9999,1704193937),('zjs-express','ZJS International','','400-6789-000','https://cdn.parcelpanel.com/assets/common/images/express/zjs-express.png','http://www.zjs.com.cn/yscp/index.jhtml',9999,1704193937),('zlwww','ZhongLu Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/zlwww.png','http://www.zlwww.vip/',9999,1704193937),('zmcexpress','ZMC EXPRESS','','','https://cdn.parcelpanel.com/assets/common/images/express/zmcexpress.png','https://www.zmcexpress.com',9999,1704193937),('zmetaport','ZMETAPORT','','','https://cdn.parcelpanel.com/assets/common/images/express/zmetaport.png','https://www.zmetaport.com/#/home',9999,1704193937),('zrtl','Zhongrong Tailong','','400-021-6900','https://cdn.parcelpanel.com/assets/common/images/express/zrtl.png','http://www.zrtl.com/',9999,1704193937),('ztcce','Midway Express','','','https://cdn.parcelpanel.com/assets/common/images/express/ztcce.png','',9999,1704193937),('ztky','Zhongtie Logistics','','400-000-5566','https://cdn.parcelpanel.com/assets/common/images/express/ztky.png','http://www.ztky.com/GoodsTrace?funcid=14&companyid=1',9999,1704193937),('zto','ZTO Express','','4008-270-270','https://cdn.parcelpanel.com/assets/common/images/express/zto.png','https://www.zto.com/express/expressCheck.html?txtBill=******',213,1704193937),('zto-international','ZTO International','','95311','https://cdn.parcelpanel.com/assets/common/images/express/zto-international.png','https://www.ztoglobal.com/',9999,1704193937),('zy100-express','Cosco Express','','(+0852) 3062 2628','https://cdn.parcelpanel.com/assets/common/images/express/zy100-express.png','http://www.zy100-express.com/',9999,1704193937);
/*!40000 ALTER TABLE `wpj7_parcelpanel_courier` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_parcelpanel_location`
--

DROP TABLE IF EXISTS `wpj7_parcelpanel_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_parcelpanel_location` (
  `id` char(32) NOT NULL,
  `data` text DEFAULT NULL,
  `expired_at` int(10) unsigned NOT NULL DEFAULT 0,
  `updated_at` int(10) unsigned NOT NULL DEFAULT 0,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_parcelpanel_location`
--

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

--
-- Table structure for table `wpj7_parcelpanel_tracking`
--

DROP TABLE IF EXISTS `wpj7_parcelpanel_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_parcelpanel_tracking` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) DEFAULT NULL,
  `order_item_id` bigint(20) unsigned DEFAULT 0,
  `tracking_number` varchar(50) NOT NULL DEFAULT '',
  `courier_code` varchar(191) NOT NULL DEFAULT '',
  `shipment_status` tinyint(3) NOT NULL DEFAULT 1,
  `last_event` text DEFAULT NULL,
  `original_country` varchar(10) NOT NULL DEFAULT '',
  `destination_country` varchar(10) NOT NULL DEFAULT '',
  `origin_info` text DEFAULT NULL,
  `destination_info` text DEFAULT NULL,
  `trackinfo` text DEFAULT NULL,
  `transit_time` tinyint(4) DEFAULT 0,
  `stay_time` tinyint(4) DEFAULT 0,
  `sync_times` tinyint(4) NOT NULL DEFAULT 0,
  `received_times` tinyint(4) NOT NULL DEFAULT 0,
  `fulfilled_at` int(10) unsigned NOT NULL DEFAULT 0,
  `updated_at` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `tracking_number` (`tracking_number`),
  KEY `order_id` (`order_id`),
  KEY `shipment_status` (`shipment_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_parcelpanel_tracking`
--

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

--
-- Table structure for table `wpj7_parcelpanel_tracking_items`
--

DROP TABLE IF EXISTS `wpj7_parcelpanel_tracking_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_parcelpanel_tracking_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `order_item_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `quantity` smallint(5) unsigned NOT NULL DEFAULT 0,
  `tracking_id` int(10) unsigned NOT NULL DEFAULT 0,
  `shipment_status` tinyint(1) unsigned NOT NULL DEFAULT 1,
  `custom_shipment_status` smallint(5) unsigned NOT NULL DEFAULT 0,
  `custom_status_time` varchar(191) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `tracking_id` (`tracking_id`),
  KEY `order_id` (`order_id`),
  KEY `shipment_status` (`shipment_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_parcelpanel_tracking_items`
--

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

--
-- Table structure for table `wpj7_pmxe_exports`
--

DROP TABLE IF EXISTS `wpj7_pmxe_exports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_pmxe_exports` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` bigint(20) NOT NULL DEFAULT 0,
  `attch_id` bigint(20) NOT NULL DEFAULT 0,
  `options` longtext DEFAULT NULL,
  `scheduled` varchar(64) NOT NULL DEFAULT '',
  `registered_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `friendly_name` text NOT NULL DEFAULT '',
  `exported` bigint(20) NOT NULL DEFAULT 0,
  `canceled` tinyint(1) NOT NULL DEFAULT 0,
  `canceled_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `settings_update_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_activity` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `processing` tinyint(1) NOT NULL DEFAULT 0,
  `executing` tinyint(1) NOT NULL DEFAULT 0,
  `triggered` tinyint(1) NOT NULL DEFAULT 0,
  `iteration` bigint(20) NOT NULL DEFAULT 0,
  `export_post_type` text NOT NULL DEFAULT '',
  `client_mode_enabled` tinyint(4) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `created_at_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `rte_last_row` mediumtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_pmxe_exports`
--

LOCK TABLES `wpj7_pmxe_exports` WRITE;
/*!40000 ALTER TABLE `wpj7_pmxe_exports` DISABLE KEYS */;
INSERT INTO `wpj7_pmxe_exports` VALUES (1,0,0,'a:97:{s:14:\"is_user_export\";b:0;s:22:\"is_woo_customer_export\";b:0;s:17:\"is_comment_export\";b:0;s:18:\"is_taxonomy_export\";b:0;s:20:\"is_woo_review_export\";b:0;s:3:\"cpt\";a:1:{i:0;s:4:\"post\";}s:11:\"whereclause\";s:0:\"\";s:10:\"joinclause\";a:0:{}s:11:\"exportquery\";O:8:\"WP_Query\":57:{s:5:\"query\";a:5:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;}s:10:\"query_vars\";a:67:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:5:\"embed\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:14:\"search_columns\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:16:\"suppress_filters\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_menu_item_cache\";b:0;s:19:\"lazy_load_term_meta\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:0;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:0:{}s:8:\"relation\";s:3:\"AND\";s:16:\"\0*\0table_aliases\";a:0:{}s:13:\"queried_terms\";a:0:{}s:13:\"primary_table\";s:9:\"qdx_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:14:\"queried_object\";N;s:17:\"queried_object_id\";N;s:7:\"request\";s:243:\"\n			SELECT SQL_CALC_FOUND_ROWS  qdx_posts.*\n			FROM qdx_posts \n			WHERE 1=1  AND qdx_posts.post_type = \'post\' AND ((qdx_posts.post_status <> \'trash\' AND qdx_posts.post_status <> \'auto-draft\'))\n			\n			ORDER BY qdx_posts.ID ASC\n			LIMIT 0, 10\n		\";s:5:\"posts\";a:10:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:152;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-11-30 15:32:18\";s:13:\"post_date_gmt\";s:19:\"2022-11-30 21:32:18\";s:12:\"post_content\";s:7559:\"<!-- wp:flatsome/uxbuilder -->\n[ux_text text_align=\"left\"]\n\n<div>Chinese lanterns perfectly embody the culture of China, discover through this article their history and their meaning, but also the different types of lanterns and their uses.</div>\n[/ux_text]\n[gap]\n\n<h2>History of Chinese Lanterns</h2>\n<p>Chinese lanterns first appeared during the Han Dynasty, and more precisely during the Eastern Hans Dynasty (25-220). Historians believe that they were mainly used as lamps, long before the invention of electricity or the use of gas. To make them, several <strong>craft techniques</strong> were used, such as painting, paper cutting or sewing. The materials used varied and included bamboo, wood, wheat straw, or metal. However, the most common materials used were paper and silk.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"568\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<div>Then, the monks began to light lanterns <strong>to worship Buddha</strong>, especially on the twelfth day of the first month of the lunar calendar. During the Eastern Hans Dynasty, Emperor Liu Zhuang, who was a Buddhist, ordered the Chinese to use lanterns to imitate the monks, and thus popularized the Chinese lanterns.</div>\n<div>&nbsp;</div>\n<div>Later, during the Tang Dynasty (618-907), the Chinese made and lit lanterns to show their <strong>gratitude</strong> for the happy life they led. These illuminations symbolized the strength, power and prosperity of China.</div>\n<div>&nbsp;</div>\n<div>Finally, historians have also concluded that Chinese lanterns were used during <strong>wars</strong>, as a means of communication to transmit secret messages or to signal an intruder.</div>\n[gap]\n\n<h2>Ancient Types of Chinese Lanterns</h2>\n<p>In ancient times, the types of lanterns were quite varied. One of them was the royal lanterns, which, as the name suggests, were generally used for lighting purposes in castles and palaces. They are known to evoke a very <strong>delicate Chinese craftsmanship</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"572\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<p>Lanterns were also used to cast shadows, usually for entertainment purposes. These <strong>lanterns</strong> had the same shape as the royal lanterns, except that they were covered with not one, but two layers of paper or silk.</p>\n<p>Then, additional paper cuts were glued into the inner layer to <strong>create shadows</strong> when lit. The heat caused the paper to rotate, causing the shadows to spin and move across the walls.</p>\n[gap]\n\n<h2>Modern Chinese Lanterns</h2>\n<p>Nowadays, more and more types of lanterns are available. There is still a wide variety of lanterns in a traditional style: paper lanterns, candle lanterns, gauze lanterns, tissue paper lanterns, rice paper lanterns... But technology is sometimes also used, and the traditional candles are sometimes replaced by LED bulbs.</p>\n<p>So we find electric lanterns, sometimes with a multicolored light, and even musical lanterns. The shape of Chinese lanterns has evolved and diversified. Thus, we find in the shape of animals, cartoon characters, signs of the Chinese zodiac or flowers such as the sacred lotus.</p>\n<p>In addition, lanterns are evolving with the times, and we find more and more lanterns that are entirely biodegradable, with a vegetable wax burner, or other celestial lanterns designed to go down gently when the burner is extinguished.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"574\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<h2>Use of Chinese Lanterns</h2>\n<div>Generally speaking, Chinese people use lanterns in three ways: the most common is to hang the lantern. In remote areas, one can even find <strong>hanging lanterns</strong> adorning street lamps. These hanging lanterns, often decorated with tassels, are not always bright and are often hung in front of stalls as good luck charms, or decoratively in front of houses.</div>\n<div>&nbsp;</div>\n<div>Flying lanterns, also called sky lanterns, are particularly popular during the Spring Festival, celebrated during the first full moon of the Chinese calendar. They are then released into the sky by thousands, propelled by hot air, like balloons.&nbsp; This <strong>Asian lantern</strong> is not only the apparat of China, and there is also a wide variety of Thai flying lanterns.</div>\n<div>&nbsp;</div>\n<div>Finally, the <a href=\"https://www.nightlightsevent.com/\">floating lanterns</a>, equipped with waterproof burners, are especially used during the Dragon Boat Festival, where they are placed on rivers and lakes during the celebrations. Each one creates a light reflection on the water, for a totally fairy-like atmosphere.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"576\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<div>Very festive, the Chinese lantern is generally used during celebrations and holidays. Chinese families like to light them during the Chinese New Year or any other celebration where everyone goes for a lantern release (Discover the festivals and celebrations in China).</div>\n<div>&nbsp;</div>\n<div>The <strong>Chinese New Year</strong> ends on the fifteenth day of the first lunar month with the Spring Festival, also called the Lantern Festival. On this day, thousands of paper lanterns are released all over the country for a very romantic and poetic air show. Families light up hundreds of lanterns, often with calligraphy riddles for the children to solve.</div>\n<div>&nbsp;</div>\n<div>If they succeed, they are rewarded with small gifts or sweets. It is also customary for uncles to buy lanterns for their nephews, if they are under twelve, before the <strong>festival</strong>. This shows that they wish their nephew the best, especially that they are in excellent health for the coming year.</div>\n<div>&nbsp;</div>\n<div>In China, apart from national celebrations, lanterns are also common at weddings, birth ceremonies, or any other event to which one wishes to bring <strong>good fortune</strong>. It is then customary to hang lanterns in front of one\'s house or in the wedding hall, as decorations and good luck charms.</div>\n<div>&nbsp;</div>\n<div>In the West, the Asian lanterns have conquered by their festive and decorative side. The <strong>celestial lantern</strong>, in particular, is very popular for a wedding or a birthday party and will impress the guests. Lanterns garlands or lights, then in the shape of balls more round than traditional lanterns, are also very common in Western homes.</div>\n[gap]\n\n<h2>Meaning of Chinese Lanterns</h2>\n<p>Generally speaking, Chinese lanterns symbolize <strong>vitality</strong>, <strong>social status</strong>, and especially <strong>good fortune</strong>. They are found in a multitude of colors. Red lanterns are the most popular, because in China, the color red is a sign of good luck and happiness. In Chinese culture, red is also a symbol of vitality and energy.</p>\n<p>On the other hand, using a blue lantern means that a family member is sick, because in <strong>Chinese culture</strong>, blue is a symbol of illness and low energy. White lanterns, on the other hand, represent death and mourning.</p>\n<p>A white lantern at the entrance of a house will show that a death has occurred in the family, and announce a mourning. Finally, purple will tend to bring bad luck, and is a rather rare lantern color. The material is not important, whether you use a <strong>paper or silk lantern</strong> depends on your taste.</p>\n[ux_products cat=\"42\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:39:\"History and Meaning of Chinese Lanterns\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:32:\"history-meaning-chinese-lanterns\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:31:05\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:31:05\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=152\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:598;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-17 23:52:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 05:52:28\";s:12:\"post_content\";s:11802:\"<!-- wp:flatsome/uxbuilder -->\n<p>The Chinese character \"箸\" is translated as \"chopsticks\", which are unique eating utensils invented by the ancient Chinese civilizations during the Neolithic Age, 7,000 to 6,000 BC. The ancient chopsticks were mainly made of animal bones. Today, among the various tableware available, chopsticks perfectly embody Chinese cultural characteristics, becoming an important symbol of Chinese tradition.</p>\n[gap]\n\n<h2>Meaning of Chinese Chopsticks</h2>\n<div>Chopsticks originated in China. Although simple, they are a great invention in human history. \"Chopsticks, although they are only two pieces of wood, represent the theory of leverage in physics,\" said Dr. Li Zhengdao, a famous Chinese physicist.</div>\n<div>&nbsp;</div>\n<div>According to modern science, long-time use of chopsticks makes the fingers flexible, which is beneficial to physical and mental health. Chopsticks are available in all kinds. So, among the various kitchen utensils available today, chopsticks with a lucky charm are very popular with the Chinese.</div>\n<div>&nbsp;</div>\n<div>Chopsticks symbolize the centuries-old Chinese civilization and embody the 5,000-year history of China. Whether Chinese people live in China or abroad, they cherish their connection with chopsticks.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<div>\"One chopstick can be easily broken, ten pairs of chopsticks stand firmly together.\" People are familiar with this beautiful and enlightened song by Fu Disheng, a well-known singer in China.</div>\n<div>&nbsp;</div>\n<div>Indeed, a chopstick is so delicate that it can be easily broken. However, ten pairs of chopsticks possess a strength that is indestructible under any circumstances. This symbol of chopsticks reflects a spirit of unity, perseverance and power, which are strong values in China. This spirit that lives in the chopsticks will always influence, inspire and encourage people.</div>\n<div>&nbsp;</div>\n<div>In a word, chopsticks are part of the Chinese gastronomic culture, rich of many centuries.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h2>The history of Chinese chopsticks</h2>\n<p>One of the main features of China\'s culinary custom is the use of chopsticks. Chopsticks, also called \"zhu\" (箸) in ancient times, have a long history in China. In fact, the Book of Rites advocated, \"You cannot have a meal without chopsticks\". These objects, rich in several centuries of history appeared during the Sang Dynasty.</p>\n[gap]\n\n<h3>The Origin of Chinese Chopsticks</h3>\n<p>Lan Xiang, the curator of the Folk Chopsticks Pavilion, said that historical records date the ivory chopsticks to 3,100 years ago. As it is written in the records, \"Zhou\" (the emperor at the end of the Sang Dynasty) used the ivory chopsticks while Ji Zi, Zhou\'s uncle, worried \"because it was too luxurious\".</p>\n<p>After the emperor killed the elephant to impose his power, he sawed the ivory to make chopsticks that are known as the first chopsticks in history. However, historically they were not the first chopsticks but the first ones made of ivory in China. That is why Chinese ivory chopsticks have a strong symbolism.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<div>The existence of Chinese chopsticks dates back to almost 1,000 years before the existence of ivory chopsticks. The first chopsticks were made of bamboo because China was then covered with primeval forests.</div>\n<div>&nbsp;</div>\n<div>Branches were broken to cook food in a pot. It was impossible to grasp the food by hand because the food was very hot. So the Chinese found a way to use the bamboo branches to pick up the food. We suppose that the ancient chopsticks had a different size from each other.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Since the Sang Dynasty, the chopsticks are the same length and size.</div>\n<div>&nbsp;</div>\n<div>In ancient times, chopsticks were made from local materials such as branches, sticks, animal bones and horns. Chopsticks were mainly made of wood and bamboo in primitive society.</div>\n<div>&nbsp;</div>\n<div>Ivory and jade chopsticks appeared in Xiang and Sang dynasties, while copper and iron chopsticks appeared in spring and autumn and warring states (from 770 to 221 BC), flaming lacquer chopsticks, delicate silver and gold chopsticks in Han-Wei and six dynasties (the kingdom of Wu, Jing, Song, Qi, Liang, Chen). Today, there are chopsticks made of various materials, including ivory, rhinoceros horn, golden ebony and assorted jades.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h3>Legends about Chinese chopsticks</h3>\n<p>People who use chopsticks, including the Chinese, admire the invention, but nobody knows who invented it. There is no precise data as to the creator of this invention that has made significant contributions to human civilization.</p>\n<p>Some believe that the increase in illiteracy, among other reasons, explains this lack of information. There are, however, myths surrounding the birth of chopsticks. Here is a summary of two legends, centered on the origin of chopsticks:</p>\n[gap]\n\n<h4>The legend of Jiang Ziya</h4>\n<div>The legend has spread to areas such as Sichuan province. It was said that Jiang Ziya was capable of nothing but fishing. He was so poor that his wife could not bear to live with him and planned to kill him to marry another man.</div>\n<div>&nbsp;</div>\n<div>One day, Jiang returned home empty-handed after fishing. His wife said, \"You must be hungry. I made some meat for you. Come and eat!\" He was hungry, so he reached out his hands to take the meat. Suddenly, a bird on window pecked his hand. The pain made him scream. In his pain, Jiang tried to chase the bird away from the window but the bird pecked him a second time.</div>\n<div>&nbsp;</div>\n<div>Jiang was so confused, he didn\'t understand why the bird kept pecking him. To understand, he tried to pick up the meat but the same thing happened. He understood that it was because the bird was a divine bird and he chased it to a hill so that no one could see it.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Standing on a bamboo branch, the divine bird sang, \"Jiang Ziya, don\'t eat the meat with your bare hands, use what is under my feet.\" Hearing this, Jiang took two small sticks from the bamboo and went home. Then he took the meat with the two sticks. After doing this, smoke came out of the bamboo. Jiang understood that the sticks were reacting to the poison that his wife had poured into his food.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Jiang Ziya knew that the magic bamboo given by the divine bird could detect the poison. So he ate all his meals with them. After the incident, his wife did not dare to poison his food and his neighbors learned to eat with a bamboo branch. Later, more and more people followed this habit, so the custom of eating with chopsticks was passed on from generation to generation.</p>\n[gap]\n\n<h4>The legend of Da Yu</h4>\n<p>This legend has spread throughout northeast China. It is said that Yao and Shun, mythical rulers of ancient China, ordered Da Yu to control a flood. After receiving the order, Yu vowed to eliminate the flood disaster. He did his best to fight the flood day and night, to the point of not eating and sleeping, let alone resting.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Yu went to an island by boat where he was so hungry that he used an earthen pot to cook the meat. Once the meat was well cooked in the boiling water, he couldn\'t take it by hand and didn\'t want to waste time waiting for it to cool, so he took two branches to pick up the meat from the soup.</p>\n<p>He kept this habit to the point of becoming skilled at picking up food with small sticks, which was imitated by his subordinates who understood that this way of eating could allow them to avoid touching the hot and greasy food with their hands. Thus, the first types of chopsticks were born.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Although these legends are not historically accurate, they show the way people thought in the past.</p>\n[gap]\n\n<h2>How to use chopsticks?</h2>\n<p>The correct use of chopsticks can be described as follows: the right hand holds the chopsticks with the thumb and forefinger pinching the upper end of the chopsticks and the other three fingers naturally hold the chopsticks, so the two ends of the chopsticks should remain aligned. Before the meal, the chopsticks are carefully placed on the right side of the bowl and after the meal, in the middle of the bowl, in a vertical direction.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h2>Taboos on Chopsticks</h2>\n<p>Chinese chopsticks have their share of good, but also bad manners that you should not do at the risk of bringing you bad luck:</p>\n<ul>\n<li><strong>Unexpected bad luck</strong>: Arranging chopsticks of unequal lengths on the table is considered an omen of bad luck.</li>\n<li><strong>Immortal guidance</strong>: If the chopsticks are pinched by the thumb, middle finger, ring finger and little finger while the index finger reaches out, this is considered bad luck.</li>\n<li><strong>Sucking on chopsticks with a sound</strong>: Having a piece of chopstick in your mouth and repeatedly sucking on it with a sound is rude behavior.</li>\n<li><strong>Hitting the cup</strong>: Hitting plates and bowls is considered disrespectful and is looked down upon by others.</li>\n<li><strong>Shaking to make choices</strong>: Taking chopsticks to \"dig\" into plates is a bad way to \"dig the grave\".</li>\n<li><strong>Sinking food</strong>: Dropping soup on other dishes or on the table when picking up food with chopsticks is considered disrespectful.</li>\n<li><strong>Upside down heaven and earth</strong>: Using chopsticks upside down means you are a beggar.</li>\n<li><strong>Key ring</strong>: Using a chopstick to stick food on plates is seen as humiliating to others at the table.</li>\n<li><strong>Burning incense in public</strong>: Chopsticks should not be left upright in a bowl of rice, as this is similar to the incense ritual that symbolizes \"feeding\" the dead.</li>\n<li><strong>Cross</strong>: During the meal, chopsticks should not be crossed on a table as this is perceived negatively.</li>\n<li><strong>Falling chopsticks disturbs the immortal</strong>: During a meal, it is discourteous for chopsticks to accidentally fall on the floor, as falling chopsticks represent a disturbance of the buried ancestors.</li>\n</ul>\n[gap]\n\n<h2>The materials of Chinese chopsticks</h2>\n<div>Chopsticks seem simple and flexible, but they vary in type and composition. There are more than 100 types in Chinese history, the most common being wood, bamboo and melamine.</div>\n<div>&nbsp;</div>\n<div>Lan Xiang has divided Chinese chopsticks into five types based on his collection and research. They are: bamboo chopsticks, metal chopsticks, ivory and bone chopsticks, jade chopsticks and chemical chopsticks.</div>\n<div>&nbsp;</div>\n<div>The earliest and most primitive chopsticks, the wooden and bamboo chopsticks, remain popular today (Discover our Chinese Bamboo Chopsticks and our Wooden Chopsticks).</div>\n<div>&nbsp;</div>\n<div>Bamboo chopsticks are made from different types of bamboo including nandina bamboo, spotted bamboo and phyllostachys pubescens, among others. Bamboo is considered a symbol of traditional Chinese values. It is an example of the harmony between nature and human beings. There are many accessories made of bamboo, especially at Bambou Calme with its collection of bags.</div>\n[gap]\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<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:41:\"Chinese Chopsticks: Origins &amp; History\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:34:\"chinese-chopsticks-origins-history\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:30:30\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:30:30\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=598\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:666;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 13:59:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 19:59:28\";s:12:\"post_content\";s:14843:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>China</strong>, as well as many other Eastern cultures, is deeply rooted in Eastern philosophy, with symbolism playing a very large role in today\'s Chinese culture especially in the form of Feng Shui.</div>\n<div>&nbsp;</div>\n<div>An important feature of Feng Shui is the use of <strong>Chinese good luck charms</strong> and decorations to enhance the harmony of your home with its surroundings, improving positive energy while protecting it from bad luck.</div>\n<div>&nbsp;</div>\n<div><strong>As we will see through the 15 most popular good luck charms in Chinese culture, Chinese good luck symbols take many forms. These good luck symbols can also be used with specific elements to enhance various Feng Shui applications.</strong></div>\n<div>&nbsp;</div>\n<h2>1) Dzi Beads</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"725\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Dzi beads are actually not from China but from <strong>Tibet</strong>. The Tibetan word Dzi translates to \"brilliance\" or \"shine\" and in China, Dzi beads are also known as 天珠, literally translated as \"pearl of heaven\".</div>\n<div>&nbsp;</div>\n<div>Usually made of agate carved in unique patterns, Dzi beads are also popular in Chinese Feng Shui practices as good luck charms. Dzi stones are believed to be effective not only in repelling negative energy but also in storing positive energy for the owner\'s good fortune.</div>\n<div>&nbsp;</div>\n<div><strong>Dzi stones</strong> can come in different shapes and patterns: circles, stripes, wave patterns, etc. They are commonly worn as bracelets, or necklaces.</div>\n<div>&nbsp;</div>\n<h2>2) Chinese Lucky Coins</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"723\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>You can easily distinguish the ancient <strong>Chinese coins</strong> with their square hole in the middle. The round shape of the coin symbolizes the sky, while the square hole represents the earth.</div>\n<div>&nbsp;</div>\n<div>The faces of the coins are usually inscribed with four characters around the four sides of the square hole. This is the yang side of the coin. On the other side, the yin side, there are up to two characters.</div>\n<div>&nbsp;</div>\n<div>There are different ways to use these coins as a good luck charm, usually by tying three coins with a string or ribbon in red, which is a <strong>lucky color</strong> in China. It is believed that coin necklaces attract financial luck.</div>\n<div>&nbsp;</div>\n<h2>3) Laughing Buddha</h2>\n[gap height=\"50px\"]\n\n[ux_products cat=\"45\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<div>One of the most common good luck charms in Chinese Feng Shui is the Laughing <strong>Buddha</strong> or Buddha of Happiness. This lucky charm symbolizes good fortune, prosperity, fertility, health and wealth.</div>\n<div>&nbsp;</div>\n<div>The Laughing Buddha is based on the story of a Buddhist monk who lived in 10th century China. This monk was rather eccentric and did not fit the typical characteristics of serenity and peace of a <strong>Buddhist monk</strong>, but he was always happy with a loving heart, so he was loved by many. This monk was then considered the reincarnation of <a href=\"https://tricycle.org/magazine/who-was-the-buddha/\">Gautama Buddha</a>, and is now believed to symbolize joy, laughter and happiness.</div>\n<div>&nbsp;</div>\n<div>As a good luck charm, the <strong>Laughing Buddha</strong> can be placed anywhere in the house except in the bathroom or toilet. However, it is usually placed in the living room or any other place in your home or business where there is money.</div>\n<div>&nbsp;</div>\n<h2>4) Chinese Luck Cat</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"720\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>lucky cat</strong> is based on the Japanese <strong>Maneki-Neko</strong>. It is a very common lucky charm in Feng Shui. The different colors of the cat can symbolize different things, and the fact that the cat raises its paw to the left or right also changes the symbolism.</div>\n<div>&nbsp;</div>\n<div>If the <strong>cat raises its left paw</strong>, it usually symbolizes a male cat that attracts wealth, fortune and professional success in business. So you can place it in your office or in the area where you usually work to enhance your success.</div>\n<div>&nbsp;</div>\n<div>If, on the other hand, the cat raises its right paw, then it is a female cat that symbolizes prosperity, fertility and family happiness, as well as <strong>good health</strong>.</div>\n<div>&nbsp;</div>\n<h2>5) Great Chinese Ship of Fortune</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"729\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The ship of fortune is also a very important good luck charm in Chinese Feng Shui. As the name suggests, it is a ship-shaped decoration of various shapes and sizes. They usually carry gems and mini treasures to <strong>symbolize</strong> wealth and are very popular placed in homes and businesses.</div>\n<div>&nbsp;</div>\n<div>The fortune ship is believed to attract wealth and good fortune. For proper Feng Shui, the boat usually has sails that fully catch the wind to symbolize moving towards a better future.</div>\n<div>&nbsp;</div>\n<div>There are fortune ships built entirely of precious stones and even gold, and others that are constructed of real wood and <strong>silk fabric</strong>, like a genuine ship.</div>\n<div>&nbsp;</div>\n<h2>6) Three-legged Frog</h2>\n[gap height=\"50px\"]\n\n[products ids=\"6000\" columns=\"1\"]\n\n[gap height=\"50px\"]\n\n<div>The three-legged lucky frog, also called Jin Chanou or Chan Chu is also a very popular and powerful <strong>Chinese Feng Shui lucky charm</strong>. It is believed to attract and protect your fortune, while protecting you and your family from bad luck.</div>\n<div>&nbsp;</div>\n<div>The three-legged frog symbolizes the flow of money, and Feng Shui dictates that this statue should not be placed facing your main door. It should also not be placed in your kitchen and toilet or bathroom.</div>\n<div>&nbsp;</div>\n<div>The common practice is to place the three-legged frog statue in the main entrance, while another <strong>statue</strong> next to it has its back to the entrance. This configuration is meant to protect the flow of money coming and going outside the home or business.</div>\n<div>&nbsp;</div>\n<h2>7) Amethyst Crystal Tree</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"715\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>In <strong>Chinese</strong> Feng Shui, crystals are believed to contain positive healing energy, and many people use them as objects of concentration in their meditation practice.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In this case, amethyst crystals are arranged like a tree (with a resin or plastic tree branch) and are believed to have healing properties to calm the mind. They are also considered a good luck charm for wealth and prosperity. The amethyst crystal tree is said to improve memory while maintaining calm and can also help with insomnia. It has the same functions as <a href=\"http://www.dream-catchers.org/\">dream catchers</a> to chase away evil spirits and help you sleep better.</div>\n<div>&nbsp;</div>\n<div>There are also crystal trees made from other materials like agate, citrine, rose quartz, and others.</div>\n<div>&nbsp;</div>\n<h2>8. Dragon Turtle</h2>\n[gap height=\"50px\"]\n\n[ux_products ids=\"5994\"]\n\n[gap height=\"50px\"]\n\n<div>The dragon and the <strong>turtle</strong> are symbols of protection, wisdom and nobility in Chinese culture. They are two of the four heavenly animals (dragon, tiger, phoenix and turtle).</div>\n<div>&nbsp;</div>\n<div>The dragon turtle, as its name suggests, has the body of a turtle but the head of a dragon, and is believed to symbolize good health, longevity, power, courage and <strong>success</strong>. A dragon turtle statue is believed to protect its owner from betrayal in business and promote healthy harmony at home and in the workplace.</div>\n<div>&nbsp;</div>\n<div>There are several types of dragon turtle statues used as good luck charms, including three of the most important:</div>\n<div>&nbsp;</div>\n<div>Turtle dragon carrying a pagoda (the Wen Chang Pagoda) on its back. It is a good luck charm for <strong>academic success</strong></div>\n<div>Turtle dragon with a baby (or a couple of babies) sitting on its shell. It is believed to improve fertility and family harmony</div>\n<div>Dragon turtle sitting on coins and gold bars, as you may have guessed, symbolizes financial fortune</div>\n<div>&nbsp;</div>\n<h2>9) Pi Xiu</h2>\n[gap height=\"50px\"]\n\n[products ids=\"5996\" columns=\"1\"]\n\n[gap height=\"50px\"]\n\n<div>Pi Xiu also known as Pi Yao, Tian Lu, Bai Jie or Bi Xie, is a mythical Chinese chimera resembling a winged lion with dragon elements. As good luck charms in <strong>Feng Shui</strong>, Pi Xiu statues are believed to protect their owner from evil spirits and negative energy, thus preventing bad luck.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Pi Xiu like to eat gold, jewelry, silver and water. Therefore, it is believed that they get rich from all sides for their owner. The Pi Xiu is thought to be a very loyal and obedient mythological animal, making it a favorite as a <strong>good luck charm for personal protection</strong>. You can find Pi Xiu good luck charms in various forms, such as keychains, bracelets or even statues.</div>\n<div>&nbsp;</div>\n<h2>10) Chi Lin</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"711\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Chi Lin is another mythological chimera from <strong>ancient China</strong>, a creature with the head of a dragon but the body of a horse. In addition, Chi Lin has the scales of a carp fish. Chi Lin is also often called the dragon horse or sometimes the Chinese unicorn.</div>\n<div>&nbsp;</div>\n<div>The Chi Lin is believed to bring protection to its owner, and also improve the health and wealth of the owner. In addition, it is also known to be a protector against various relationship problems to promote a harmonious household. However, it is mostly associated with the <strong>luck</strong> of fertility. If you want to learn more about this creature and many others click here.</div>\n<div>&nbsp;</div>\n<div>As a good luck charm, you can place the Chi Lin sculpture near the main entrance of your home or workplace or in your living room. It can also come in various other forms such as embroidery, statue, keychain, amulets, etc. There are also many different materials, finishes and sizes.</div>\n<div>&nbsp;</div>\n<h2>11) Chinese Guardian Lion</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"709\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Chinese guardian lion or Fu dog, is another <strong>Chinese mythological creature</strong>. Traditionally, they are placed in front of imperial palaces, government offices in ancient China, and also temples.</div>\n<div>&nbsp;</div>\n<div>Nowadays, Fu dogs are considered a symbol of a family\'s wealth and social status, so they are often placed in front of large houses in China and <strong>Asia</strong>.</div>\n<div>&nbsp;</div>\n<div>Generally, imperial <strong>guardian lion statues</strong> are displayed in pairs, with the female holding a cub under her left paw, symbolizing maternal protection, and the male holding a globe under his right paw, signifying the protection of his domain (home).</div>\n<div>&nbsp;</div>\n<h2>12) Lucky Bamboo Feng Shui</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"707\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Lucky <strong>Bamboo</strong>, also known as Lucky Bamboo, is a very important plant in Feng Shui and is believed to bring positive and peaceful energy to the home it is in. Bamboo is a flexible plant that is also hollow inside, and in Chinese philosophy, this symbolizes the flexibility and openness of the individual.</div>\n<div>&nbsp;</div>\n<div>Lucky bamboo can be placed inside the house, or you can also grow real bamboo plants in your <strong>garden</strong>. There are also various accessories made from bamboo stalks that are believed to produce the same effect.</div>\n<div>&nbsp;</div>\n<div>The number of stalks also plays an important role in the use of <strong>Lucky Bamboo</strong>. Three stems, for example, are believed to bring three kinds of luck: wealth, longevity and happiness. Seven stems, on the other hand, symbolize health, while eight stems bring good luck to fertility, as the word \"eight\" in Mandarin is very similar to the word used for \"grow\".</div>\n<div>&nbsp;</div>\n<h2>13) Symbol of Double Happiness</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"705\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>Chinese symbol</strong> of double happiness is essentially the word (xi) which is written twice side by side so that two of its strokes are joined together.</div>\n<div>&nbsp;</div>\n<div>The meaning of this symbol is quite literal: double dose of happiness for its owner, and it is often used as a <strong>decoration</strong> for holidays and celebrations (e.g. Chinese New Year, birthday parties, birth of a child, etc.).</div>\n<div>&nbsp;</div>\n<div>The Double Happiness sign was first used as a wedding decoration, a symbol of prayer for the newlyweds to be happy and their marriage to last. However, over the years, it has made its way to other <strong>Chinese festivities</strong>.</div>\n<div>&nbsp;</div>\n<h2>14) Chinese Phoenix</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"703\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>It is one of the four guardians of China (Dragon, Turtle, Phoenix and Tiger), the <strong>Phoenix</strong> rules over all other birds in China.</div>\n<div>&nbsp;</div>\n<div>Male phoenixes are called Feng, while females are called Huang. However, the distinction between the sexes is not typically made today, and so the phoenix is often called Fenghuang, a female entity associating with the <strong>dragon</strong>, which is usually a male entity.</div>\n<div>&nbsp;</div>\n<div>As a <strong>good luck charm</strong>, phoenix carvings represent justice, obedience, and loyalty, and are often used as a good luck charm for those experiencing bad luck, as it is believed to be capable of reversal under bad circumstances.</div>\n<div>&nbsp;</div>\n<h2>15) Koi Carp</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"701\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Koi</strong> is called 鲤鱼, Li Yu, or literally translated as \"carp fish\" in China. There are many applications to this lucky charm. For example, a carp statue placed on a study desk is believed to bring academic success.</div>\n<div>&nbsp;</div>\n<div>A common practice is to place 8 pieces of carp around the work desk, as 8 is the Chinese number for wealth and prosperity. A few <strong>carp statues</strong> placed in the bedroom are also believed to bring happiness in a marriage.</div>\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:27:\"Top 15 Chinese Lucky Charms\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:23:\"15-chinese-lucky-charms\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:27:44\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:27:44\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=666\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:731;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 15:41:17\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 21:41:17\";s:12:\"post_content\";s:12813:\"<!-- wp:flatsome/uxbuilder -->\n<div>Are there any legendary <strong>Chinese warriors</strong>? What is their name and what is their history?&nbsp;</div>\n<div>&nbsp;</div>\n<div>At Teng Shop, we are passionate about <strong>Chinese culture</strong>, so we will bring you the answers as accurately as possible.</div>\n<div>&nbsp;</div>\n<div><strong>For thousands of years, China has known powerful dynasties and many wars. That\'s why great warriors like Sun Wu, Cao Cao or Xiang Yu were able to shine during these difficult periods.</strong></div>\n<div>&nbsp;</div>\n<div>In this article, you will discover :&nbsp;</div>\n<ul>\n<li>5 very famous Chinese warriors</li>\n<li>Their personal history</li>\n<li>The impact of these <strong>warriors</strong> on China</li>\n<li>After reading this article, these Chinese warriors will no longer hold any secrets for you!</li>\n</ul>\n<div>Without further ado, let\'s discover together the first warrior!</div>\n[gap]\n\n<h2>1. Sun Wu (Sun Tzu)</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"756\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Sun Wu, or <strong>Sun Tzu</strong> is probably the most famous Chinese warrior in the world. The reason for his fame is his famous book \"<strong>The Art of War</strong>\". This book helps war generals to better organize themselves during a battle or during a war in a more general way. This same book is used in many fields today such as business, where it is said that by replacing the word \"war\" by the word \"business\", so we find a whole new reading of the work.</div>\n<div>&nbsp;</div>\n<div>We don\'t have much information about the beginning of Sun Wu\'s life, but everything leads us to believe that he would have been born in the Chinese state of Ch\'i and that he would have served the king Ho-lu of Wu as a <strong>military specialist</strong> at the end of the Zhou dynasty (1046 to 256 B.C.).</div>\n<div>&nbsp;</div>\n<div>All the fame of this general was built on the fact that he focused on a war that was more psychological than brutal. At a time when people simply wanted to eliminate all their opponents during a war, Sun Tzu <strong>proposed alternatives that were much less violent but all the more formidable</strong>. He used human psychology to neutralize enemies and always tried to save as many innocent people as possible.</div>\n<div>&nbsp;</div>\n<div>Following the lessons of <a href=\"https://suntzusaid.com/\">the art of war</a>, you used deception and psychological pressure to crush your enemies. Surprise attacks and breaking enemy alliances are also part of this <strong>tactic</strong>, the important thing being to keep as many men as possible on your side.</div>\n[gap]\n\n<h2>2. Wu Qi</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"754\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Wu Qi (381 BC) was a native of Zuo in the state of Wei. He was one of the <strong>leading military, statesmen and reformers</strong> of the early Three Kingdom period in China.</div>\n<div>&nbsp;</div>\n<div>Wu Qi studied Confucianism under Zeng Shen in his early years, but later abandoned <strong>Confucianism</strong> to study military art. When he was in the state of Lu, he was ordered to command the emperor\'s army and defeat Qi, an enemy of the state. He then went to Wei, where he was highly regarded by the Marquis of Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>He also reformed the military system and created the Wei Wu soldiers, who \"won 64 of 76 battles against the <strong>warlords</strong>.\" He was appointed magistrate by the king of Chu and led reforms.</div>\n<div>&nbsp;</div>\n<div>He was appointed magistrate of the state of Chu and implemented reforms that in a short time strengthened the state of Chu and allowed it to \"pacify Baiyue in the south, merge with Chen and Cai in the north, but conquer the three Jin dynasties and <strong>conquer</strong> Qin in the west.\" In 381 B.C., upon the death of the king, Wu Qi was assassinated for offending the old guard with his efforts to change the law.</div>\n<div>&nbsp;</div>\n<div>Wu Qi served in the states of Lu, Wei, and Chu, and was a master of the three schools of thought - <strong>military</strong>, legal, and Confucianism - and was known as \"Sun Wu.\" His work, Wu Zi, occupies an important place in the military canon of ancient China.&nbsp;</div>\n<div>&nbsp;</div>\n<div>During the reign of Emperor Su Zong of the Tang Dynasty, he was included in the King Wucheng Temple and became one of the ten philosophers of the Wushu Temple. During the reign of <strong>Emperor</strong> Huizong of the Song Dynasty, he was posthumously appointed Guangzongbo, one of the seventy-two generals of Wu Temple.</div>\n[gap]\n\n<h2>3. Qin Shi Huang</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"752\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Qin Shi Huang Ying Zheng (259-210 BC), nicknamed Ying, Zhao and also known as Zhao Zheng, was an outstanding statesman, strategist and reformer of <strong>ancient China</strong>. He was the first political figure to complete the unification of China and was the first Chinese monarch to call himself emperor. He is the very first reformer of China, ending ten years of brutal war.</div>\n<div>&nbsp;</div>\n<div>Ying Zheng was born in Handan, the capital of Zhao State. He succeeded to the throne in 247 BC, at the age of thirteen.&nbsp; From 230 to 221 BC, he destroyed the six states of Han, Zhao, Wei, Chu, Yan and Qi, completing the unification of <strong>China</strong> and establishing a centralized and unified multi-ethnic state, the Qin Dynasty. It is from this dynasty that the name of the country would come from, Qin being very similar to the word \"China\".</div>\n<div>&nbsp;</div>\n<div>At the same time, the central government adopted the system of three princes and nine ministers to manage the affairs of state; at the local level, the <strong>feudal system</strong> was abolished and replaced by the county system.&nbsp;</div>\n<div>&nbsp;</div>\n<div>He was also responsible for the construction of the <strong>Great Wall of China</strong>. The construction of this edifice, still standing today, was ordered by Ying Zheng in order to repel the nomadic and barbarian attacks coming from the north. This allowed the Middle Kingdom to remain in peace for more than 15 years, giving the country time to unify in peace.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<div>Qin also established China\'s first centralized government institutions and replaced the outdated military system - which was normally composed of disorganized peasant fighters - with established <strong>military institutions</strong> that to this day produce career soldiers systematically trained in the most advanced defense tactics.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Qin Shi Huang sought immortality and dreamed of becoming a god. His tyrannical rule and stifling of the wisdom of the people destabilized the foundations of Qin rule. In 210 BC, Qin Shi Huang died at Xingtai Shaqiu during his eastern tour.&nbsp;</div>\n<div>&nbsp;</div>\n<div>This <strong>Chinese warrior</strong> and emperor achieved the feat of defining the basic pattern of the Chinese political system for over 2,000 years. He was hailed by the Ming thinker Li Zhi as the \"only emperor of a thousand ages\".</div>\n[gap]\n\n<h2>4. Xiang Yu</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"9227\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Xiang Yu (232 BC - 202 BC), was a descendant of the Xiang State, a <strong>vassal</strong> state of the Zhou Dynasty.</div>\n<div>&nbsp;</div>\n<div>As a young man, Xiang Yu learned nothing about books and swords, but he had the great ambition to <strong>fight</strong> against the Qin. In September of the first year of the second Qin dynasty (209 BC), he accompanied Xiang Liang to fight at Huiji (now Suzhou, Jiangsu province) in response to the uprising of Chen Sheng and Wu Guang.</div>\n<div>&nbsp;</div>\n<div>After the death of Chen Sheng, he took the lead of the main anti-Qin forces and installed Xiong Xin, the grandson of King Huai of Chu, as king.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In 206 BC, Xiang Yu divided the lords and made Liu Bang king of the Han, making himself king of western Chu and establishing his capital at Pengcheng (now Xuzhou, Jiangsu).&nbsp;</div>\n<div>&nbsp;</div>\n<div>Soon after, Tian Rong and Chen Yu raised their troops against Chu in Qi and Zhao, and Liu Bang took the opportunity to pacify the three <strong>Qin dynasties</strong> and advance into western Chu. Although Xiang Yu was victorious at the beginning of the war, the military situation became increasingly unfavorable due to the division of the lords and internal conflicts, as well as poor strategic decisions, and he was finally besieged at Gaixia.</div>\n<div>&nbsp;</div>\n<div>As a representative of the <strong>Chinese military school</strong> of thought, Xiang Yu was a warrior general known for his superior strength. Li Wanfang commented that \"Yu\'s courage has been unmatched for a thousand years.\"</div>\n[gap]\n\n<h2>5. Cao Cao</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"748\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Cao Cao, Wu <strong>emperor of Wei</strong> (155 - March 15, 220), came from Qiao county, Pei state (now Bozhou, Anhui province), with the surname Mengde. He was an outstanding politician, military man, literary scholar, calligrapher and poet in ancient China. He was a powerful minister in the late Eastern Han Dynasty, the son of Cao Song, the son of the first lieutenant and the founder of the Cao Wei Dynasty.</div>\n<div>&nbsp;</div>\n<div>Cao Cao was an alert, <strong>chivalrous</strong> and debauched young man who mastered his craft. At the age of only twenty, he was promoted to the rank of peer and was appointed lieutenant in the northern part of Luoyang. Later, he became a <strong>cavalry captain</strong> and participated in the suppression of the yellow turban army. He moved to Jinan, where he was responsible for eliminating corrupt officials and banning obscene rituals.&nbsp;</div>\n<div>&nbsp;</div>\n<div>When Dong Zhuo took power, he dispersed his family\'s money and raised an <strong>army</strong> to fight against him with Yuan Shao and others. In the third year of his reign (192), he was able to divide and defeat Yanzhou\'s yellow turban army of over 300,000 men and select the best of them to form the Qingzhou army.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In the first year of Jian\'an (196), he hosted the Xian emperor in Xu (east of Xuchang, Henan province), where he became secretary general and took charge of the <strong>imperial</strong> administration. In the fifth year of Jian\'an (200), he defeated the main forces of Yuan Shao in the battle of Guandu, and eliminated Yuan Shang and Yuan Tan in succession.</div>\n<div>&nbsp;</div>\n<div>In the twelfth year of Jian\'an (207), he defeated Wuhuan and unified the north. The following year, he was promoted to prime minister, attacked Jingzhou and fought the battle of the Red Cliff with Sun Quan and Liu Bei, but was defeated. In the 18th year of Jian\'an (213), he was crowned Duke of Wei. In the 20th year of Jian\'an (215), he conquered Zhang Lu and took Hanzhong. The following year, he was crowned king of Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Finally, in 220, he died in Luoyang at the age of sixty-six. After his son Cao Pi became emperor on behalf of the Han, he was posthumously honored as emperor Taizu Wu and was buried in Gao Ling.</div>\n<div>&nbsp;</div>\n<div>Cao Cao was gifted in poetry and literature, knew the art of war, and created the Jian\'an style of writing. He is the author of many poems and essays. He also wrote a commentary on Sun Tzu, which has been transmitted to the world. His poems and writings were collected in a manuscript, Cao Cao ji (Complete Works of Cao Cao). He also excelled in calligraphy, and Zhang Huaiguan of the Tang Dynasty called him \"a wonderful masterpiece.</div>\n[gap]\n\n<h2>The place of these warriors in the life of the Chinese</h2>\n[gap]\n\n<div>As we have just seen, these 5 Chinese warriors have, in their own way, moved the Chinese world forward. Whether it is Sun Tzu who wrote the \"Art of War\" or Qin Shi Huang who ordered the construction of the Great Wall, all these <strong>legendary men</strong> have left their mark on the modern world.</div>\n<div>&nbsp;</div>\n<div>They are considered today as inspiring people, so that they can be found in many works such as books or movies. There are also very famous video games like <strong>Dynasty Warriors</strong> featuring some of these men during the War of the Three Kingdoms.</div>\n<div>&nbsp;</div>\n<div>We can also easily find in China the graves of these men, allowing us to discover beautiful <strong>Chinese cities</strong> waiting for your visit.</div>\n[gap]\n\n[featured_products]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:28:\"5 Legendary Chinese Warriors\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:28:\"5-legendary-chinese-warriors\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:22:34\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:22:34\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=731\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:760;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 19:42:55\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 01:42:55\";s:12:\"post_content\";s:13112:\"<!-- wp:flatsome/uxbuilder -->\n<div>Are you wondering what <strong>Hanfu</strong> is? Is it worn by men or women? Is it still worn today?</div>\n<div>&nbsp;</div>\n<div>Passionate about <strong>Chinese culture</strong> and traditional fashion, we will bring you the answer as precisely as possible.</div>\n<div>&nbsp;</div>\n<div><strong>The Hanfu is a traditional Chinese garment. It has been worn for more than 3000 years and has received some modifications through the dynasties. Forgotten for many decades, the Hanfu has come back in fashion and is now a symbol of China.</strong></div>\n<div>&nbsp;</div>\n<div>In this article, you will discover:</div>\n<ul>\n<li>What is the Hanfu</li>\n<li>When and how to wear it</li>\n<li>Is it still a worn and appreciated garment</li>\n</ul>\n<div>After reading this article, you will know exactly why this traditional garment is so important in <strong>China</strong>.</div>\n<div>&nbsp;</div>\n<div>Without further ado, let\'s get started.</div>\n[gap]\n\n<h2>The Hanfu, a traditional Chinese garment</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"804\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Hanfu 汉服 literally means \"clothing of the Han people\".&nbsp; It is the traditional clothing <strong>originally worn by the Han Chinese</strong>, the majority ethnic group in China.</div>\n<div>&nbsp;</div>\n<div>Hanfu is a traditional Chinese garment of very ancient origin. It would have more than 3000 years of history! It would even have been worn by the Yellow Emperor himself, a great civilizing sovereign considered even today as the father of China.</div>\n<div>&nbsp;</div>\n<div>The origin of this <strong>garment</strong> dates back to the Shang dynasty (1570 to 1045 BC). The Hanfu is composed as follows:</div>\n<ul>\n<li>the Yi 衣, a tunic with narrow sleeves, reaching down to the knees and fastened with a belt</li>\n<li>the Chang裳, a pleated skirt reaching the ankles</li>\n<li>the Bixi蔽膝, a piece of cloth covering the thighs, worn above the skirt.</li>\n</ul>\n<div>During the Zhou Dynasty (770 to 256 BC), the social status of the garment became highly codified and not everyone could wear Hanfu in the same way.</div>\n[gap]\n\n[gap height=\"50px\"]\n\n[ux_image id=\"834\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>According to the regulations, it was necessary to pay attention to the length of the <strong>skirt</strong> and the tunic, the width of the sleeves, the ornaments put on the dress... During this dynasty, the Hanfu changes slightly by becoming wider at the level of the sleeves and more decorated (hanging jade stones on the belt was very appreciated for example).</div>\n<div>&nbsp;</div>\n<div>Hanfu became a method of <strong>distinguishing social classes</strong>. The higher a person was placed, the more his Hanfu was decorated. In addition, there were also differences in the size of the sleeves, the length of the skirt or the fastening of the dress.</div>\n<div>&nbsp;</div>\n<div>The Zhou Dynasty invented the <a href=\"https://www.chinahighlights.com/travelguide/traditional-chinese-clothes.htm#:~:text=The%20Hanfu%2C%20Zhongshan%20suit%20(Mao,types%20of%20traditional%20Chinese%20clothing.\">Shengyi</a> 深衣, or \"deep garment\". It was actually a short tunic and skirt sewn together. This new garment could be worn by a man as well as a woman.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"808\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>As the technology was more modern, we saw on the <strong>Shengyi</strong> and Hanfu beautiful and complex patterns.</div>\n<div>&nbsp;</div>\n<div>With time and the different dynasties that followed, the Hanfu developed and became even more complex. For example, we find:</div>\n<ul>\n<li>The Yi衣, a short garment with a cross neck. Worn by both sexes</li>\n<li>The Pao袍, long dress or tunic closing sideways worn only by men</li>\n<li>The Ru襦, open shirt with a cross neck</li>\n<li>The Shan衫, open cross-necked jacket or jacket worn over the Yi</li>\n<li>The Chang裳, a new type of skirt worn by both men and women</li>\n<li>The Ku褲, a type of wide pants worn mostly by men</li>\n</ul>\n<div><strong>Hanfu is worn by almost all Chinese people for centuries</strong>. Court people, scholars, students, workers, all had a Hanfu adapted to their social class.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"836\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>It is at the beginning of the Qing dynasty (1644-1911) that the Hanfu disappears little by little. This dynasty, compared to all the others, was not founded by Han <strong>Chinese</strong>, who formed the majority of the Chinese population at that time, but by Manchu Chinese.</div>\n<div>&nbsp;</div>\n<div>The Manchus were a semi-nomadic people who made themselves known in Manchuria. Having taken power in China, they naturally brought back their own traditional clothes. Among them is for example the very famous <strong>Chinese dress QiPao</strong>, which will soon replace the Hanfu for women.</div>\n<div>&nbsp;</div>\n<div>The Qipao and the Hanfu have thus linked but very different histories. The <strong>Qipao</strong> are nowadays much more popular than the Hanfu, because the modern versions are much easier to wear in everyday life than the Hanfu which remains a rather imposing and complex garment. If you are interested in Qipao, a link to our collection can be found in the image below.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"47\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>When and how to wear Hanfu</h2>\n<p>Hanfu is a sophisticated and prestigious garment. It is obvious that nowadays, one does not go to work in Hanfu for example. However, there are many occasions to wear this beautiful garment.</p>\n[gap]\n\n<h3>When to wear Hanfu</h3>\n<p>For traditional celebrations, it is not surprising to wear a Hanfu. It shows respect for <strong>Chinese culture</strong> and puts you in the shoes of the Chinese of the time during the festivities. This obviously includes <a href=\"https://www.cchatty.com/Chinese-Traditional-Marriage-Culture-g-100013\">Chinese weddings</a>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"812\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>It is also possible to wear the Hanfu for historical commemorations or for a coming of age ceremony, an ancient tradition that some Chinese people are trying to revive.</div>\n<div>&nbsp;</div>\n<div>The Hanfu <strong>can be worn for an event</strong>, such as a <strong>school or theatrical performance</strong>. It can also be worn <strong>in the street</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"814\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Finally, we can mention the Buddhist and Taoist <strong>religious clothes</strong> which are still today Hanfu. The Hanfu worn by believers are obviously very sober, of plain color and rarely with patterns.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"816\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Since 2010, there is even an <strong>official Hanfu festival</strong>, usually held in Chengdu. This <a href=\"http://en.people.cn/n3/2020/1123/c90000-9786322.html\">Hanfu festival</a> allows to perpetuate the tradition and to allow the participants to learn more about this mythical garment. Although Chinese people learn about Hanfu in school, it is especially during this kind of event that we learn interesting things.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"818\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>How to wear Hanfu</h3>\n<div>Hanfu is a garment that is simpler to wear than you might think. It is as simple to dress in Hanfu as it is to dress in a <strong>modern garment</strong>. In summer, for example, Chinese women like to wear a Qixiong Ruqun齐胸襦裙, which is a <strong>simple dress</strong> with a belt above the chest.</div>\n<div>&nbsp;</div>\n<div>In winter, Qiyao-Ruqun齐腰襦裙 dresses from the Wei and Jin dynasties or Ma Mian Qun马面裙 dresses are going to be preferred. They are usually composed of more layers than other dresses, and keep warmer. They are more complex to put on.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"820\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>For men, the Hanfu is also very simple to wear. Even if the very traditional versions are a bit more complex, the majority of the Hanfu you will be able to try are very simple to put on: <strong>a simple dress, a jacket and a belt to buckle up</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"822\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>If you come to China, it is quite normal <strong>to wonder if a non-Chinese person can wear Hanfu</strong>. Even if some rare nationalistic Chinese will have a hard time saying yes, <strong>the vast majority will not take it badly at all</strong> to see a foreigner wearing a Hanfu. As long as it is done with respect for tradition, <strong>it is accepted without any problem</strong>.</p>\n[gap]\n\n<h2>A traditional garment still appreciated by the Chinese</h2>\n<div>Despite the age of this garment, the <strong>Hanfu has been growing in popularity in China</strong> for a few years.</div>\n<div>&nbsp;</div>\n<div><strong>Fashion in China</strong> has really changed a lot in the last years. In the 80\'s and 90\'s, Chinese people used to dress in a very sober way, often in black or grey. Going outside the mold was rather frowned upon so \"everyone\" dressed the same way.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"824\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>With the years, the economic leap of China and the mentalities more and more westernized, the <strong>Chinese fashion</strong> changes very quickly. The Chinese no longer want to \"be like everyone else\" but \"be different\".</div>\n<div>&nbsp;</div>\n<div>We find all styles when we walk in China. We go from adults in sober suits to young people dressed in a much more excessive way. They can very well go from a streetwear outfit to a <strong>traditional outfit</strong>, like the Hanfu.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"826\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Hanfu has become fashionable again since the 2000s</strong>. A man named Wag Letian, an energy worker, took to the streets in November 2003 wearing his homemade Hanfu. This is said to be the starting point of the Hanfu revival.</div>\n<div>&nbsp;</div>\n<div>More and more people dared to go out in the street in traditional dress. <strong>The followers of this practice are called TongPao同袍</strong>. They mostly use the internet to share this practice brought back to life.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"828\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>TongPao</strong>, passionate about this garment, have deepened their knowledge and share daily a lot of information about Hanfu which allows to gather reliable sources and thus to know more about the traditional Chinese culture.</div>\n<div>&nbsp;</div>\n<div>It is really less and less surprising to see young people walking in town in <strong>traditional dress</strong>. Like princes or princesses, these young Chinese like to do this for respect of traditions, for photo shootings or to be noticed.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"830\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>You don\'t even have to go to China anymore to see them, on social networks like Instagram or even Tik Tok, it\'s pretty easy to find photos or videos of these <strong>Chinese people</strong> dressed in these beautiful traditional outfits.</div>\n<div>&nbsp;</div>\n<div>A very interesting report published by Tmall (a kind of extremely popular Chinese Amazon) released in 2018 tells us that the <strong>number of people buying Hanfu is increasing by 92% per year</strong> on average. Chinese born after 1995 represent 48% of the clientele. The interest in this garment is therefore growing over time.</div>\n<div>&nbsp;</div>\n<div>One might think that this is just a fashion effect, but the inhabitants of the Middle Kingdom seem to be much more attached to the history of their country than we are in Europe. Hanfu is<strong> an inseparable element of Chinese culture</strong>, that\'s why it is and will always be present in the life of the Chinese.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"832\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>A garment always in fashion</h2>\n<div>As we have just seen in this article, <strong>the Hanfu is a timeless garment</strong>, which never ceases to adapt to the centuries and the generations that wear it. Another Chinese invention that still seems to have a great future ahead of it.</div>\n<div>&nbsp;</div>\n<div>If the opportunity arises one day, <strong>do not hesitate to try the Hanfu</strong>. Even if today it is mainly used as a \"disguise\", you will be able to put yourself in the shoes of a Chinese during the ancient dynasties and get very nice pictures.</div>\n<div>&nbsp;</div>\n<div>Trying a Hanfu is nice, but having your own is even nicer. At Teng Shop, we offer you <strong>a beautiful collection of Hanfu</strong> directly imported from China. Link on the image below.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"48\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:24:\"The Hanfu : What Is It ?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:13:\"what-is-hanfu\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:16:27\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:16:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=760\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:840;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 15:35:30\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 21:35:30\";s:12:\"post_content\";s:19291:\"<!-- wp:flatsome/uxbuilder -->\n<div>What are the must-see monuments in <strong>China</strong>? What is their history? Where are they located?</div>\n<div>&nbsp;</div>\n<div><strong>Between the Great Wall of China and the Temple of Heaven in Beijing, the Bund in Shanghai, the Great Pagoda in Xian and many others, Chinese monuments are numerous and all filled with history and culture.</strong></div>\n<div>&nbsp;</div>\n<div>Passionate about Chinese culture and its monuments in particular, we are going to deliver our personal top of the <strong>must-see Chinese monuments</strong>!</div>\n<div>&nbsp;</div>\n<div>Without further ado, let\'s discover these 11 extraordinary monuments:</div>\n[gap]\n\n<h2>The Great Wall of China, Beijing</h2>\n<div>Address: Great Wall of China, Beijing</div>\n<div>&nbsp;</div>\n<div>Chinese name: 长城</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"981\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Considered as <strong>one of the wonders of the new world</strong>, the Great Wall of China is not only a Chinese attraction but also <strong>one of the most visited monuments in the world</strong>. This popular Chinese monument really needs no introduction. Although the total length of the Great Wall is not easy to discern, the beginning of its construction dates back to the 5th century BC.</div>\n<div>&nbsp;</div>\n<div>Most of the current wall, widely considered the \"<strong>Great Wall</strong>\", was built during the reign of the Qing Dynasty to defend the region from Mongol insurgents. The wall in its entirety is <strong>21196 km long</strong>. The Qing Wall itself is 8850 km long, of which 6259 km is the wall itself, the rest being trenches and natural defenses.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"979\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>This length of wall includes more than <strong>25,000 watchtowers</strong>. Although a significant part of the wall is now in ruins, about 30%, some parts of the wall around Beijing are maintained in excellent condition thanks to many actions taken in the past few decades, mainly because they are a <strong>huge tourist attraction</strong>.</div>\n<div>&nbsp;</div>\n<div>The areas near Beijing that receive the most tourists are <strong>Jinshanling</strong>, a famous hiking trail, and <strong>Mutianyu</strong>, the best preserved section of the wall. There are several tours of the Great Wall, and many sections you can visit according to your preferences.</div>\n[gap]\n\n<h2>Wild Goose Pagoda, Xi\'an</h2>\n<div>Address: Giant Wild Goose Pagoda, Xian</div>\n<div>&nbsp;</div>\n<div>Chinese name: 大雁塔</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"977\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Located in Xi\'an, Shaanxi Province, China, the Wild Goose Pagoda, or Great Wild Goose Pagoda, is a <strong>five-story pagoda</strong> built in the 7th century. The pagoda is located in the Da Ci\'en temple complex. It <strong>was originally built in 652</strong> during the Tang Dynasty, rebuilt again in 704, and renovated during the Ming Dynasty and in the 20th century.</div>\n<div>&nbsp;</div>\n<div>In the monument, there are <strong>sutras and Buddhist figurines</strong>. Built by Emperor Gaozong of the Tang Dynasty (617-907), the Wild Goose Pagoda was built to collect Buddhist works and relics brought from <strong>India by the scholar</strong>, monk, traveler and translator Xuanzang. Xuanzang traveled all over China to collect Buddhist sacred works.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"975\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>He became famous for his 17-year journey to India and the religious sites of what is now Nepal, Pakistan and Bangladesh. He traveled through these countries, collecting Buddhist scriptures and artifacts because he was concerned that the nature of Buddhism that had reached China was neither complete nor correctly interpreted. His journey is the origin of the famous Chinese story \"<strong>Journey to the West</strong>\", which is why many Chinese like to think that the starting point of his journey is in Xi\'an.</div>\n<div>&nbsp;</div>\n<div>This monument is very interesting to visit when you are in Xi\'an, especially since it is surrounded by a large park where it is particularly pleasant to stroll for hours. Many small stores and other services are present as well as nice cafes with a great view on the <strong>pagoda</strong>.</div>\n<div>&nbsp;</div>\n<div>In Xi\'an there is also the very famous Terracotta Army, which is actually the mausoleum of the Qin emperor.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"40\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Summer Palace, Beijing</h2>\n<div>Address: 19 Xinjiangongmen Rd, Haidian District</div>\n<div>&nbsp;</div>\n<div>Chinese name: 颐和园</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"973\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Summer Palace was commissioned by the Qianlong Emperor of the Qing Dynasty in 1750. The first summer palace was called Qingyi Yuan or \"<strong>the garden of clear ripples</strong>\".</div>\n<div>&nbsp;</div>\n<div>However, this first summer palace was destroyed by the Franco-British allied forces in 1860 and was rebuilt in 1896. It was destroyed again in 1900 and rebuilt in 1912 to mark the last acts of the Qing Dynasty. In 1924, it was officially opened to the public as a <strong>tourist attraction</strong>.</div>\n<div>&nbsp;</div>\n<div>The Summer Palace is widely known as the largest existing imperial garden in China. In 1998, <strong>UNESCO</strong> added this complex to the World Heritage List. Covering an area of over 300 hectares, it is one of the largest and most captivating <strong>landscape gardens</strong> not only in China but also in the world.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"970\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The complex combines man-made architecture of pavilions, palaces, temples and bridges with beautiful natural landscapes of hills and open water. The Summer Palace is located in<strong> the northwest of Beijing</strong> and is considered the best preserved imperial garden in the world. It is only a short drive from the center of Beijing, so it is quite easy to reach.</div>\n<div>&nbsp;</div>\n<div><strong>Tourists</strong> can enjoy a <strong>variety of activities</strong> in the Summer Palace complex, from walking on the famous Long Corridor, to boating on Kunming Lake, to watching traditional performances in the ancient theater. The Summer Palace was designed to achieve harmony with nature. It harmonizes plants and architectural paths, water and earth, and emphasizes the philosophy of Chinese garden landscapes in general.</div>\n[gap]\n\n<h2>Hanging Temple, Datong</h2>\n<div>Address: Xian of Hunyuan, Datong</div>\n<div>&nbsp;</div>\n<div>Chinese name: 悬空寺</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"968\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Xuankongsi Hanging Temple, located about <strong>60 kilometers southeast of Datong</strong>, China, in Shanxi Province, is <strong>one of the forgotten wonders of the world</strong>. Apparently defying gravity, it hangs on a rock of the Hengshan Mountain and comprises 40 rooms connected by a dizzying maze of passages. This ancient <strong>Chinese monument</strong> is said to have been built by a monk named Liao Ran at the end of the Northern Wei dynasty (386-534) and restored in 1900.</div>\n<div>&nbsp;</div>\n<div>It was built by drilling holes in the side of the cliff in which the posts that support the temples are fixed. It is interesting to note that the <strong>temple</strong> is dedicated to the three religions: Confucianism, Taoism and Buddhism, and not to a single religion. All three religions are practiced in the temple and represented by 78 statues and sculptures throughout the temple. This combination of factors makes the Hanging Temple one of the most interesting religious and historical sites in the <strong>Middle Kingdom</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"966\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>Forbidden City, Beijing</h2>\n<div>Address: 4 Jingshan Front St, Dongcheng</div>\n<div>&nbsp;</div>\n<div>Chinese name : 紫禁城</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"964\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Forbidden City served as the palace of the Emperor of China for 500 years, from 1420 to 1912, and spans <strong>a vast complex of 13 hectares</strong>. Glorifying ancient Chinese architecture, this sprawling complex contains <strong>980 buildings</strong>. It is recognized as a UNESCO monument in China. This monument is named as such because it was forbidden to enter the complex without the permission of the emperor.</div>\n<div>&nbsp;</div>\n<div>Today, the <strong>Forbidden City houses</strong> <a href=\"https://en.dpm.org.cn/\">the Palace Museum</a>. It is divided into two parts: the outer courtyard, to the south, where the emperor exercised his authority over his subjects, and the inner courtyard, to the north, which was his residence. The whole complex, with its amazing architecture and buildings, is one of <strong>the main attractions in China</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"962\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>With over a million collectibles</strong> in bronze, ceramics, paintings, jade and wear and tear, the Palace Museum\'s collections are incredibly vast. You will start your visit at the Meridian Gate and exit either through the Divine Prowess Gate or the Eastern Prosperity Gate.</div>\n<div>&nbsp;</div>\n<div>This complex is obviously a must do when visiting <strong>Beijing</strong>, especially when you know that it is <strong>located in the center of the city</strong>. The monument is very large, so plan a good morning or afternoon to fully enjoy it. Do not hesitate to come with a guide so that he can explain all the secrets and details of the construction. Many guides are present on the spot but I advise you all the same to take it in advance to avoid the scams.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Kaifeng</h2>\n<div>Address: Kaifeng, Henan, China</div>\n<div>&nbsp;</div>\n<div>Chinese name: 开封</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"960\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng was the most important metropolis not only in China but in the world at the peak of its glory. It is famous for being <strong>one of the most important ancient capitals</strong> in China. Kaifeng is located about <strong>72 km from Zhengzhou</strong>, in the east of Henan Province, covering an area of 6,444 km². It is located just south of the Yellow River, facing the Huanghuai Plain to the south. There are many attractions to explore in Kaifeng, including :</div>\n<div>&nbsp;</div>\n<div>In this city, there are not one but several monuments you can discover:</div>\n<ul>\n<li><strong>Kaifeng Iron Tower</strong>, a 13-story, 56-meter tower, which is known as the world\'s first iron tower (built in 1049).</li>\n<li><strong>Qingming River Scenery Garden</strong>, a large garden from the Northern Song Dynasty (960-1127).</li>\n<li><strong>Xiangguo Grand Temple</strong>, a Buddhist temple from the Northern Qi Dynasty (550-577).</li>\n</ul>\n[gap height=\"50px\"]\n\n[ux_image id=\"958\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng is also famous for its <strong>chrysanthemums</strong>, and the chrysanthemum fair is famous since the 900s. The chrysanthemum flower fair is still held every year in October/November and features thousands of different types of chrysanthemums.</div>\n<div>&nbsp;</div>\n<div>The city is also <strong>the birthplace of Chinese calligraphy</strong> and Henan opera, home to four famous calligraphy schools.</div>\n[gap]\n\n<h2>10,000 Buddhas Monastery, Hong Kong</h2>\n<div>Address: 220, Pai Tau Village Sha Tin</div>\n<div>&nbsp;</div>\n<div>Chinese name : 萬佛寺</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"956\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Ten Thousand Buddhas Monastery, located on Po Fook Hill in Pai Tau Village, Sha Tin, New Territories, is one of <strong>the most famous Buddhist temples in Hong Kong</strong> and one of the most popular tourist attractions. The temple was founded in 1949 by Reverend Yuet Kai and completed in 1957. The monastery is not residential and is run by lay people.</div>\n<div>&nbsp;</div>\n<div>The <strong>monastery</strong> was extensively decorated in 1968, some of the pavilions were rebuilt and all the statues were painted or covered with pure gold. The monastery is built on two levels on a hillside, on a <strong>bamboo forest</strong> overlooking Sha Tin, and occupies an area of over eight hectares. It has five temples, four pavilions, a veranda and a pagoda. It is reached by a steep concrete path of 431 steps.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"954\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>There are many beautiful temples in <strong>Hong Kong</strong>, but this one is particularly original thanks to its <strong>12800 Buddha statues</strong>. This temple could well offer you a stroll that you will keep forever in your memory.</p>\n[gap]\n\n<h2>Great Buddha of Tian Tan</h2>\n<div>Address: Ngong Ping, Lantau Island, Hong Kong</div>\n<div>&nbsp;</div>\n<div>Chinese name: 天壇大佛</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"952\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>To stay in the vicinity of Hong Kong, you will find another monument that is clearly worth a visit: <strong>the great Buddha of Tian Tan</strong>. This one is located on Lantau Island, dominating the Ngong Ping hill.</div>\n<div>&nbsp;</div>\n<div>This <strong>34 meters high statue</strong> is made from <strong>250 tons of bronze</strong>. It was <strong>built between 1990 and 1993</strong> and stands on a lotus-shaped pedestal. This work of art represents China\'s pride in its Buddhist tradition.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"950\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>As this statue is near <strong>Po Lin monastery</strong>, you will have something to occupy a good part of your day with a zen and relaxing atmosphere.</p>\n[gap]\n\n<h2>White Horse Temple</h2>\n<div>Address: No. 6, Luoyang Road, Luolong District, Luoyang</div>\n<div>&nbsp;</div>\n<div>Chinese name: 白马寺</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"948\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>This temple is one of the most important in Asia as it is said to be <strong>the oldest temple in China</strong>. Built in the year 68, this temple built near Luoyang has its own rich history.</div>\n<div>&nbsp;</div>\n<div>According to <a href=\"http://en.chinaculture.org/library/2008-02/15/content_34384.htm\">the most popular legend</a>, two Indian monks, Kasyapamatanga and Dharmaratna, arrived in Luoyang with <strong>white horses</strong>. They carried with them many Buddhist statues and scriptures. They would be the ones who translated the Buddhist Sutras into Chinese for the first time. <strong>The first Buddhist temple in China</strong> and <strong>the first Chinese Buddhist scriptures</strong> were born.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"946\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>The temple is obviously composed of many rooms filled with ancient statues and other Buddhist relics. There are also beautiful gardens in the temple made up of multitudes of small foreign temples (Indian, Thai, Burmese...) and especially <strong>the oldest pagoda in China</strong>.</p>\n[gap]\n\n<h2>Potala Palace</h2>\n<div>Address: 35 Central Beijing Road, Lhasa, Tibet, China</div>\n<div>&nbsp;</div>\n<div>Chinese name: 布达拉宫</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"944\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>Potala Palace</strong> is <strong>a huge religious and administrative complex located in Lhasa</strong>, in the south of the Tibet Autonomous Region. The monument is located at the top of Mar-po-ri (Red Mountain), 130 meters above the Lhasa River valley, and rises dramatically from its rocky base.</div>\n<div>&nbsp;</div>\n<div>The Potrang Karpo, or White Palace, <strong>was once the seat of the Tibetan government and the main residence of the Dalai Lama</strong>. From the middle of the 18th century, it was used as a winter palace. The Potrang Marpo, or Red Palace, houses several chapels, sacred statues and the tombs of eight Dalai Lamas and remains an important place of pilgrimage for <strong>Tibetan Buddhists</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"942\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Among the more than 1,000 rooms of the Potala, the most sacred are the Chogyal Drubphuk and the Phakpa Lhakhang, the remains of the original palace of Srong-brtsan-sgam-po. The latter houses a sacred statue named Arya Lokeshvara. In the sacred complex, you will find <strong>more than 200,000 statues and 10,000 altars</strong>.</div>\n<div>&nbsp;</div>\n<div>Its value has been recognized by the China Cultural Relics Commission, and the palace was spared during the Cultural Revolution. The Potala <strong>was designated a UNESCO World Heritage Site</strong> in 1994.</div>\n[gap]\n\n<h2>The Bund, Shanghai</h2>\n<div>Address: Zhongshan East 1st Rd, Wai Tan, Huangpu, Shanghai</div>\n<div>&nbsp;</div>\n<div>Chinese name: 外灘</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"940\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>It is impossible to visit Shanghai without passing by <strong>the famous Bund</strong>. The name bund in Chinese means \"the bank of foreigners. This is mainly due to the fact that all along the Bund you will find beautiful European style buildings as well as banks and <strong>other colonial buildings</strong> dating from the 1930s. Today, many of these buildings are embassies.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"938\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>All the interest of the <a href=\"https://www.travelchinaguide.com/attraction/shanghai/bund.htm\">bund</a> is not in the old foreign concession buildings along the shore, but in <strong>the view it offers on the new business district</strong> of Lujiazui. By day and by night, you can admire the Oriental Pearl, the Shanghai Tower, the Jin Mao Tower, the <strong>Shanghai</strong> World Financial Center and the Shanghai IFC Towers</p>\n[gap]\n\n<h2>China and its countless monuments</h2>\n<p>We have just presented the 8 Chinese monuments that we find inescapable, but there are actually many others!</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"936\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Temple of Heaven and the Bird\'s Nest in Beijing, the walls of Xian, Tiananmen Square, the Yonghe Lamasery, the Jade Buddha <strong>Temple in Shanghai</strong> or the Crescent Moon Oasis in DunHaung are as exciting as the monuments mentioned above.</div>\n<div>&nbsp;</div>\n<div>China has many monuments, ancient and modern. It\'s up to you if you prefer to travel in a modern or <strong>traditional China</strong>, even if we obviously advise you a mix of both!</div>\n<div>&nbsp;</div>\n<div>If you are interested in <strong>Chinese culture</strong>, you will find many products related to the Chinese world in our store, the link is on the image below!</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"39\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:29:\"11 Must-see Chinese Monuments\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:29:\"11-must-see-chinese-monuments\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:13:39\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:13:39\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=840\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:985;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 16:46:53\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 22:46:53\";s:12:\"post_content\";s:7995:\"<!-- wp:flatsome/uxbuilder -->\n<p>For thousands of years, <strong>Chinese chopsticks</strong> have been the utensil of choice in China and other East Asian countries because of their simplicity and versatility.</p>\n<p>However, in the rest of the world few people are able to handle them with dexterity.</p>\n<p>If you are used to using a <strong>fork</strong> and knife to handle your food, you may have a hard time getting used to <strong>chopsticks</strong> at first, but once you understand how to hold them, it will be much easier to master the mechanics!</p>\n<p>We explain everything in this article!</p>\n[gap]\n\n<h2>Correct positioning of the chopsticks</h2>\n[gap]\n\n<h3>Step 1: Grab the first stick</h3>\n<div>On a standard table, your chopsticks will be placed <strong>side by side in front of you</strong>, horizontally.</div>\n<div>&nbsp;</div>\n<div>It is usually easier to pick up your chopsticks using your first 2 or 3 fingers and your thumb.</div>\n<div>&nbsp;</div>\n<div>Make sure that the chopsticks <strong>do not clatter loudly</strong> when you pick them up. This could be considered rude in quiet restaurants and more formal settings.</div>\n<div>&nbsp;</div>\n<div>Use your dominant hand loosely. People who squeeze their chopsticks usually end up throwing their food around.</div>\n<div>&nbsp;</div>\n<div>Grab the first chopstick and place it in the hollow <strong>between your index finger and thumb</strong>. Balance it on your <strong>ring finger</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"1018\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Step 2: Grab the second stick and adjust them</h3>\n<div>Place the second chopstick in the hollow between your index finger and thumb, <strong>just like the first chopstick</strong>, but place it on your middle finger instead of your ring finger.</div>\n<div>&nbsp;</div>\n<div>Make sure the narrow ends of the chopsticks <strong>are even with each other</strong> so they don\'t cross or \"pinch\" the food.</div>\n<div>&nbsp;</div>\n<div><strong>To even them out</strong>, you can touch them to the table. Uneven chopsticks will be very difficult to use.</div>\n<div>&nbsp;</div>\n<div>Use your thumb, forefinger and middle finger to grip the second chopstick <strong>a little more firmly</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"1016\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Step 3: The wand mechanism</h3>\n<p>Now practice <strong>opening and closing the chopsticks</strong>. Make sure the wide ends of the chopsticks do not form an \"X\" as this will make it difficult to pick up food.</p>\n<p>If only the second chopstick is moving, well done! You are on the right track.<br>If it helps, move your hand up and down on the chopsticks, but <strong>keep the same position</strong>, experimenting with grip levels.</p>\n<p>Some find it easier to maneuver closer to the base, others higher.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1014\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Step 4: Start grabbing food</h3>\n<p><strong>Start grabbing food</strong>! For now, tilting the chopsticks 45 degrees may be easiest. Once the food is stable, lift it up. If it seems unstable, put it down and try again.</p>\n<p>Once you have mastered one type of food, move on to different sizes and textures. When you start to feel really confident, <strong>practice with noodles</strong>!</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1012\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>But <strong>to handle chopsticks</strong> properly, the first thing you really need to do is to get <strong>a proper</strong> pair of Chinese Chopsticks!</div>\n<div>&nbsp;</div>\n<div>In our Teng Shop, we offer<strong> a complete collection</strong> of chopsticks that can be used over and over again, ranging from <strong>varnished wooden</strong> chopsticks to very sophisticated <strong>stainless steel</strong> versions, some of which are decorated with elegant patterns, and <strong>learning chopsticks</strong>, which are ideal for children and adults who don\'t want to be bothered.</div>\n<div>&nbsp;</div>\n<div><strong>Will you be tempted by one of these?</strong></div>\n[gap height=\"50px\"]\n\n[featured_products]\n\n[gap height=\"50px\"]\n\n<h2>Different rules when using chopsticks</h2>\n<p>Chopsticks are <strong>symbolically and culturally important to China</strong> and other neighboring Asian countries. Like everywhere else in the world, the Chinese are strict about how you use chopsticks.</p>\n<p>A wrong use of their favorite utensil could offend them, which you obviously do not want. We therefore propose a list of <strong>8 basic rules</strong> that you must follow in China and elsewhere:</p>\n[gap]\n\n<h3>1 - When sharing food</h3>\n<div>Often, being at Asian tables (whether at home or in a restaurant), means <strong>sharing large plates of food</strong>. It\'s not appropriate to dive into the communal meal with chopsticks you\'ve just used.</div>\n<div>&nbsp;</div>\n<div><strong>You have two options:</strong></div>\n<ul>\n<li>Use a pair of <strong>public chopsticks</strong> that never touch your plate (or anyone else\'s)</li>\n<li>Choose <strong>with the other</strong> (non-eating) end of your chopsticks. This is the big end that hopefully you don\'t chew!</li>\n</ul>\n[gap]\n\n<h3>2 - Do not use your chopsticks to serve yourself</h3>\n<p>To serve food. If someone invites you for lunch or dinner, <strong>use your hands</strong> to pass the serving bowls instead of using your chopsticks. Never receive food <strong>with your chopsticks</strong> because it reminds the Chinese of a funeral rite they practice where the cremated bones of a loved one are passed behind family members with chopsticks.</p>\n[gap]\n\n<h3>3 - Don\'t prick the food</h3>\n<p>Don\'t poke your food <strong>with the ends</strong> of your chopsticks. If all else fails, this may seem like a good alternative, but it\'s considered rude.</p>\n[gap]\n\n<h3>4 - Never stick chopsticks in your food</h3>\n<p>Never put your chopsticks <strong>directly into a bowl of rice</strong>. This may seem like a harmless way to make them stay in place, but it is a cardinal sin in chopstick use. The position is similar to the incense sticks that the Chinese stick in rice to honor their dead.</p>\n[gap]\n\n<h3>5 - Do not cross your chopsticks</h3>\n<p>Do not cross your chopsticks. If you are done eating, put them <strong>on the side of your plate</strong> on the left.</p>\n<p><strong>Do not point your chopsticks at people</strong>. Pointing, in general, is a no-no in Asian cultures and the same is true with chopsticks.</p>\n[gap]\n\n<h3>6 - Keeping chopsticks together</h3>\n<p><strong>When placing the chopsticks</strong>, keep them on the side of your bowl or plate in their designated area. You will get a small block to rest them on, but if not, you should place the chopsticks with the ends meeting. <strong>Never keep them crossed on the plate</strong> as this is a sign of denial, meaning you don\'t like the host and are denying their kindness.</p>\n[gap]\n\n<h3>7 - Don\'t play with your sticks</h3>\n<p>Don\'t use them to drum, tap, spin or bang the chopsticks together. When you drum your plate with the chopsticks, it is associated with the act of begging.</p>\n[gap]\n\n<h3>8 - Always tilt your chopsticks</h3>\n<p>When you put the chopsticks down, make sure they never point directly at the person sitting across from you. This is considered a rude gesture, <strong>so tilt them slightly</strong>.</p>\n[gap]\n\n<h3>9 - When you eat rice</h3>\n<p>When you eat rice, <strong>be prepared to dig in</strong>. If a bowl of rice is placed in front of you and you only have two small bamboo poles, you may feel like you are in a stream without a paddle.</p>\n<p>But it\'s perfectly acceptable (pretty normal) <strong>to lift the rice bowl near your mouth</strong> and eat from there. You won\'t look silly, you\'ll look seasoned!</p>\n<p>Don\'t stick your bowl to your mouth either, but lift it close to you to keep the rice grains from accumulating around your dining area.</p>\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:31:\"How to Hold Chinese Chopsticks?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:30:\"how-to-hold-chinese-chopsticks\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:09:27\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:09:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=985\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1022;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 18:54:18\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 00:54:18\";s:12:\"post_content\";s:7226:\"<!-- wp:flatsome/uxbuilder -->\n<div>Food culture is deeply rooted in China\'s history. As a visitor or guest in a Chinese home or restaurant, you will find that <strong>table manners</strong> are essential and that courtesy will invariably contribute to your enjoyment of the meal and your good mood!</div>\n<div>&nbsp;</div>\n<div>It is truly an admirable custom to <strong>respect others at the table</strong>, including the elderly, teachers and guests, while taking good care of children.</div>\n<div>&nbsp;</div>\n<div>The Chinese always insist on filial piety. The practice of <strong>presenting the best dishes</strong> to the oldest family members first has been observed for countless generations. <strong>In ancient times</strong>, the common people led a poor life, but they still did their best to support the elder mother or father, who took it for granted.</div>\n<div>&nbsp;</div>\n<div>Although the hosts in China are all friendly and hospitable, you <strong>should also show them respect</strong>. Before you start eating, the host may say a few words of welcome to you. Guests should not start eating until the host says, \"Enjoy your meal\" or something like that, otherwise it suggests disrespect and causes displeasure.</div>\n<div>&nbsp;</div>\n<div>When the hosts arrange the dishes on the table, they <strong>place the main dishes in the center</strong> and the side dishes around them. When the main dishes are <strong>prepared in a decorative form</strong>, either by cutting or by other means, they will be placed in front of the main guests and the elderly at the table.</div>\n<div>&nbsp;</div>\n<div>Now, let\'s move on to the different traditional Chinese cuisines.&nbsp;Discover it now!</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"36\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>The best traditional cuisines of China</h2>\n<div><strong>Chinese cuisine</strong> is rich and diverse, varying in style and taste from region to region. Its history goes back thousands of years, evolving over time according to changes in the environment (such as climate) and local preferences. Chinese cuisine also varies by social class and ethnicity, and is often influenced by the cuisines of other <strong>cultures</strong>.</div>\n<div>&nbsp;</div>\n<div>All of these factors contribute to an unparalleled range of cooking techniques, ingredients, <strong>dishes</strong> and food styles that make up what is now known as Chinese cuisine.</div>\n<div>&nbsp;</div>\n<div>Of the various regional styles of Chinese cuisine, Guangdong Cantonese cuisine is the most widely recognized in the world. Many Western Chinese restaurants have adopted a <strong>Cantonese style</strong> of cooking due to the majority of Chinese emigrants from Guangdong who settled in the United States and Europe in the 1800s.</div>\n<div>&nbsp;</div>\n<div>Indeed, the Hakkasan menu is primarily Cantonese or Hakka dishes (hence the name Hakkasan), a cuisine developed by the Hakka people who lived in <strong>Guangdong</strong> province. However, there are a number of distinct styles from different regions that contribute to the overall Chinese cuisine.</div>\n[gap]\n\n<h3>Anhui (Hui)</h3>\n<p>Anhui cuisine is derived from the indigenous cooking styles of the inhabitants of the Huangshan Mountain region of <strong>China</strong>. Although it is similar to Jiangsu cuisine, it places less emphasis on seafood and more on a wide variety of locally grown herbs and vegetables, both from the land and the sea.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1062\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Fujian (Min)</h3>\n<p>Fujian cuisine is influenced by its coastal location and mountainous terrain. Ingredients such as wood mushrooms, <strong>bamboo</strong> shoots, fish, shellfish and turtles are regularly used. The cuisine of this region is known for its special emphasis on umami flavor; the dishes are notoriously light and flavorful.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1060\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Zhejiang (Zhe)</h3>\n<p>In general, <strong>Zhejiang</strong> food is fresh and light rather than fatty. It consists of at least four styles of cuisine: Hangzhou, characterized by the use of rich foods and bamboo shoots; Shaoxing, specializing in poultry and <strong>fish</strong>; Ningbo, specializing in seafood; and Shanghai, with xiao long bao.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1058\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Shandong (Lu)</h3>\n<p>Derived from the indigenous culinary styles of Shandong, a coastal province in northern China, Shandong cuisine consists of two predominant styles: Jiaodong, which is characterized by light <strong>seafood dishes</strong>, and Jinan, a style characterized by the use of soup in its dishes. Although less available in the West, Shandong cuisine is often considered one of the most influential cooking styles in <strong>Chinese culinary</strong> history.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1056\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Hunan (Xiang)</h3>\n<p>Like Szechuan cuisine, Hunan cuisine is known to be <strong>hot and spicy</strong>, with garlic, chilies and shallots used in abundance. However, unlike Sichuanese cuisine, it is known to be purely hot, as opposed to the hot and numbing heat of <strong>Sichuanese cuisine</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1054\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Cantonese (Yu)</h3>\n<p>Due to Guangdong\'s proximity to the <strong>South China Sea</strong>, residents of the region have access to an abundant supply of imported foods and fresh seafood. Cantonese cuisine incorporates almost all edible meats, including <strong>chicken feet</strong>, duck tongue, snakes and snails. However, due to their availability, lamb and goat are rarely eaten.</p>\n<p>Many <strong>cooking techniques</strong> are used, including wok hei (frying) and steaming. Spices are used sparingly and fresh herbs are rarely added to dishes. Dishes include dim sum, small pieces of <strong>food</strong> usually served for breakfast or lunch with tea; barbecued char siu, sticky and burnt red in color; and clear broths flavored with meat broth.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1051\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Jiangsu (Su)</h3>\n<p>Jiangsu cuisine consists of several different styles of Chinese cuisine, namely Huaiyang, Yangzhou, Nanjing, Suzhou and Zhenjiang. <strong>The food in Jiangsu cuisine is known to be soft</strong>, but not so soft that it falls apart: the meat is tender but does not fall off the bone when lifted.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1049\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Szechuan (Chuan)</h3>\n<p>Szechuan cuisine produces the most widespread cuisine in China. It is famous for its use of strong flavors. <strong>Szechuan chili</strong>, garlic and pepper are used extensively in dishes. Sichuan pepper has a unique taste: it is intensely fragrant, lemony and causes a numbing sensation in the mouth. Szechuan cuisine often contains foods that have been preserved through pickling, <strong>salting and drying</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1047\" image_size=\"original\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:65:\"Chinese Food Culture : The different types of dishes to discover!\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:20:\"chinese-food-culture\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:09:23\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:09:23\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1022\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:8;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1068;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 12:06:05\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 18:06:05\";s:12:\"post_content\";s:5242:\"<!-- wp:flatsome/uxbuilder -->\n<div>We happen to live in a place in time where we seem to keep running on the metaphorical treadmill to acquire more and more things.</div>\n<div>&nbsp;</div>\n<div><strong>Chinese Zen philosophy</strong>, inspired by Buddhism, however, is a study of contrasts. It teaches us to find comfort in emptiness, beauty in imperfection and elegance in simplicity.</div>\n<div>&nbsp;</div>\n<div>And when these principles are infused into the language of <strong>interior design</strong>, they can transform your home into a meditative retreat from the outside world.</div>\n<div>&nbsp;</div>\n<div>Here are a few ways to introduce Zen-inspired design into your home.</div>\n[gap]\n\n<h2>1) Letting in the Natural Light</h2>\n<p>Zen advocates openness in all aspects of life and a big part of that involves becoming one with <strong>nature</strong>, staying close to it. This living space is the perfect example of how to bring the outside in by letting in the light.</p>\n<p>The cynosure is the glass wall that bathes the room in natural light and allows for expansive green views of the outdoors. Create a similar atmosphere by exploring all the possibilities of natural light in your home.</p>\n[gap height=\"50px\"]\n\n[ux_products cat=\"42\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>2) Use Muted Earthy Colors</h2>\n<div>&nbsp;</div>\n<div>Zen-inspired spaces instill <strong>a sense of calm in the environment</strong>. Bright colors, even pastel tones, are considered to have a very energetic character. Muted, neutral and earthy colors bring a sense of calm and serenity.</div>\n<div>&nbsp;</div>\n<div>The goal is <strong>to keep all distractions, large and small</strong>, at bay. Solid neutral colors are an easy and economical way to achieve this. You can also opt for furniture with muted tones.</div>\n[gap]\n\n<h2>3) Putting on a Platform Bed</h2>\n<div>Stillness in <strong>Zen culture</strong> is about cultivating inner peace that enhances self-awareness and a sense of equanimity. This principle is manifested in interior design through permanent fixtures, such as platform beds.</div>\n<div>&nbsp;</div>\n<div>Platform beds are a common feature of <strong>Japanese-inspired Zen designs</strong>. They consist of a wooden platform placed very low to the ground. A mattress is simply placed on top and there is a deliberate absence of any other elements to preserve the stillness of the space.</div>\n[gap]\n\n<h2>4) Install a Water Feature</h2>\n<p><strong>Zen spaces</strong> evoke tranquility and calm, both inside and out. The sound of water flowing inside the home creates soothing, harmonious music that elevates energy and calms the mind.</p>\n<p>If it\'s not possible to create a central water feature like the one in the image, consider bringing in one of the plug-and-play indoor water fountains that are readily available locally.</p>\n<p>Place them in the dining room, living room or a courtyard - better yet, in a place where the gentle sound of running water can somehow be amplified.</p>\n[gap]\n\n<h2>5) Bringing Minimalism and Simplicity</h2>\n<div><strong>Simple living</strong> is part of the Zen genetic code. Everything unnecessary is eliminated, so that the negative space created ends up being part of the design itself. The result is a captivating naked aesthetic.</div>\n<div>&nbsp;</div>\n<div>The first step in moving toward minimalism is to get rid of anything that clutters the house. Unused items can be donated and the rest can be neatly hidden away in storage units. When it comes to furniture, opt for pieces that are sleek, contemporary, light and unadorned. Create a sense of lightness by choosing items with <strong>simple designs</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"45\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>6) Reorganize the Presentation</h2>\n<div>In addition to removing unwanted things and objects from our environment, Zen urges us to find balance and harmony with the things that remain.</div>\n<div>&nbsp;</div>\n<div>You can do this by <strong>rearranging furniture</strong>, creating perpendicular angles in their placement and removing anything that disrupts the flow and harmony of a space. You can also use subtle colors and complement textures and lighting to create that balance.</div>\n<div>&nbsp;</div>\n<div>This room combines a simple, clean layout with a neutral, two-tone color theme to create the most <strong>serene atmosphere</strong>.</div>\n[gap]\n\n<h2>7) Opt for Green</h2>\n<div>Embracing nature as a part of our being and vice versa is an essential principle of <strong>Zen philosophy</strong>. To create a soothing space, bring in nature. Use potted plants or even bring a tree or two inside the house.</div>\n<div>&nbsp;</div>\n<div>Sand, stones and rocks can be used to enhance the nature of the living space with <strong>wood and bamboo</strong>. You can also for example opt for a handmade Incense-Holder, which will make your home very healthy.</div>\n<div>&nbsp;</div>\n<div>You can also create a green corner in your kitchen or on a windowsill and grow plants and herbs. If you are not good with a green thumb, just place some <strong>bonsai</strong> plants around the house.</div>\n[gap height=\"50px\"]\n\n[ux_product_categories]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:40:\"How to make your home Zen &amp; Chinese?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:33:\"how-to-make-your-home-zen-chinese\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:08:02\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:08:02\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1068\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:9;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1085;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 12:35:00\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 18:35:00\";s:12:\"post_content\";s:6009:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>Chinese weddings</strong>, like Western weddings, are all unique in their own way. Some weddings tend to be more traditional with parades and wedding ceremonies, while others include more contemporary and Western customs.</div>\n<div>&nbsp;</div>\n<div>While Chinese weddings are bound to be a bit more complicated for us to understand than traditional Western weddings, it\'s still easy to navigate, even if it\'s your first time!</div>\n<div>&nbsp;</div>\n<div>As a guest, what you wear to a Chinese wedding can be important.</div>\n<div>&nbsp;</div>\n<div>That\'s why we\'re going to answer the question in this article : How to dress for a Chinese wedding? Through 9 recommendations to be in the dress code of a <strong>traditional Chinese wedding</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"47\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>1. Do not wear red</h2>\n<p><strong>Chinese brides usually wear red on their wedding day</strong>, so wearing it as a guest will be considered rude. It\'s kind of like in the West, where it\'s rude to dress in white when you\'re a guest. After all, you don\'t want to look like you\'re trying to upstage the bride! Choose a different, more subtle color for your dress, or your shirt if you\'re a man.</p>\n[gap]\n\n<h2>2. Wear warm colors</h2>\n<p>Purple, pink and peach color all symbolize new life and happiness in <strong>Chinese culture</strong>. So wearing these <a href=\"https://www.thatsmandarin.com/guest-blogs-media/the-meaning-of-different-colors-in-chinese-culture/\">colors</a> indicates that you want the best for the new union and also helps bring luck and happiness to the new couple. They are also good color choices because they tend to look flattering on many different skin tones and hair colors, and can work during all seasons. Wearing yellow or orange is also considered acceptable.</p>\n[gap]\n\n<h2>3. Avoid wearing too much black or white</h2>\n<p>Both white and black symbolize mourning and death in Chinese culture. Wearing these colors to a <strong>wedding</strong> could bring bad luck to the couple, and is simply considered rude, so avoid them. However, you can get away with wearing touches of black or white on your dress, especially if the couple is modern.</p>\n[gap]\n\n<h2>4. You can include festive accents and accessories</h2>\n<p>Small touches of gold, which is a popular color in Chinese culture, can really spice up your look without breaking the dress code. You can also include small touches inspired by Chinese culture in your outfit, such as a <strong>Mandarin collar</strong> on your dress.</p>\n<p>You can also add accessories from Chinese culture such as a <a href=\"https://www.nl.ecom-expansion.com/collections/chinese-umbrellas/\">Chinese Umbrella</a> or a <strong>traditional fan</strong>. However, if you overload your outfit with Oriental accents, you may come across as overdoing it.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1106\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n[gap]\n\n<h2>5. The length of the dress depends on the wedding</h2>\n<p>Although some aspects of the <strong>Chinese</strong> wedding are very traditional, brides still like to keep control of the party. In general, you should check with the couple, if you can, how formal they want it to be before buying your dress or suit.</p>\n<p>Unless the invitation specifically states that it is a very formal event, it is best to choose an above-the-knee skirt length. If the wedding is very <strong>traditional</strong>, you will need to check with the bridal party for specific guidelines.</p>\n[gap]\n\n<h2>6. Stay elegant</h2>\n<p>While short dresses may be appropriate, they should always remain elegant. <strong>Dresses</strong> that are too flashy or sexy can be considered inappropriate, just as they would be at most weddings around the world, not just in Chinese culture.</p>\n<p>And even if the wedding is not particularly formal, you should make an effort to be <strong>elegant and well-dressed</strong>, whether you are a man or a woman!</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1104\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>7. Wear something that represents you well</h2>\n<p>Especially if you\'re attending a wedding where you don\'t know many people, you should really think about what your outfit says about you. In <strong>traditional Chinese culture</strong>, how you present yourself can impact your family\'s honor.</p>\n<p>Even though many families are more flexible today, you will still need to think about how to best represent yourself.</p>\n<p>This means avoiding flashy colors, overly sexy silhouettes, or details that could be perceived as vulgar. <strong>Chinese tradition</strong> is still considered rather conservative.</p>\n[gap]\n\n<h2>8. Outfits are just as acceptable as dresses</h2>\n<p>Some Chinese weddings are not nearly as formal as Western weddings, and it\'s usually perfectly appropriate to wear a skirt and blouse instead of a <strong>qipao</strong>, especially if you think you\'ll be more comfortable there.</p>\n<p>At some Chinese weddings, you\'ll get a bit of a stink if you dress too formally. Of course, this varies from wedding to wedding. So it\'s best to check with the bride and groom or someone closer to the <strong>party</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_products cat=\"49\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>9. Make sure your dress stretches</h2>\n<div>Chinese weddings are known for their <strong>endless buffets</strong>, and you\'ll want to at least try on every course. If you wear something too tight in the middle, you may regret it at the end of the night! Draped fabrics are a great choice, because not only are they stylish, but they cover problem areas without restricting your movement.</div>\n<div>&nbsp;</div>\n<div>Now you know what to wear to your next Chinese wedding. You can find on our store an array of traditional clothes that will fit you perfectly to be at the top for your <strong>future Chinese wedding</strong>.</div>\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:35:\"How to dress for a Chinese wedding?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:32:\"how-to-dress-for-chinese-wedding\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:06:16\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:06:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1085\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:10:\"post_count\";i:10;s:12:\"current_post\";i:-1;s:11:\"before_loop\";b:1;s:11:\"in_the_loop\";b:0;s:4:\"post\";r:110;s:8:\"comments\";N;s:13:\"comment_count\";i:0;s:15:\"current_comment\";i:-1;s:7:\"comment\";N;s:11:\"found_posts\";i:28;s:13:\"max_num_pages\";d:3;s:21:\"max_num_comment_pages\";i:0;s:9:\"is_single\";b:0;s:10:\"is_preview\";b:0;s:7:\"is_page\";b:0;s:10:\"is_archive\";b:0;s:7:\"is_date\";b:0;s:7:\"is_year\";b:0;s:8:\"is_month\";b:0;s:6:\"is_day\";b:0;s:7:\"is_time\";b:0;s:9:\"is_author\";b:0;s:11:\"is_category\";b:0;s:6:\"is_tag\";b:0;s:6:\"is_tax\";b:0;s:9:\"is_search\";b:0;s:7:\"is_feed\";b:0;s:15:\"is_comment_feed\";b:0;s:12:\"is_trackback\";b:0;s:7:\"is_home\";b:0;s:17:\"is_privacy_policy\";b:0;s:6:\"is_404\";b:0;s:8:\"is_embed\";b:0;s:8:\"is_paged\";b:0;s:8:\"is_admin\";b:1;s:13:\"is_attachment\";b:0;s:11:\"is_singular\";b:0;s:9:\"is_robots\";b:0;s:10:\"is_favicon\";b:0;s:13:\"is_posts_page\";b:0;s:20:\"is_post_type_archive\";b:0;s:25:\"\0WP_Query\0query_vars_hash\";s:32:\"c82e1a097ca23bb8fe6ecedff22080a1\";s:28:\"\0WP_Query\0query_vars_changed\";b:0;s:17:\"thumbnails_cached\";b:0;s:37:\"\0*\0allow_query_attachment_by_filename\";b:0;s:19:\"\0WP_Query\0stopwords\";N;s:23:\"\0WP_Query\0compat_fields\";a:2:{i:0;s:15:\"query_vars_hash\";i:1;s:18:\"query_vars_changed\";}s:24:\"\0WP_Query\0compat_methods\";a:2:{i:0;s:16:\"init_query_flags\";i:1;s:15:\"parse_tax_query\";}}s:11:\"export_type\";s:8:\"specific\";s:21:\"filter_rules_hierarhy\";s:2:\"[]\";s:21:\"product_matching_mode\";s:6:\"strict\";s:17:\"wp_query_selector\";s:8:\"wp_query\";s:18:\"taxonomy_to_export\";s:0:\"\";s:23:\"sub_post_type_to_export\";s:0:\"\";s:18:\"created_at_version\";s:5:\"1.8.3\";s:3:\"ids\";a:42:{i:0;i:1;i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;i:32;i:1;i:33;i:1;i:34;i:1;i:35;i:1;i:36;i:1;i:37;i:1;i:38;i:1;i:39;i:1;i:40;i:1;i:41;i:1;}s:8:\"cc_label\";a:42:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:3:\"url\";i:8;s:5:\"title\";i:9;s:7:\"caption\";i:10;s:11:\"description\";i:11;s:3:\"alt\";i:12;s:8:\"featured\";i:13;s:3:\"url\";i:14;s:8:\"category\";i:15;s:8:\"post_tag\";i:16;s:13:\"_thumbnail_id\";i:17;s:20:\"_yoast_wpseo_focuskw\";i:18;s:18:\"_yoast_wpseo_title\";i:19;s:21:\"_yoast_wpseo_metadesc\";i:20;s:20:\"_yoast_wpseo_linkdex\";i:21;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:22;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:23;s:26:\"_yoast_wpseo_content_score\";i:24;s:7:\"_pingme\";i:25;s:10:\"_encloseme\";i:26;s:29:\"_yoast_wpseo_primary_category\";i:27;s:6:\"status\";i:28;s:6:\"author\";i:29;s:15:\"author_username\";i:30;s:12:\"author_email\";i:31;s:17:\"author_first_name\";i:32;s:16:\"author_last_name\";i:33;s:4:\"slug\";i:34;s:6:\"format\";i:35;s:8:\"template\";i:36;s:6:\"parent\";i:37;s:11:\"parent_slug\";i:38;s:5:\"order\";i:39;s:14:\"comment_status\";i:40;s:11:\"ping_status\";i:41;s:13:\"post_modified\";}s:6:\"cc_php\";a:42:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;i:0;i:6;i:0;i:7;i:0;i:8;i:0;i:9;i:0;i:10;i:0;i:11;i:0;i:12;i:0;i:13;i:0;i:14;i:0;i:15;i:0;i:16;i:0;i:17;i:0;i:18;i:0;i:19;i:0;i:20;i:0;i:21;i:0;i:22;i:0;i:23;i:0;i:24;i:0;i:25;i:0;i:26;i:0;i:27;i:0;i:28;i:0;i:29;i:0;i:30;i:0;i:31;i:0;i:32;i:0;i:33;i:0;i:34;i:0;i:35;i:0;i:36;i:0;i:37;i:0;i:38;i:0;i:39;i:0;i:40;i:0;i:41;i:0;}s:7:\"cc_code\";a:42:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";i:41;s:0:\"\";}s:6:\"cc_sql\";a:42:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";i:41;s:0:\"\";}s:7:\"cc_type\";a:42:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:9:\"image_url\";i:8;s:11:\"image_title\";i:9;s:13:\"image_caption\";i:10;s:17:\"image_description\";i:11;s:9:\"image_alt\";i:12;s:14:\"image_featured\";i:13;s:14:\"attachment_url\";i:14;s:4:\"cats\";i:15;s:4:\"cats\";i:16;s:2:\"cf\";i:17;s:2:\"cf\";i:18;s:2:\"cf\";i:19;s:2:\"cf\";i:20;s:2:\"cf\";i:21;s:2:\"cf\";i:22;s:2:\"cf\";i:23;s:2:\"cf\";i:24;s:2:\"cf\";i:25;s:2:\"cf\";i:26;s:2:\"cf\";i:27;s:6:\"status\";i:28;s:6:\"author\";i:29;s:15:\"author_username\";i:30;s:12:\"author_email\";i:31;s:17:\"author_first_name\";i:32;s:16:\"author_last_name\";i:33;s:4:\"slug\";i:34;s:6:\"format\";i:35;s:8:\"template\";i:36;s:6:\"parent\";i:37;s:11:\"parent_slug\";i:38;s:5:\"order\";i:39;s:14:\"comment_status\";i:40;s:11:\"ping_status\";i:41;s:13:\"post_modified\";}s:10:\"cc_options\";a:42:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:8;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:9;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:10;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:11;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:12;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:13;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";i:41;s:0:\"\";}s:8:\"cc_value\";a:42:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:3:\"url\";i:8;s:5:\"title\";i:9;s:7:\"caption\";i:10;s:11:\"description\";i:11;s:3:\"alt\";i:12;s:8:\"featured\";i:13;s:3:\"url\";i:14;s:8:\"category\";i:15;s:8:\"post_tag\";i:16;s:13:\"_thumbnail_id\";i:17;s:20:\"_yoast_wpseo_focuskw\";i:18;s:18:\"_yoast_wpseo_title\";i:19;s:21:\"_yoast_wpseo_metadesc\";i:20;s:20:\"_yoast_wpseo_linkdex\";i:21;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:22;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:23;s:26:\"_yoast_wpseo_content_score\";i:24;s:7:\"_pingme\";i:25;s:10:\"_encloseme\";i:26;s:29:\"_yoast_wpseo_primary_category\";i:27;s:6:\"status\";i:28;s:6:\"author\";i:29;s:15:\"author_username\";i:30;s:12:\"author_email\";i:31;s:17:\"author_first_name\";i:32;s:16:\"author_last_name\";i:33;s:4:\"slug\";i:34;s:6:\"format\";i:35;s:8:\"template\";i:36;s:6:\"parent\";i:37;s:11:\"parent_slug\";i:38;s:5:\"order\";i:39;s:14:\"comment_status\";i:40;s:11:\"ping_status\";i:41;s:13:\"post_modified\";}s:7:\"cc_name\";a:42:{i:0;s:2:\"ID\";i:1;s:5:\"Title\";i:2;s:7:\"Content\";i:3;s:7:\"Excerpt\";i:4;s:4:\"Date\";i:5;s:9:\"Post Type\";i:6;s:9:\"Permalink\";i:7;s:9:\"Image URL\";i:8;s:11:\"Image Title\";i:9;s:13:\"Image Caption\";i:10;s:17:\"Image Description\";i:11;s:14:\"Image Alt Text\";i:12;s:14:\"Image Featured\";i:13;s:14:\"Attachment URL\";i:14;s:11:\"Catégories\";i:15;s:11:\"Étiquettes\";i:16;s:13:\"_thumbnail_id\";i:17;s:20:\"_yoast_wpseo_focuskw\";i:18;s:18:\"_yoast_wpseo_title\";i:19;s:21:\"_yoast_wpseo_metadesc\";i:20;s:20:\"_yoast_wpseo_linkdex\";i:21;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:22;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:23;s:26:\"_yoast_wpseo_content_score\";i:24;s:7:\"_pingme\";i:25;s:10:\"_encloseme\";i:26;s:29:\"_yoast_wpseo_primary_category\";i:27;s:6:\"Status\";i:28;s:9:\"Author ID\";i:29;s:15:\"Author Username\";i:30;s:12:\"Author Email\";i:31;s:17:\"Author First Name\";i:32;s:16:\"Author Last Name\";i:33;s:4:\"Slug\";i:34;s:6:\"Format\";i:35;s:8:\"Template\";i:36;s:6:\"Parent\";i:37;s:11:\"Parent Slug\";i:38;s:5:\"Order\";i:39;s:14:\"Comment Status\";i:40;s:11:\"Ping Status\";i:41;s:18:\"Post Modified Date\";}s:11:\"cc_settings\";a:42:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";i:41;s:0:\"\";}s:15:\"update_previous\";i:1;s:13:\"friendly_name\";s:36:\"Articles Export - 2023 July 22 22:20\";s:18:\"order_item_per_row\";i:1;s:29:\"order_item_fill_empty_columns\";i:1;s:8:\"filepath\";s:91:\"/wpallexport/exports/8385cf9133400c86982d68d1b3f8380b/Articles-Export-2023-July-22-2220.csv\";s:16:\"current_filepath\";s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wpallexport/exports/8385cf9133400c86982d68d1b3f8380b/current-Articles-Export-2023-July-22-2220.csv\";s:10:\"bundlepath\";s:91:\"/wpallexport/exports/8385cf9133400c86982d68d1b3f8380b/Articles-Export-2023-July-22-2220.zip\";s:8:\"wp_query\";s:0:\"\";s:9:\"export_to\";s:3:\"csv\";s:15:\"export_to_sheet\";s:3:\"csv\";s:9:\"delimiter\";s:1:\",\";s:8:\"encoding\";s:5:\"UTF-8\";s:21:\"is_generate_templates\";i:1;s:18:\"is_generate_import\";i:1;s:9:\"import_id\";s:1:\"1\";s:13:\"template_name\";s:36:\"Articles Export - 2023 July 22 22:20\";s:12:\"is_scheduled\";i:0;s:16:\"scheduled_period\";s:0:\"\";s:15:\"scheduled_email\";s:0:\"\";s:26:\"cc_combine_multiple_fields\";a:0:{}s:32:\"cc_combine_multiple_fields_value\";a:0:{}s:6:\"fields\";a:4:{i:0;s:7:\"default\";i:1;s:5:\"other\";i:2;s:2:\"cf\";i:3;s:4:\"cats\";}s:5:\"rules\";a:0:{}s:21:\"records_per_iteration\";s:2:\"50\";s:11:\"include_bom\";s:1:\"0\";s:17:\"include_functions\";i:1;s:19:\"split_large_exports\";s:1:\"0\";s:25:\"split_large_exports_count\";s:5:\"10000\";s:16:\"split_files_list\";a:0:{}s:12:\"main_xml_tag\";s:4:\"data\";s:14:\"record_xml_tag\";s:4:\"post\";s:16:\"save_template_as\";i:0;s:4:\"name\";s:0:\"\";s:21:\"export_only_new_stuff\";s:1:\"0\";s:26:\"export_only_modified_stuff\";s:1:\"0\";s:24:\"creata_a_new_export_file\";s:1:\"0\";s:15:\"attachment_list\";a:1:{i:0;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wpallexport/exports/8385cf9133400c86982d68d1b3f8380b/Articles-Export-2023-July-22-2220.xml\";}s:21:\"order_include_poducts\";i:0;s:25:\"order_include_all_poducts\";i:0;s:21:\"order_include_coupons\";i:0;s:25:\"order_include_all_coupons\";i:0;s:23:\"order_include_customers\";i:0;s:27:\"order_include_all_customers\";i:0;s:9:\"migration\";s:0:\"\";s:17:\"xml_template_type\";s:6:\"simple\";s:19:\"custom_xml_template\";s:0:\"\";s:26:\"custom_xml_template_header\";s:0:\"\";s:24:\"custom_xml_template_loop\";s:0:\"\";s:26:\"custom_xml_template_footer\";s:0:\"\";s:27:\"custom_xml_template_options\";a:0:{}s:22:\"custom_xml_cdata_logic\";s:4:\"auto\";s:21:\"show_cdata_in_preview\";i:0;s:17:\"export_variations\";s:1:\"3\";s:23:\"export_variations_title\";i:1;s:41:\"export_only_customers_that_made_purchases\";i:0;s:18:\"include_header_row\";i:1;s:9:\"wpml_lang\";s:3:\"all\";s:24:\"enable_export_scheduling\";s:5:\"false\";s:17:\"scheduling_enable\";s:1:\"0\";s:22:\"scheduling_weekly_days\";s:0:\"\";s:17:\"scheduling_run_on\";s:6:\"weekly\";s:22:\"scheduling_monthly_day\";s:0:\"\";s:16:\"scheduling_times\";a:1:{i:0;s:0:\"\";}s:19:\"scheduling_timezone\";s:17:\"America/Matamoros\";s:17:\"allow_client_mode\";s:1:\"0\";s:24:\"enable_real_time_exports\";s:1:\"0\";s:32:\"enable_real_time_exports_running\";i:0;s:35:\"do_not_generate_file_on_new_records\";s:1:\"0\";s:14:\"security_token\";s:0:\"\";s:4:\"file\";s:0:\"\";s:8:\"tpl_data\";a:5:{s:4:\"name\";s:36:\"Articles Export - 2023 July 22 22:20\";s:18:\"is_keep_linebreaks\";i:1;s:13:\"is_leave_html\";i:0;s:14:\"fix_characters\";i:0;s:7:\"options\";a:92:{s:4:\"type\";s:4:\"post\";s:11:\"wizard_type\";s:3:\"new\";s:8:\"deligate\";s:11:\"wpallexport\";s:11:\"custom_type\";s:4:\"post\";s:6:\"status\";s:5:\"xpath\";s:23:\"is_multiple_page_parent\";s:2:\"no\";s:10:\"unique_key\";s:7:\"{id[1]}\";s:3:\"acf\";a:0:{}s:6:\"fields\";a:0:{}s:23:\"is_multiple_field_value\";a:0:{}s:14:\"multiple_value\";a:0:{}s:16:\"fields_delimiter\";a:0:{}s:15:\"update_all_data\";s:3:\"yes\";s:16:\"is_update_status\";i:1;s:15:\"is_update_title\";i:1;s:16:\"is_update_author\";i:1;s:14:\"is_update_slug\";i:1;s:17:\"is_update_content\";i:1;s:17:\"is_update_excerpt\";i:1;s:15:\"is_update_dates\";i:1;s:20:\"is_update_menu_order\";i:1;s:16:\"is_update_parent\";i:1;s:21:\"is_update_attachments\";i:1;s:13:\"is_update_acf\";i:1;s:24:\"is_update_comment_status\";i:1;s:25:\"is_update_comment_post_id\";i:0;s:24:\"is_update_comment_author\";i:0;s:30:\"is_update_comment_author_email\";i:0;s:28:\"is_update_comment_author_url\";i:0;s:27:\"is_update_comment_author_IP\";i:0;s:23:\"is_update_comment_karma\";i:0;s:26:\"is_update_comment_approved\";i:0;s:26:\"is_update_comment_verified\";i:0;s:24:\"is_update_comment_rating\";i:0;s:23:\"is_update_comment_agent\";i:0;s:25:\"is_update_comment_user_id\";i:0;s:22:\"is_update_comment_type\";i:0;s:15:\"import_img_tags\";i:1;s:16:\"update_acf_logic\";s:11:\"full_update\";s:8:\"acf_list\";s:0:\"\";s:22:\"is_update_product_type\";i:1;s:20:\"is_update_attributes\";i:1;s:23:\"update_attributes_logic\";s:11:\"full_update\";s:15:\"attributes_list\";s:0:\"\";s:16:\"is_update_images\";i:1;s:23:\"is_update_custom_fields\";i:1;s:26:\"update_custom_fields_logic\";s:11:\"full_update\";s:18:\"custom_fields_list\";s:0:\"\";s:20:\"is_update_categories\";i:1;s:23:\"update_categories_logic\";s:11:\"full_update\";s:15:\"taxonomies_list\";s:0:\"\";s:9:\"export_id\";s:1:\"1\";s:14:\"tmp_unique_key\";s:7:\"{id[1]}\";s:17:\"single_product_id\";s:7:\"{id[1]}\";s:5:\"title\";s:10:\"{title[1]}\";s:36:\"single_product_id_first_is_variation\";s:10:\"{title[1]}\";s:7:\"content\";s:12:\"{content[1]}\";s:12:\"post_excerpt\";s:12:\"{excerpt[1]}\";s:4:\"date\";s:9:\"{date[1]}\";s:19:\"update_images_logic\";s:7:\"add_new\";s:23:\"download_featured_delim\";s:1:\"|\";s:23:\"download_featured_image\";s:13:\"{imageurl[1]}\";s:11:\"is_featured\";i:1;s:17:\"is_featured_xpath\";s:18:\"{imagefeatured[1]}\";s:10:\"atch_delim\";s:1:\"|\";s:11:\"attachments\";s:18:\"{attachmenturl[1]}\";s:10:\"tax_assing\";a:2:{s:8:\"category\";i:1;s:8:\"post_tag\";i:1;}s:9:\"tax_logic\";a:2:{s:8:\"category\";s:12:\"hierarchical\";s:8:\"post_tag\";s:8:\"multiple\";}s:29:\"tax_hierarchical_logic_entire\";a:1:{s:8:\"category\";i:1;}s:20:\"multiple_term_assing\";a:2:{s:8:\"category\";i:1;s:8:\"post_tag\";i:1;}s:22:\"tax_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:31:\"is_tax_hierarchical_group_delim\";a:1:{s:8:\"category\";i:1;}s:28:\"tax_hierarchical_group_delim\";a:1:{s:8:\"category\";s:1:\"|\";}s:22:\"tax_hierarchical_xpath\";a:1:{s:8:\"category\";a:1:{i:0;s:14:\"{catgories[1]}\";}}s:18:\"tax_multiple_xpath\";a:1:{s:8:\"post_tag\";s:14:\"{tiquettes[1]}\";}s:18:\"tax_multiple_delim\";a:1:{s:8:\"post_tag\";s:1:\"|\";}s:11:\"custom_name\";a:10:{i:0;s:20:\"_yoast_wpseo_focuskw\";i:1;s:18:\"_yoast_wpseo_title\";i:2;s:21:\"_yoast_wpseo_metadesc\";i:3;s:20:\"_yoast_wpseo_linkdex\";i:4;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:5;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:6;s:26:\"_yoast_wpseo_content_score\";i:7;s:7:\"_pingme\";i:8;s:10:\"_encloseme\";i:9;s:29:\"_yoast_wpseo_primary_category\";}s:12:\"custom_value\";a:10:{i:0;s:25:\"{_yoast_wpseo_focuskw[1]}\";i:1;s:23:\"{_yoast_wpseo_title[1]}\";i:2;s:26:\"{_yoast_wpseo_metadesc[1]}\";i:3;s:25:\"{_yoast_wpseo_linkdex[1]}\";i:4;s:45:\"{_yoast_wpseo_estimatedreadingtimeminutes[1]}\";i:5;s:37:\"{_yoast_wpseo_wordproof_timestamp[1]}\";i:6;s:31:\"{_yoast_wpseo_content_score[1]}\";i:7;s:12:\"{_pingme[1]}\";i:8;s:15:\"{_encloseme[1]}\";i:9;s:34:\"{_yoast_wpseo_primary_category[1]}\";}s:13:\"custom_format\";a:10:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;i:0;i:6;i:0;i:7;i:0;i:8;i:0;i:9;i:0;}s:12:\"status_xpath\";s:11:\"{status[1]}\";s:6:\"author\";s:13:\"{authorid[1]}\";s:9:\"post_slug\";s:9:\"{slug[1]}\";s:24:\"single_product_parent_id\";s:11:\"{parent[1]}\";s:36:\"single_product_id_first_is_parent_id\";s:11:\"{parent[1]}\";s:18:\"single_page_parent\";s:15:\"{parentslug[1]}\";s:5:\"order\";s:10:\"{order[1]}\";s:25:\"single_product_menu_order\";s:10:\"{order[1]}\";s:25:\"is_product_enable_reviews\";s:5:\"xpath\";s:29:\"single_product_enable_reviews\";s:46:\"[str_replace(\"open\",\"yes\",{commentstatus[1]})]\";s:16:\"required_add_ons\";a:0:{}s:9:\"delimiter\";s:1:\",\";s:12:\"root_element\";s:4:\"node\";}}}','','2023-07-22 22:20:57','Articles Export - 2023 July 22 22:20',28,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','2023-07-22 22:20:56',0,0,0,1,'',0,'2023-07-23 02:20:09','2023-07-22 22:20:09',''),(2,0,0,'a:97:{s:14:\"is_user_export\";b:0;s:22:\"is_woo_customer_export\";b:0;s:17:\"is_comment_export\";b:0;s:18:\"is_taxonomy_export\";b:0;s:20:\"is_woo_review_export\";b:0;s:3:\"cpt\";a:1:{i:0;s:4:\"post\";}s:11:\"whereclause\";s:0:\"\";s:10:\"joinclause\";a:0:{}s:11:\"exportquery\";O:8:\"WP_Query\":57:{s:5:\"query\";a:5:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;}s:10:\"query_vars\";a:67:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:5:\"embed\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:14:\"search_columns\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:16:\"suppress_filters\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_menu_item_cache\";b:0;s:19:\"lazy_load_term_meta\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:0;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:0:{}s:8:\"relation\";s:3:\"AND\";s:16:\"\0*\0table_aliases\";a:0:{}s:13:\"queried_terms\";a:0:{}s:13:\"primary_table\";s:9:\"qdx_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:14:\"queried_object\";N;s:17:\"queried_object_id\";N;s:7:\"request\";s:243:\"\n			SELECT SQL_CALC_FOUND_ROWS  qdx_posts.*\n			FROM qdx_posts \n			WHERE 1=1  AND qdx_posts.post_type = \'post\' AND ((qdx_posts.post_status <> \'trash\' AND qdx_posts.post_status <> \'auto-draft\'))\n			\n			ORDER BY qdx_posts.ID ASC\n			LIMIT 0, 10\n		\";s:5:\"posts\";a:10:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:152;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-11-30 15:32:18\";s:13:\"post_date_gmt\";s:19:\"2022-11-30 21:32:18\";s:12:\"post_content\";s:7559:\"<!-- wp:flatsome/uxbuilder -->\n[ux_text text_align=\"left\"]\n\n<div>Chinese lanterns perfectly embody the culture of China, discover through this article their history and their meaning, but also the different types of lanterns and their uses.</div>\n[/ux_text]\n[gap]\n\n<h2>History of Chinese Lanterns</h2>\n<p>Chinese lanterns first appeared during the Han Dynasty, and more precisely during the Eastern Hans Dynasty (25-220). Historians believe that they were mainly used as lamps, long before the invention of electricity or the use of gas. To make them, several <strong>craft techniques</strong> were used, such as painting, paper cutting or sewing. The materials used varied and included bamboo, wood, wheat straw, or metal. However, the most common materials used were paper and silk.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"568\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<div>Then, the monks began to light lanterns <strong>to worship Buddha</strong>, especially on the twelfth day of the first month of the lunar calendar. During the Eastern Hans Dynasty, Emperor Liu Zhuang, who was a Buddhist, ordered the Chinese to use lanterns to imitate the monks, and thus popularized the Chinese lanterns.</div>\n<div>&nbsp;</div>\n<div>Later, during the Tang Dynasty (618-907), the Chinese made and lit lanterns to show their <strong>gratitude</strong> for the happy life they led. These illuminations symbolized the strength, power and prosperity of China.</div>\n<div>&nbsp;</div>\n<div>Finally, historians have also concluded that Chinese lanterns were used during <strong>wars</strong>, as a means of communication to transmit secret messages or to signal an intruder.</div>\n[gap]\n\n<h2>Ancient Types of Chinese Lanterns</h2>\n<p>In ancient times, the types of lanterns were quite varied. One of them was the royal lanterns, which, as the name suggests, were generally used for lighting purposes in castles and palaces. They are known to evoke a very <strong>delicate Chinese craftsmanship</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"572\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<p>Lanterns were also used to cast shadows, usually for entertainment purposes. These <strong>lanterns</strong> had the same shape as the royal lanterns, except that they were covered with not one, but two layers of paper or silk.</p>\n<p>Then, additional paper cuts were glued into the inner layer to <strong>create shadows</strong> when lit. The heat caused the paper to rotate, causing the shadows to spin and move across the walls.</p>\n[gap]\n\n<h2>Modern Chinese Lanterns</h2>\n<p>Nowadays, more and more types of lanterns are available. There is still a wide variety of lanterns in a traditional style: paper lanterns, candle lanterns, gauze lanterns, tissue paper lanterns, rice paper lanterns... But technology is sometimes also used, and the traditional candles are sometimes replaced by LED bulbs.</p>\n<p>So we find electric lanterns, sometimes with a multicolored light, and even musical lanterns. The shape of Chinese lanterns has evolved and diversified. Thus, we find in the shape of animals, cartoon characters, signs of the Chinese zodiac or flowers such as the sacred lotus.</p>\n<p>In addition, lanterns are evolving with the times, and we find more and more lanterns that are entirely biodegradable, with a vegetable wax burner, or other celestial lanterns designed to go down gently when the burner is extinguished.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"574\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<h2>Use of Chinese Lanterns</h2>\n<div>Generally speaking, Chinese people use lanterns in three ways: the most common is to hang the lantern. In remote areas, one can even find <strong>hanging lanterns</strong> adorning street lamps. These hanging lanterns, often decorated with tassels, are not always bright and are often hung in front of stalls as good luck charms, or decoratively in front of houses.</div>\n<div>&nbsp;</div>\n<div>Flying lanterns, also called sky lanterns, are particularly popular during the Spring Festival, celebrated during the first full moon of the Chinese calendar. They are then released into the sky by thousands, propelled by hot air, like balloons.&nbsp; This <strong>Asian lantern</strong> is not only the apparat of China, and there is also a wide variety of Thai flying lanterns.</div>\n<div>&nbsp;</div>\n<div>Finally, the <a href=\"https://www.nightlightsevent.com/\">floating lanterns</a>, equipped with waterproof burners, are especially used during the Dragon Boat Festival, where they are placed on rivers and lakes during the celebrations. Each one creates a light reflection on the water, for a totally fairy-like atmosphere.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"576\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<div>Very festive, the Chinese lantern is generally used during celebrations and holidays. Chinese families like to light them during the Chinese New Year or any other celebration where everyone goes for a lantern release (Discover the festivals and celebrations in China).</div>\n<div>&nbsp;</div>\n<div>The <strong>Chinese New Year</strong> ends on the fifteenth day of the first lunar month with the Spring Festival, also called the Lantern Festival. On this day, thousands of paper lanterns are released all over the country for a very romantic and poetic air show. Families light up hundreds of lanterns, often with calligraphy riddles for the children to solve.</div>\n<div>&nbsp;</div>\n<div>If they succeed, they are rewarded with small gifts or sweets. It is also customary for uncles to buy lanterns for their nephews, if they are under twelve, before the <strong>festival</strong>. This shows that they wish their nephew the best, especially that they are in excellent health for the coming year.</div>\n<div>&nbsp;</div>\n<div>In China, apart from national celebrations, lanterns are also common at weddings, birth ceremonies, or any other event to which one wishes to bring <strong>good fortune</strong>. It is then customary to hang lanterns in front of one\'s house or in the wedding hall, as decorations and good luck charms.</div>\n<div>&nbsp;</div>\n<div>In the West, the Asian lanterns have conquered by their festive and decorative side. The <strong>celestial lantern</strong>, in particular, is very popular for a wedding or a birthday party and will impress the guests. Lanterns garlands or lights, then in the shape of balls more round than traditional lanterns, are also very common in Western homes.</div>\n[gap]\n\n<h2>Meaning of Chinese Lanterns</h2>\n<p>Generally speaking, Chinese lanterns symbolize <strong>vitality</strong>, <strong>social status</strong>, and especially <strong>good fortune</strong>. They are found in a multitude of colors. Red lanterns are the most popular, because in China, the color red is a sign of good luck and happiness. In Chinese culture, red is also a symbol of vitality and energy.</p>\n<p>On the other hand, using a blue lantern means that a family member is sick, because in <strong>Chinese culture</strong>, blue is a symbol of illness and low energy. White lanterns, on the other hand, represent death and mourning.</p>\n<p>A white lantern at the entrance of a house will show that a death has occurred in the family, and announce a mourning. Finally, purple will tend to bring bad luck, and is a rather rare lantern color. The material is not important, whether you use a <strong>paper or silk lantern</strong> depends on your taste.</p>\n[ux_products cat=\"42\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:39:\"History and Meaning of Chinese Lanterns\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:32:\"history-meaning-chinese-lanterns\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:31:05\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:31:05\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=152\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:598;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-17 23:52:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 05:52:28\";s:12:\"post_content\";s:11802:\"<!-- wp:flatsome/uxbuilder -->\n<p>The Chinese character \"箸\" is translated as \"chopsticks\", which are unique eating utensils invented by the ancient Chinese civilizations during the Neolithic Age, 7,000 to 6,000 BC. The ancient chopsticks were mainly made of animal bones. Today, among the various tableware available, chopsticks perfectly embody Chinese cultural characteristics, becoming an important symbol of Chinese tradition.</p>\n[gap]\n\n<h2>Meaning of Chinese Chopsticks</h2>\n<div>Chopsticks originated in China. Although simple, they are a great invention in human history. \"Chopsticks, although they are only two pieces of wood, represent the theory of leverage in physics,\" said Dr. Li Zhengdao, a famous Chinese physicist.</div>\n<div>&nbsp;</div>\n<div>According to modern science, long-time use of chopsticks makes the fingers flexible, which is beneficial to physical and mental health. Chopsticks are available in all kinds. So, among the various kitchen utensils available today, chopsticks with a lucky charm are very popular with the Chinese.</div>\n<div>&nbsp;</div>\n<div>Chopsticks symbolize the centuries-old Chinese civilization and embody the 5,000-year history of China. Whether Chinese people live in China or abroad, they cherish their connection with chopsticks.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<div>\"One chopstick can be easily broken, ten pairs of chopsticks stand firmly together.\" People are familiar with this beautiful and enlightened song by Fu Disheng, a well-known singer in China.</div>\n<div>&nbsp;</div>\n<div>Indeed, a chopstick is so delicate that it can be easily broken. However, ten pairs of chopsticks possess a strength that is indestructible under any circumstances. This symbol of chopsticks reflects a spirit of unity, perseverance and power, which are strong values in China. This spirit that lives in the chopsticks will always influence, inspire and encourage people.</div>\n<div>&nbsp;</div>\n<div>In a word, chopsticks are part of the Chinese gastronomic culture, rich of many centuries.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h2>The history of Chinese chopsticks</h2>\n<p>One of the main features of China\'s culinary custom is the use of chopsticks. Chopsticks, also called \"zhu\" (箸) in ancient times, have a long history in China. In fact, the Book of Rites advocated, \"You cannot have a meal without chopsticks\". These objects, rich in several centuries of history appeared during the Sang Dynasty.</p>\n[gap]\n\n<h3>The Origin of Chinese Chopsticks</h3>\n<p>Lan Xiang, the curator of the Folk Chopsticks Pavilion, said that historical records date the ivory chopsticks to 3,100 years ago. As it is written in the records, \"Zhou\" (the emperor at the end of the Sang Dynasty) used the ivory chopsticks while Ji Zi, Zhou\'s uncle, worried \"because it was too luxurious\".</p>\n<p>After the emperor killed the elephant to impose his power, he sawed the ivory to make chopsticks that are known as the first chopsticks in history. However, historically they were not the first chopsticks but the first ones made of ivory in China. That is why Chinese ivory chopsticks have a strong symbolism.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<div>The existence of Chinese chopsticks dates back to almost 1,000 years before the existence of ivory chopsticks. The first chopsticks were made of bamboo because China was then covered with primeval forests.</div>\n<div>&nbsp;</div>\n<div>Branches were broken to cook food in a pot. It was impossible to grasp the food by hand because the food was very hot. So the Chinese found a way to use the bamboo branches to pick up the food. We suppose that the ancient chopsticks had a different size from each other.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Since the Sang Dynasty, the chopsticks are the same length and size.</div>\n<div>&nbsp;</div>\n<div>In ancient times, chopsticks were made from local materials such as branches, sticks, animal bones and horns. Chopsticks were mainly made of wood and bamboo in primitive society.</div>\n<div>&nbsp;</div>\n<div>Ivory and jade chopsticks appeared in Xiang and Sang dynasties, while copper and iron chopsticks appeared in spring and autumn and warring states (from 770 to 221 BC), flaming lacquer chopsticks, delicate silver and gold chopsticks in Han-Wei and six dynasties (the kingdom of Wu, Jing, Song, Qi, Liang, Chen). Today, there are chopsticks made of various materials, including ivory, rhinoceros horn, golden ebony and assorted jades.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h3>Legends about Chinese chopsticks</h3>\n<p>People who use chopsticks, including the Chinese, admire the invention, but nobody knows who invented it. There is no precise data as to the creator of this invention that has made significant contributions to human civilization.</p>\n<p>Some believe that the increase in illiteracy, among other reasons, explains this lack of information. There are, however, myths surrounding the birth of chopsticks. Here is a summary of two legends, centered on the origin of chopsticks:</p>\n[gap]\n\n<h4>The legend of Jiang Ziya</h4>\n<div>The legend has spread to areas such as Sichuan province. It was said that Jiang Ziya was capable of nothing but fishing. He was so poor that his wife could not bear to live with him and planned to kill him to marry another man.</div>\n<div>&nbsp;</div>\n<div>One day, Jiang returned home empty-handed after fishing. His wife said, \"You must be hungry. I made some meat for you. Come and eat!\" He was hungry, so he reached out his hands to take the meat. Suddenly, a bird on window pecked his hand. The pain made him scream. In his pain, Jiang tried to chase the bird away from the window but the bird pecked him a second time.</div>\n<div>&nbsp;</div>\n<div>Jiang was so confused, he didn\'t understand why the bird kept pecking him. To understand, he tried to pick up the meat but the same thing happened. He understood that it was because the bird was a divine bird and he chased it to a hill so that no one could see it.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Standing on a bamboo branch, the divine bird sang, \"Jiang Ziya, don\'t eat the meat with your bare hands, use what is under my feet.\" Hearing this, Jiang took two small sticks from the bamboo and went home. Then he took the meat with the two sticks. After doing this, smoke came out of the bamboo. Jiang understood that the sticks were reacting to the poison that his wife had poured into his food.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Jiang Ziya knew that the magic bamboo given by the divine bird could detect the poison. So he ate all his meals with them. After the incident, his wife did not dare to poison his food and his neighbors learned to eat with a bamboo branch. Later, more and more people followed this habit, so the custom of eating with chopsticks was passed on from generation to generation.</p>\n[gap]\n\n<h4>The legend of Da Yu</h4>\n<p>This legend has spread throughout northeast China. It is said that Yao and Shun, mythical rulers of ancient China, ordered Da Yu to control a flood. After receiving the order, Yu vowed to eliminate the flood disaster. He did his best to fight the flood day and night, to the point of not eating and sleeping, let alone resting.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Yu went to an island by boat where he was so hungry that he used an earthen pot to cook the meat. Once the meat was well cooked in the boiling water, he couldn\'t take it by hand and didn\'t want to waste time waiting for it to cool, so he took two branches to pick up the meat from the soup.</p>\n<p>He kept this habit to the point of becoming skilled at picking up food with small sticks, which was imitated by his subordinates who understood that this way of eating could allow them to avoid touching the hot and greasy food with their hands. Thus, the first types of chopsticks were born.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Although these legends are not historically accurate, they show the way people thought in the past.</p>\n[gap]\n\n<h2>How to use chopsticks?</h2>\n<p>The correct use of chopsticks can be described as follows: the right hand holds the chopsticks with the thumb and forefinger pinching the upper end of the chopsticks and the other three fingers naturally hold the chopsticks, so the two ends of the chopsticks should remain aligned. Before the meal, the chopsticks are carefully placed on the right side of the bowl and after the meal, in the middle of the bowl, in a vertical direction.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h2>Taboos on Chopsticks</h2>\n<p>Chinese chopsticks have their share of good, but also bad manners that you should not do at the risk of bringing you bad luck:</p>\n<ul>\n<li><strong>Unexpected bad luck</strong>: Arranging chopsticks of unequal lengths on the table is considered an omen of bad luck.</li>\n<li><strong>Immortal guidance</strong>: If the chopsticks are pinched by the thumb, middle finger, ring finger and little finger while the index finger reaches out, this is considered bad luck.</li>\n<li><strong>Sucking on chopsticks with a sound</strong>: Having a piece of chopstick in your mouth and repeatedly sucking on it with a sound is rude behavior.</li>\n<li><strong>Hitting the cup</strong>: Hitting plates and bowls is considered disrespectful and is looked down upon by others.</li>\n<li><strong>Shaking to make choices</strong>: Taking chopsticks to \"dig\" into plates is a bad way to \"dig the grave\".</li>\n<li><strong>Sinking food</strong>: Dropping soup on other dishes or on the table when picking up food with chopsticks is considered disrespectful.</li>\n<li><strong>Upside down heaven and earth</strong>: Using chopsticks upside down means you are a beggar.</li>\n<li><strong>Key ring</strong>: Using a chopstick to stick food on plates is seen as humiliating to others at the table.</li>\n<li><strong>Burning incense in public</strong>: Chopsticks should not be left upright in a bowl of rice, as this is similar to the incense ritual that symbolizes \"feeding\" the dead.</li>\n<li><strong>Cross</strong>: During the meal, chopsticks should not be crossed on a table as this is perceived negatively.</li>\n<li><strong>Falling chopsticks disturbs the immortal</strong>: During a meal, it is discourteous for chopsticks to accidentally fall on the floor, as falling chopsticks represent a disturbance of the buried ancestors.</li>\n</ul>\n[gap]\n\n<h2>The materials of Chinese chopsticks</h2>\n<div>Chopsticks seem simple and flexible, but they vary in type and composition. There are more than 100 types in Chinese history, the most common being wood, bamboo and melamine.</div>\n<div>&nbsp;</div>\n<div>Lan Xiang has divided Chinese chopsticks into five types based on his collection and research. They are: bamboo chopsticks, metal chopsticks, ivory and bone chopsticks, jade chopsticks and chemical chopsticks.</div>\n<div>&nbsp;</div>\n<div>The earliest and most primitive chopsticks, the wooden and bamboo chopsticks, remain popular today (Discover our Chinese Bamboo Chopsticks and our Wooden Chopsticks).</div>\n<div>&nbsp;</div>\n<div>Bamboo chopsticks are made from different types of bamboo including nandina bamboo, spotted bamboo and phyllostachys pubescens, among others. Bamboo is considered a symbol of traditional Chinese values. It is an example of the harmony between nature and human beings. There are many accessories made of bamboo, especially at Bambou Calme with its collection of bags.</div>\n[gap]\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<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:41:\"Chinese Chopsticks: Origins &amp; History\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:34:\"chinese-chopsticks-origins-history\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:30:30\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:30:30\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=598\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:666;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 13:59:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 19:59:28\";s:12:\"post_content\";s:14843:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>China</strong>, as well as many other Eastern cultures, is deeply rooted in Eastern philosophy, with symbolism playing a very large role in today\'s Chinese culture especially in the form of Feng Shui.</div>\n<div>&nbsp;</div>\n<div>An important feature of Feng Shui is the use of <strong>Chinese good luck charms</strong> and decorations to enhance the harmony of your home with its surroundings, improving positive energy while protecting it from bad luck.</div>\n<div>&nbsp;</div>\n<div><strong>As we will see through the 15 most popular good luck charms in Chinese culture, Chinese good luck symbols take many forms. These good luck symbols can also be used with specific elements to enhance various Feng Shui applications.</strong></div>\n<div>&nbsp;</div>\n<h2>1) Dzi Beads</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"725\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Dzi beads are actually not from China but from <strong>Tibet</strong>. The Tibetan word Dzi translates to \"brilliance\" or \"shine\" and in China, Dzi beads are also known as 天珠, literally translated as \"pearl of heaven\".</div>\n<div>&nbsp;</div>\n<div>Usually made of agate carved in unique patterns, Dzi beads are also popular in Chinese Feng Shui practices as good luck charms. Dzi stones are believed to be effective not only in repelling negative energy but also in storing positive energy for the owner\'s good fortune.</div>\n<div>&nbsp;</div>\n<div><strong>Dzi stones</strong> can come in different shapes and patterns: circles, stripes, wave patterns, etc. They are commonly worn as bracelets, or necklaces.</div>\n<div>&nbsp;</div>\n<h2>2) Chinese Lucky Coins</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"723\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>You can easily distinguish the ancient <strong>Chinese coins</strong> with their square hole in the middle. The round shape of the coin symbolizes the sky, while the square hole represents the earth.</div>\n<div>&nbsp;</div>\n<div>The faces of the coins are usually inscribed with four characters around the four sides of the square hole. This is the yang side of the coin. On the other side, the yin side, there are up to two characters.</div>\n<div>&nbsp;</div>\n<div>There are different ways to use these coins as a good luck charm, usually by tying three coins with a string or ribbon in red, which is a <strong>lucky color</strong> in China. It is believed that coin necklaces attract financial luck.</div>\n<div>&nbsp;</div>\n<h2>3) Laughing Buddha</h2>\n[gap height=\"50px\"]\n\n[ux_products cat=\"45\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<div>One of the most common good luck charms in Chinese Feng Shui is the Laughing <strong>Buddha</strong> or Buddha of Happiness. This lucky charm symbolizes good fortune, prosperity, fertility, health and wealth.</div>\n<div>&nbsp;</div>\n<div>The Laughing Buddha is based on the story of a Buddhist monk who lived in 10th century China. This monk was rather eccentric and did not fit the typical characteristics of serenity and peace of a <strong>Buddhist monk</strong>, but he was always happy with a loving heart, so he was loved by many. This monk was then considered the reincarnation of <a href=\"https://tricycle.org/magazine/who-was-the-buddha/\">Gautama Buddha</a>, and is now believed to symbolize joy, laughter and happiness.</div>\n<div>&nbsp;</div>\n<div>As a good luck charm, the <strong>Laughing Buddha</strong> can be placed anywhere in the house except in the bathroom or toilet. However, it is usually placed in the living room or any other place in your home or business where there is money.</div>\n<div>&nbsp;</div>\n<h2>4) Chinese Luck Cat</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"720\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>lucky cat</strong> is based on the Japanese <strong>Maneki-Neko</strong>. It is a very common lucky charm in Feng Shui. The different colors of the cat can symbolize different things, and the fact that the cat raises its paw to the left or right also changes the symbolism.</div>\n<div>&nbsp;</div>\n<div>If the <strong>cat raises its left paw</strong>, it usually symbolizes a male cat that attracts wealth, fortune and professional success in business. So you can place it in your office or in the area where you usually work to enhance your success.</div>\n<div>&nbsp;</div>\n<div>If, on the other hand, the cat raises its right paw, then it is a female cat that symbolizes prosperity, fertility and family happiness, as well as <strong>good health</strong>.</div>\n<div>&nbsp;</div>\n<h2>5) Great Chinese Ship of Fortune</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"729\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The ship of fortune is also a very important good luck charm in Chinese Feng Shui. As the name suggests, it is a ship-shaped decoration of various shapes and sizes. They usually carry gems and mini treasures to <strong>symbolize</strong> wealth and are very popular placed in homes and businesses.</div>\n<div>&nbsp;</div>\n<div>The fortune ship is believed to attract wealth and good fortune. For proper Feng Shui, the boat usually has sails that fully catch the wind to symbolize moving towards a better future.</div>\n<div>&nbsp;</div>\n<div>There are fortune ships built entirely of precious stones and even gold, and others that are constructed of real wood and <strong>silk fabric</strong>, like a genuine ship.</div>\n<div>&nbsp;</div>\n<h2>6) Three-legged Frog</h2>\n[gap height=\"50px\"]\n\n[products ids=\"6000\" columns=\"1\"]\n\n[gap height=\"50px\"]\n\n<div>The three-legged lucky frog, also called Jin Chanou or Chan Chu is also a very popular and powerful <strong>Chinese Feng Shui lucky charm</strong>. It is believed to attract and protect your fortune, while protecting you and your family from bad luck.</div>\n<div>&nbsp;</div>\n<div>The three-legged frog symbolizes the flow of money, and Feng Shui dictates that this statue should not be placed facing your main door. It should also not be placed in your kitchen and toilet or bathroom.</div>\n<div>&nbsp;</div>\n<div>The common practice is to place the three-legged frog statue in the main entrance, while another <strong>statue</strong> next to it has its back to the entrance. This configuration is meant to protect the flow of money coming and going outside the home or business.</div>\n<div>&nbsp;</div>\n<h2>7) Amethyst Crystal Tree</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"715\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>In <strong>Chinese</strong> Feng Shui, crystals are believed to contain positive healing energy, and many people use them as objects of concentration in their meditation practice.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In this case, amethyst crystals are arranged like a tree (with a resin or plastic tree branch) and are believed to have healing properties to calm the mind. They are also considered a good luck charm for wealth and prosperity. The amethyst crystal tree is said to improve memory while maintaining calm and can also help with insomnia. It has the same functions as <a href=\"http://www.dream-catchers.org/\">dream catchers</a> to chase away evil spirits and help you sleep better.</div>\n<div>&nbsp;</div>\n<div>There are also crystal trees made from other materials like agate, citrine, rose quartz, and others.</div>\n<div>&nbsp;</div>\n<h2>8. Dragon Turtle</h2>\n[gap height=\"50px\"]\n\n[ux_products ids=\"5994\"]\n\n[gap height=\"50px\"]\n\n<div>The dragon and the <strong>turtle</strong> are symbols of protection, wisdom and nobility in Chinese culture. They are two of the four heavenly animals (dragon, tiger, phoenix and turtle).</div>\n<div>&nbsp;</div>\n<div>The dragon turtle, as its name suggests, has the body of a turtle but the head of a dragon, and is believed to symbolize good health, longevity, power, courage and <strong>success</strong>. A dragon turtle statue is believed to protect its owner from betrayal in business and promote healthy harmony at home and in the workplace.</div>\n<div>&nbsp;</div>\n<div>There are several types of dragon turtle statues used as good luck charms, including three of the most important:</div>\n<div>&nbsp;</div>\n<div>Turtle dragon carrying a pagoda (the Wen Chang Pagoda) on its back. It is a good luck charm for <strong>academic success</strong></div>\n<div>Turtle dragon with a baby (or a couple of babies) sitting on its shell. It is believed to improve fertility and family harmony</div>\n<div>Dragon turtle sitting on coins and gold bars, as you may have guessed, symbolizes financial fortune</div>\n<div>&nbsp;</div>\n<h2>9) Pi Xiu</h2>\n[gap height=\"50px\"]\n\n[products ids=\"5996\" columns=\"1\"]\n\n[gap height=\"50px\"]\n\n<div>Pi Xiu also known as Pi Yao, Tian Lu, Bai Jie or Bi Xie, is a mythical Chinese chimera resembling a winged lion with dragon elements. As good luck charms in <strong>Feng Shui</strong>, Pi Xiu statues are believed to protect their owner from evil spirits and negative energy, thus preventing bad luck.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Pi Xiu like to eat gold, jewelry, silver and water. Therefore, it is believed that they get rich from all sides for their owner. The Pi Xiu is thought to be a very loyal and obedient mythological animal, making it a favorite as a <strong>good luck charm for personal protection</strong>. You can find Pi Xiu good luck charms in various forms, such as keychains, bracelets or even statues.</div>\n<div>&nbsp;</div>\n<h2>10) Chi Lin</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"711\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Chi Lin is another mythological chimera from <strong>ancient China</strong>, a creature with the head of a dragon but the body of a horse. In addition, Chi Lin has the scales of a carp fish. Chi Lin is also often called the dragon horse or sometimes the Chinese unicorn.</div>\n<div>&nbsp;</div>\n<div>The Chi Lin is believed to bring protection to its owner, and also improve the health and wealth of the owner. In addition, it is also known to be a protector against various relationship problems to promote a harmonious household. However, it is mostly associated with the <strong>luck</strong> of fertility. If you want to learn more about this creature and many others click here.</div>\n<div>&nbsp;</div>\n<div>As a good luck charm, you can place the Chi Lin sculpture near the main entrance of your home or workplace or in your living room. It can also come in various other forms such as embroidery, statue, keychain, amulets, etc. There are also many different materials, finishes and sizes.</div>\n<div>&nbsp;</div>\n<h2>11) Chinese Guardian Lion</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"709\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Chinese guardian lion or Fu dog, is another <strong>Chinese mythological creature</strong>. Traditionally, they are placed in front of imperial palaces, government offices in ancient China, and also temples.</div>\n<div>&nbsp;</div>\n<div>Nowadays, Fu dogs are considered a symbol of a family\'s wealth and social status, so they are often placed in front of large houses in China and <strong>Asia</strong>.</div>\n<div>&nbsp;</div>\n<div>Generally, imperial <strong>guardian lion statues</strong> are displayed in pairs, with the female holding a cub under her left paw, symbolizing maternal protection, and the male holding a globe under his right paw, signifying the protection of his domain (home).</div>\n<div>&nbsp;</div>\n<h2>12) Lucky Bamboo Feng Shui</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"707\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Lucky <strong>Bamboo</strong>, also known as Lucky Bamboo, is a very important plant in Feng Shui and is believed to bring positive and peaceful energy to the home it is in. Bamboo is a flexible plant that is also hollow inside, and in Chinese philosophy, this symbolizes the flexibility and openness of the individual.</div>\n<div>&nbsp;</div>\n<div>Lucky bamboo can be placed inside the house, or you can also grow real bamboo plants in your <strong>garden</strong>. There are also various accessories made from bamboo stalks that are believed to produce the same effect.</div>\n<div>&nbsp;</div>\n<div>The number of stalks also plays an important role in the use of <strong>Lucky Bamboo</strong>. Three stems, for example, are believed to bring three kinds of luck: wealth, longevity and happiness. Seven stems, on the other hand, symbolize health, while eight stems bring good luck to fertility, as the word \"eight\" in Mandarin is very similar to the word used for \"grow\".</div>\n<div>&nbsp;</div>\n<h2>13) Symbol of Double Happiness</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"705\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>Chinese symbol</strong> of double happiness is essentially the word (xi) which is written twice side by side so that two of its strokes are joined together.</div>\n<div>&nbsp;</div>\n<div>The meaning of this symbol is quite literal: double dose of happiness for its owner, and it is often used as a <strong>decoration</strong> for holidays and celebrations (e.g. Chinese New Year, birthday parties, birth of a child, etc.).</div>\n<div>&nbsp;</div>\n<div>The Double Happiness sign was first used as a wedding decoration, a symbol of prayer for the newlyweds to be happy and their marriage to last. However, over the years, it has made its way to other <strong>Chinese festivities</strong>.</div>\n<div>&nbsp;</div>\n<h2>14) Chinese Phoenix</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"703\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>It is one of the four guardians of China (Dragon, Turtle, Phoenix and Tiger), the <strong>Phoenix</strong> rules over all other birds in China.</div>\n<div>&nbsp;</div>\n<div>Male phoenixes are called Feng, while females are called Huang. However, the distinction between the sexes is not typically made today, and so the phoenix is often called Fenghuang, a female entity associating with the <strong>dragon</strong>, which is usually a male entity.</div>\n<div>&nbsp;</div>\n<div>As a <strong>good luck charm</strong>, phoenix carvings represent justice, obedience, and loyalty, and are often used as a good luck charm for those experiencing bad luck, as it is believed to be capable of reversal under bad circumstances.</div>\n<div>&nbsp;</div>\n<h2>15) Koi Carp</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"701\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Koi</strong> is called 鲤鱼, Li Yu, or literally translated as \"carp fish\" in China. There are many applications to this lucky charm. For example, a carp statue placed on a study desk is believed to bring academic success.</div>\n<div>&nbsp;</div>\n<div>A common practice is to place 8 pieces of carp around the work desk, as 8 is the Chinese number for wealth and prosperity. A few <strong>carp statues</strong> placed in the bedroom are also believed to bring happiness in a marriage.</div>\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:27:\"Top 15 Chinese Lucky Charms\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:23:\"15-chinese-lucky-charms\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:27:44\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:27:44\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=666\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:731;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 15:41:17\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 21:41:17\";s:12:\"post_content\";s:12813:\"<!-- wp:flatsome/uxbuilder -->\n<div>Are there any legendary <strong>Chinese warriors</strong>? What is their name and what is their history?&nbsp;</div>\n<div>&nbsp;</div>\n<div>At Teng Shop, we are passionate about <strong>Chinese culture</strong>, so we will bring you the answers as accurately as possible.</div>\n<div>&nbsp;</div>\n<div><strong>For thousands of years, China has known powerful dynasties and many wars. That\'s why great warriors like Sun Wu, Cao Cao or Xiang Yu were able to shine during these difficult periods.</strong></div>\n<div>&nbsp;</div>\n<div>In this article, you will discover :&nbsp;</div>\n<ul>\n<li>5 very famous Chinese warriors</li>\n<li>Their personal history</li>\n<li>The impact of these <strong>warriors</strong> on China</li>\n<li>After reading this article, these Chinese warriors will no longer hold any secrets for you!</li>\n</ul>\n<div>Without further ado, let\'s discover together the first warrior!</div>\n[gap]\n\n<h2>1. Sun Wu (Sun Tzu)</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"756\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Sun Wu, or <strong>Sun Tzu</strong> is probably the most famous Chinese warrior in the world. The reason for his fame is his famous book \"<strong>The Art of War</strong>\". This book helps war generals to better organize themselves during a battle or during a war in a more general way. This same book is used in many fields today such as business, where it is said that by replacing the word \"war\" by the word \"business\", so we find a whole new reading of the work.</div>\n<div>&nbsp;</div>\n<div>We don\'t have much information about the beginning of Sun Wu\'s life, but everything leads us to believe that he would have been born in the Chinese state of Ch\'i and that he would have served the king Ho-lu of Wu as a <strong>military specialist</strong> at the end of the Zhou dynasty (1046 to 256 B.C.).</div>\n<div>&nbsp;</div>\n<div>All the fame of this general was built on the fact that he focused on a war that was more psychological than brutal. At a time when people simply wanted to eliminate all their opponents during a war, Sun Tzu <strong>proposed alternatives that were much less violent but all the more formidable</strong>. He used human psychology to neutralize enemies and always tried to save as many innocent people as possible.</div>\n<div>&nbsp;</div>\n<div>Following the lessons of <a href=\"https://suntzusaid.com/\">the art of war</a>, you used deception and psychological pressure to crush your enemies. Surprise attacks and breaking enemy alliances are also part of this <strong>tactic</strong>, the important thing being to keep as many men as possible on your side.</div>\n[gap]\n\n<h2>2. Wu Qi</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"754\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Wu Qi (381 BC) was a native of Zuo in the state of Wei. He was one of the <strong>leading military, statesmen and reformers</strong> of the early Three Kingdom period in China.</div>\n<div>&nbsp;</div>\n<div>Wu Qi studied Confucianism under Zeng Shen in his early years, but later abandoned <strong>Confucianism</strong> to study military art. When he was in the state of Lu, he was ordered to command the emperor\'s army and defeat Qi, an enemy of the state. He then went to Wei, where he was highly regarded by the Marquis of Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>He also reformed the military system and created the Wei Wu soldiers, who \"won 64 of 76 battles against the <strong>warlords</strong>.\" He was appointed magistrate by the king of Chu and led reforms.</div>\n<div>&nbsp;</div>\n<div>He was appointed magistrate of the state of Chu and implemented reforms that in a short time strengthened the state of Chu and allowed it to \"pacify Baiyue in the south, merge with Chen and Cai in the north, but conquer the three Jin dynasties and <strong>conquer</strong> Qin in the west.\" In 381 B.C., upon the death of the king, Wu Qi was assassinated for offending the old guard with his efforts to change the law.</div>\n<div>&nbsp;</div>\n<div>Wu Qi served in the states of Lu, Wei, and Chu, and was a master of the three schools of thought - <strong>military</strong>, legal, and Confucianism - and was known as \"Sun Wu.\" His work, Wu Zi, occupies an important place in the military canon of ancient China.&nbsp;</div>\n<div>&nbsp;</div>\n<div>During the reign of Emperor Su Zong of the Tang Dynasty, he was included in the King Wucheng Temple and became one of the ten philosophers of the Wushu Temple. During the reign of <strong>Emperor</strong> Huizong of the Song Dynasty, he was posthumously appointed Guangzongbo, one of the seventy-two generals of Wu Temple.</div>\n[gap]\n\n<h2>3. Qin Shi Huang</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"752\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Qin Shi Huang Ying Zheng (259-210 BC), nicknamed Ying, Zhao and also known as Zhao Zheng, was an outstanding statesman, strategist and reformer of <strong>ancient China</strong>. He was the first political figure to complete the unification of China and was the first Chinese monarch to call himself emperor. He is the very first reformer of China, ending ten years of brutal war.</div>\n<div>&nbsp;</div>\n<div>Ying Zheng was born in Handan, the capital of Zhao State. He succeeded to the throne in 247 BC, at the age of thirteen.&nbsp; From 230 to 221 BC, he destroyed the six states of Han, Zhao, Wei, Chu, Yan and Qi, completing the unification of <strong>China</strong> and establishing a centralized and unified multi-ethnic state, the Qin Dynasty. It is from this dynasty that the name of the country would come from, Qin being very similar to the word \"China\".</div>\n<div>&nbsp;</div>\n<div>At the same time, the central government adopted the system of three princes and nine ministers to manage the affairs of state; at the local level, the <strong>feudal system</strong> was abolished and replaced by the county system.&nbsp;</div>\n<div>&nbsp;</div>\n<div>He was also responsible for the construction of the <strong>Great Wall of China</strong>. The construction of this edifice, still standing today, was ordered by Ying Zheng in order to repel the nomadic and barbarian attacks coming from the north. This allowed the Middle Kingdom to remain in peace for more than 15 years, giving the country time to unify in peace.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<div>Qin also established China\'s first centralized government institutions and replaced the outdated military system - which was normally composed of disorganized peasant fighters - with established <strong>military institutions</strong> that to this day produce career soldiers systematically trained in the most advanced defense tactics.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Qin Shi Huang sought immortality and dreamed of becoming a god. His tyrannical rule and stifling of the wisdom of the people destabilized the foundations of Qin rule. In 210 BC, Qin Shi Huang died at Xingtai Shaqiu during his eastern tour.&nbsp;</div>\n<div>&nbsp;</div>\n<div>This <strong>Chinese warrior</strong> and emperor achieved the feat of defining the basic pattern of the Chinese political system for over 2,000 years. He was hailed by the Ming thinker Li Zhi as the \"only emperor of a thousand ages\".</div>\n[gap]\n\n<h2>4. Xiang Yu</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"9227\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Xiang Yu (232 BC - 202 BC), was a descendant of the Xiang State, a <strong>vassal</strong> state of the Zhou Dynasty.</div>\n<div>&nbsp;</div>\n<div>As a young man, Xiang Yu learned nothing about books and swords, but he had the great ambition to <strong>fight</strong> against the Qin. In September of the first year of the second Qin dynasty (209 BC), he accompanied Xiang Liang to fight at Huiji (now Suzhou, Jiangsu province) in response to the uprising of Chen Sheng and Wu Guang.</div>\n<div>&nbsp;</div>\n<div>After the death of Chen Sheng, he took the lead of the main anti-Qin forces and installed Xiong Xin, the grandson of King Huai of Chu, as king.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In 206 BC, Xiang Yu divided the lords and made Liu Bang king of the Han, making himself king of western Chu and establishing his capital at Pengcheng (now Xuzhou, Jiangsu).&nbsp;</div>\n<div>&nbsp;</div>\n<div>Soon after, Tian Rong and Chen Yu raised their troops against Chu in Qi and Zhao, and Liu Bang took the opportunity to pacify the three <strong>Qin dynasties</strong> and advance into western Chu. Although Xiang Yu was victorious at the beginning of the war, the military situation became increasingly unfavorable due to the division of the lords and internal conflicts, as well as poor strategic decisions, and he was finally besieged at Gaixia.</div>\n<div>&nbsp;</div>\n<div>As a representative of the <strong>Chinese military school</strong> of thought, Xiang Yu was a warrior general known for his superior strength. Li Wanfang commented that \"Yu\'s courage has been unmatched for a thousand years.\"</div>\n[gap]\n\n<h2>5. Cao Cao</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"748\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Cao Cao, Wu <strong>emperor of Wei</strong> (155 - March 15, 220), came from Qiao county, Pei state (now Bozhou, Anhui province), with the surname Mengde. He was an outstanding politician, military man, literary scholar, calligrapher and poet in ancient China. He was a powerful minister in the late Eastern Han Dynasty, the son of Cao Song, the son of the first lieutenant and the founder of the Cao Wei Dynasty.</div>\n<div>&nbsp;</div>\n<div>Cao Cao was an alert, <strong>chivalrous</strong> and debauched young man who mastered his craft. At the age of only twenty, he was promoted to the rank of peer and was appointed lieutenant in the northern part of Luoyang. Later, he became a <strong>cavalry captain</strong> and participated in the suppression of the yellow turban army. He moved to Jinan, where he was responsible for eliminating corrupt officials and banning obscene rituals.&nbsp;</div>\n<div>&nbsp;</div>\n<div>When Dong Zhuo took power, he dispersed his family\'s money and raised an <strong>army</strong> to fight against him with Yuan Shao and others. In the third year of his reign (192), he was able to divide and defeat Yanzhou\'s yellow turban army of over 300,000 men and select the best of them to form the Qingzhou army.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In the first year of Jian\'an (196), he hosted the Xian emperor in Xu (east of Xuchang, Henan province), where he became secretary general and took charge of the <strong>imperial</strong> administration. In the fifth year of Jian\'an (200), he defeated the main forces of Yuan Shao in the battle of Guandu, and eliminated Yuan Shang and Yuan Tan in succession.</div>\n<div>&nbsp;</div>\n<div>In the twelfth year of Jian\'an (207), he defeated Wuhuan and unified the north. The following year, he was promoted to prime minister, attacked Jingzhou and fought the battle of the Red Cliff with Sun Quan and Liu Bei, but was defeated. In the 18th year of Jian\'an (213), he was crowned Duke of Wei. In the 20th year of Jian\'an (215), he conquered Zhang Lu and took Hanzhong. The following year, he was crowned king of Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Finally, in 220, he died in Luoyang at the age of sixty-six. After his son Cao Pi became emperor on behalf of the Han, he was posthumously honored as emperor Taizu Wu and was buried in Gao Ling.</div>\n<div>&nbsp;</div>\n<div>Cao Cao was gifted in poetry and literature, knew the art of war, and created the Jian\'an style of writing. He is the author of many poems and essays. He also wrote a commentary on Sun Tzu, which has been transmitted to the world. His poems and writings were collected in a manuscript, Cao Cao ji (Complete Works of Cao Cao). He also excelled in calligraphy, and Zhang Huaiguan of the Tang Dynasty called him \"a wonderful masterpiece.</div>\n[gap]\n\n<h2>The place of these warriors in the life of the Chinese</h2>\n[gap]\n\n<div>As we have just seen, these 5 Chinese warriors have, in their own way, moved the Chinese world forward. Whether it is Sun Tzu who wrote the \"Art of War\" or Qin Shi Huang who ordered the construction of the Great Wall, all these <strong>legendary men</strong> have left their mark on the modern world.</div>\n<div>&nbsp;</div>\n<div>They are considered today as inspiring people, so that they can be found in many works such as books or movies. There are also very famous video games like <strong>Dynasty Warriors</strong> featuring some of these men during the War of the Three Kingdoms.</div>\n<div>&nbsp;</div>\n<div>We can also easily find in China the graves of these men, allowing us to discover beautiful <strong>Chinese cities</strong> waiting for your visit.</div>\n[gap]\n\n[featured_products]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:28:\"5 Legendary Chinese Warriors\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:28:\"5-legendary-chinese-warriors\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:22:34\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:22:34\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=731\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:760;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 19:42:55\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 01:42:55\";s:12:\"post_content\";s:13112:\"<!-- wp:flatsome/uxbuilder -->\n<div>Are you wondering what <strong>Hanfu</strong> is? Is it worn by men or women? Is it still worn today?</div>\n<div>&nbsp;</div>\n<div>Passionate about <strong>Chinese culture</strong> and traditional fashion, we will bring you the answer as precisely as possible.</div>\n<div>&nbsp;</div>\n<div><strong>The Hanfu is a traditional Chinese garment. It has been worn for more than 3000 years and has received some modifications through the dynasties. Forgotten for many decades, the Hanfu has come back in fashion and is now a symbol of China.</strong></div>\n<div>&nbsp;</div>\n<div>In this article, you will discover:</div>\n<ul>\n<li>What is the Hanfu</li>\n<li>When and how to wear it</li>\n<li>Is it still a worn and appreciated garment</li>\n</ul>\n<div>After reading this article, you will know exactly why this traditional garment is so important in <strong>China</strong>.</div>\n<div>&nbsp;</div>\n<div>Without further ado, let\'s get started.</div>\n[gap]\n\n<h2>The Hanfu, a traditional Chinese garment</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"804\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Hanfu 汉服 literally means \"clothing of the Han people\".&nbsp; It is the traditional clothing <strong>originally worn by the Han Chinese</strong>, the majority ethnic group in China.</div>\n<div>&nbsp;</div>\n<div>Hanfu is a traditional Chinese garment of very ancient origin. It would have more than 3000 years of history! It would even have been worn by the Yellow Emperor himself, a great civilizing sovereign considered even today as the father of China.</div>\n<div>&nbsp;</div>\n<div>The origin of this <strong>garment</strong> dates back to the Shang dynasty (1570 to 1045 BC). The Hanfu is composed as follows:</div>\n<ul>\n<li>the Yi 衣, a tunic with narrow sleeves, reaching down to the knees and fastened with a belt</li>\n<li>the Chang裳, a pleated skirt reaching the ankles</li>\n<li>the Bixi蔽膝, a piece of cloth covering the thighs, worn above the skirt.</li>\n</ul>\n<div>During the Zhou Dynasty (770 to 256 BC), the social status of the garment became highly codified and not everyone could wear Hanfu in the same way.</div>\n[gap]\n\n[gap height=\"50px\"]\n\n[ux_image id=\"834\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>According to the regulations, it was necessary to pay attention to the length of the <strong>skirt</strong> and the tunic, the width of the sleeves, the ornaments put on the dress... During this dynasty, the Hanfu changes slightly by becoming wider at the level of the sleeves and more decorated (hanging jade stones on the belt was very appreciated for example).</div>\n<div>&nbsp;</div>\n<div>Hanfu became a method of <strong>distinguishing social classes</strong>. The higher a person was placed, the more his Hanfu was decorated. In addition, there were also differences in the size of the sleeves, the length of the skirt or the fastening of the dress.</div>\n<div>&nbsp;</div>\n<div>The Zhou Dynasty invented the <a href=\"https://www.chinahighlights.com/travelguide/traditional-chinese-clothes.htm#:~:text=The%20Hanfu%2C%20Zhongshan%20suit%20(Mao,types%20of%20traditional%20Chinese%20clothing.\">Shengyi</a> 深衣, or \"deep garment\". It was actually a short tunic and skirt sewn together. This new garment could be worn by a man as well as a woman.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"808\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>As the technology was more modern, we saw on the <strong>Shengyi</strong> and Hanfu beautiful and complex patterns.</div>\n<div>&nbsp;</div>\n<div>With time and the different dynasties that followed, the Hanfu developed and became even more complex. For example, we find:</div>\n<ul>\n<li>The Yi衣, a short garment with a cross neck. Worn by both sexes</li>\n<li>The Pao袍, long dress or tunic closing sideways worn only by men</li>\n<li>The Ru襦, open shirt with a cross neck</li>\n<li>The Shan衫, open cross-necked jacket or jacket worn over the Yi</li>\n<li>The Chang裳, a new type of skirt worn by both men and women</li>\n<li>The Ku褲, a type of wide pants worn mostly by men</li>\n</ul>\n<div><strong>Hanfu is worn by almost all Chinese people for centuries</strong>. Court people, scholars, students, workers, all had a Hanfu adapted to their social class.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"836\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>It is at the beginning of the Qing dynasty (1644-1911) that the Hanfu disappears little by little. This dynasty, compared to all the others, was not founded by Han <strong>Chinese</strong>, who formed the majority of the Chinese population at that time, but by Manchu Chinese.</div>\n<div>&nbsp;</div>\n<div>The Manchus were a semi-nomadic people who made themselves known in Manchuria. Having taken power in China, they naturally brought back their own traditional clothes. Among them is for example the very famous <strong>Chinese dress QiPao</strong>, which will soon replace the Hanfu for women.</div>\n<div>&nbsp;</div>\n<div>The Qipao and the Hanfu have thus linked but very different histories. The <strong>Qipao</strong> are nowadays much more popular than the Hanfu, because the modern versions are much easier to wear in everyday life than the Hanfu which remains a rather imposing and complex garment. If you are interested in Qipao, a link to our collection can be found in the image below.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"47\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>When and how to wear Hanfu</h2>\n<p>Hanfu is a sophisticated and prestigious garment. It is obvious that nowadays, one does not go to work in Hanfu for example. However, there are many occasions to wear this beautiful garment.</p>\n[gap]\n\n<h3>When to wear Hanfu</h3>\n<p>For traditional celebrations, it is not surprising to wear a Hanfu. It shows respect for <strong>Chinese culture</strong> and puts you in the shoes of the Chinese of the time during the festivities. This obviously includes <a href=\"https://www.cchatty.com/Chinese-Traditional-Marriage-Culture-g-100013\">Chinese weddings</a>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"812\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>It is also possible to wear the Hanfu for historical commemorations or for a coming of age ceremony, an ancient tradition that some Chinese people are trying to revive.</div>\n<div>&nbsp;</div>\n<div>The Hanfu <strong>can be worn for an event</strong>, such as a <strong>school or theatrical performance</strong>. It can also be worn <strong>in the street</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"814\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Finally, we can mention the Buddhist and Taoist <strong>religious clothes</strong> which are still today Hanfu. The Hanfu worn by believers are obviously very sober, of plain color and rarely with patterns.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"816\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Since 2010, there is even an <strong>official Hanfu festival</strong>, usually held in Chengdu. This <a href=\"http://en.people.cn/n3/2020/1123/c90000-9786322.html\">Hanfu festival</a> allows to perpetuate the tradition and to allow the participants to learn more about this mythical garment. Although Chinese people learn about Hanfu in school, it is especially during this kind of event that we learn interesting things.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"818\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>How to wear Hanfu</h3>\n<div>Hanfu is a garment that is simpler to wear than you might think. It is as simple to dress in Hanfu as it is to dress in a <strong>modern garment</strong>. In summer, for example, Chinese women like to wear a Qixiong Ruqun齐胸襦裙, which is a <strong>simple dress</strong> with a belt above the chest.</div>\n<div>&nbsp;</div>\n<div>In winter, Qiyao-Ruqun齐腰襦裙 dresses from the Wei and Jin dynasties or Ma Mian Qun马面裙 dresses are going to be preferred. They are usually composed of more layers than other dresses, and keep warmer. They are more complex to put on.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"820\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>For men, the Hanfu is also very simple to wear. Even if the very traditional versions are a bit more complex, the majority of the Hanfu you will be able to try are very simple to put on: <strong>a simple dress, a jacket and a belt to buckle up</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"822\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>If you come to China, it is quite normal <strong>to wonder if a non-Chinese person can wear Hanfu</strong>. Even if some rare nationalistic Chinese will have a hard time saying yes, <strong>the vast majority will not take it badly at all</strong> to see a foreigner wearing a Hanfu. As long as it is done with respect for tradition, <strong>it is accepted without any problem</strong>.</p>\n[gap]\n\n<h2>A traditional garment still appreciated by the Chinese</h2>\n<div>Despite the age of this garment, the <strong>Hanfu has been growing in popularity in China</strong> for a few years.</div>\n<div>&nbsp;</div>\n<div><strong>Fashion in China</strong> has really changed a lot in the last years. In the 80\'s and 90\'s, Chinese people used to dress in a very sober way, often in black or grey. Going outside the mold was rather frowned upon so \"everyone\" dressed the same way.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"824\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>With the years, the economic leap of China and the mentalities more and more westernized, the <strong>Chinese fashion</strong> changes very quickly. The Chinese no longer want to \"be like everyone else\" but \"be different\".</div>\n<div>&nbsp;</div>\n<div>We find all styles when we walk in China. We go from adults in sober suits to young people dressed in a much more excessive way. They can very well go from a streetwear outfit to a <strong>traditional outfit</strong>, like the Hanfu.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"826\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Hanfu has become fashionable again since the 2000s</strong>. A man named Wag Letian, an energy worker, took to the streets in November 2003 wearing his homemade Hanfu. This is said to be the starting point of the Hanfu revival.</div>\n<div>&nbsp;</div>\n<div>More and more people dared to go out in the street in traditional dress. <strong>The followers of this practice are called TongPao同袍</strong>. They mostly use the internet to share this practice brought back to life.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"828\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>TongPao</strong>, passionate about this garment, have deepened their knowledge and share daily a lot of information about Hanfu which allows to gather reliable sources and thus to know more about the traditional Chinese culture.</div>\n<div>&nbsp;</div>\n<div>It is really less and less surprising to see young people walking in town in <strong>traditional dress</strong>. Like princes or princesses, these young Chinese like to do this for respect of traditions, for photo shootings or to be noticed.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"830\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>You don\'t even have to go to China anymore to see them, on social networks like Instagram or even Tik Tok, it\'s pretty easy to find photos or videos of these <strong>Chinese people</strong> dressed in these beautiful traditional outfits.</div>\n<div>&nbsp;</div>\n<div>A very interesting report published by Tmall (a kind of extremely popular Chinese Amazon) released in 2018 tells us that the <strong>number of people buying Hanfu is increasing by 92% per year</strong> on average. Chinese born after 1995 represent 48% of the clientele. The interest in this garment is therefore growing over time.</div>\n<div>&nbsp;</div>\n<div>One might think that this is just a fashion effect, but the inhabitants of the Middle Kingdom seem to be much more attached to the history of their country than we are in Europe. Hanfu is<strong> an inseparable element of Chinese culture</strong>, that\'s why it is and will always be present in the life of the Chinese.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"832\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>A garment always in fashion</h2>\n<div>As we have just seen in this article, <strong>the Hanfu is a timeless garment</strong>, which never ceases to adapt to the centuries and the generations that wear it. Another Chinese invention that still seems to have a great future ahead of it.</div>\n<div>&nbsp;</div>\n<div>If the opportunity arises one day, <strong>do not hesitate to try the Hanfu</strong>. Even if today it is mainly used as a \"disguise\", you will be able to put yourself in the shoes of a Chinese during the ancient dynasties and get very nice pictures.</div>\n<div>&nbsp;</div>\n<div>Trying a Hanfu is nice, but having your own is even nicer. At Teng Shop, we offer you <strong>a beautiful collection of Hanfu</strong> directly imported from China. Link on the image below.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"48\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:24:\"The Hanfu : What Is It ?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:13:\"what-is-hanfu\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:16:27\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:16:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=760\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:840;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 15:35:30\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 21:35:30\";s:12:\"post_content\";s:19291:\"<!-- wp:flatsome/uxbuilder -->\n<div>What are the must-see monuments in <strong>China</strong>? What is their history? Where are they located?</div>\n<div>&nbsp;</div>\n<div><strong>Between the Great Wall of China and the Temple of Heaven in Beijing, the Bund in Shanghai, the Great Pagoda in Xian and many others, Chinese monuments are numerous and all filled with history and culture.</strong></div>\n<div>&nbsp;</div>\n<div>Passionate about Chinese culture and its monuments in particular, we are going to deliver our personal top of the <strong>must-see Chinese monuments</strong>!</div>\n<div>&nbsp;</div>\n<div>Without further ado, let\'s discover these 11 extraordinary monuments:</div>\n[gap]\n\n<h2>The Great Wall of China, Beijing</h2>\n<div>Address: Great Wall of China, Beijing</div>\n<div>&nbsp;</div>\n<div>Chinese name: 长城</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"981\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Considered as <strong>one of the wonders of the new world</strong>, the Great Wall of China is not only a Chinese attraction but also <strong>one of the most visited monuments in the world</strong>. This popular Chinese monument really needs no introduction. Although the total length of the Great Wall is not easy to discern, the beginning of its construction dates back to the 5th century BC.</div>\n<div>&nbsp;</div>\n<div>Most of the current wall, widely considered the \"<strong>Great Wall</strong>\", was built during the reign of the Qing Dynasty to defend the region from Mongol insurgents. The wall in its entirety is <strong>21196 km long</strong>. The Qing Wall itself is 8850 km long, of which 6259 km is the wall itself, the rest being trenches and natural defenses.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"979\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>This length of wall includes more than <strong>25,000 watchtowers</strong>. Although a significant part of the wall is now in ruins, about 30%, some parts of the wall around Beijing are maintained in excellent condition thanks to many actions taken in the past few decades, mainly because they are a <strong>huge tourist attraction</strong>.</div>\n<div>&nbsp;</div>\n<div>The areas near Beijing that receive the most tourists are <strong>Jinshanling</strong>, a famous hiking trail, and <strong>Mutianyu</strong>, the best preserved section of the wall. There are several tours of the Great Wall, and many sections you can visit according to your preferences.</div>\n[gap]\n\n<h2>Wild Goose Pagoda, Xi\'an</h2>\n<div>Address: Giant Wild Goose Pagoda, Xian</div>\n<div>&nbsp;</div>\n<div>Chinese name: 大雁塔</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"977\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Located in Xi\'an, Shaanxi Province, China, the Wild Goose Pagoda, or Great Wild Goose Pagoda, is a <strong>five-story pagoda</strong> built in the 7th century. The pagoda is located in the Da Ci\'en temple complex. It <strong>was originally built in 652</strong> during the Tang Dynasty, rebuilt again in 704, and renovated during the Ming Dynasty and in the 20th century.</div>\n<div>&nbsp;</div>\n<div>In the monument, there are <strong>sutras and Buddhist figurines</strong>. Built by Emperor Gaozong of the Tang Dynasty (617-907), the Wild Goose Pagoda was built to collect Buddhist works and relics brought from <strong>India by the scholar</strong>, monk, traveler and translator Xuanzang. Xuanzang traveled all over China to collect Buddhist sacred works.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"975\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>He became famous for his 17-year journey to India and the religious sites of what is now Nepal, Pakistan and Bangladesh. He traveled through these countries, collecting Buddhist scriptures and artifacts because he was concerned that the nature of Buddhism that had reached China was neither complete nor correctly interpreted. His journey is the origin of the famous Chinese story \"<strong>Journey to the West</strong>\", which is why many Chinese like to think that the starting point of his journey is in Xi\'an.</div>\n<div>&nbsp;</div>\n<div>This monument is very interesting to visit when you are in Xi\'an, especially since it is surrounded by a large park where it is particularly pleasant to stroll for hours. Many small stores and other services are present as well as nice cafes with a great view on the <strong>pagoda</strong>.</div>\n<div>&nbsp;</div>\n<div>In Xi\'an there is also the very famous Terracotta Army, which is actually the mausoleum of the Qin emperor.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"40\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Summer Palace, Beijing</h2>\n<div>Address: 19 Xinjiangongmen Rd, Haidian District</div>\n<div>&nbsp;</div>\n<div>Chinese name: 颐和园</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"973\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Summer Palace was commissioned by the Qianlong Emperor of the Qing Dynasty in 1750. The first summer palace was called Qingyi Yuan or \"<strong>the garden of clear ripples</strong>\".</div>\n<div>&nbsp;</div>\n<div>However, this first summer palace was destroyed by the Franco-British allied forces in 1860 and was rebuilt in 1896. It was destroyed again in 1900 and rebuilt in 1912 to mark the last acts of the Qing Dynasty. In 1924, it was officially opened to the public as a <strong>tourist attraction</strong>.</div>\n<div>&nbsp;</div>\n<div>The Summer Palace is widely known as the largest existing imperial garden in China. In 1998, <strong>UNESCO</strong> added this complex to the World Heritage List. Covering an area of over 300 hectares, it is one of the largest and most captivating <strong>landscape gardens</strong> not only in China but also in the world.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"970\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The complex combines man-made architecture of pavilions, palaces, temples and bridges with beautiful natural landscapes of hills and open water. The Summer Palace is located in<strong> the northwest of Beijing</strong> and is considered the best preserved imperial garden in the world. It is only a short drive from the center of Beijing, so it is quite easy to reach.</div>\n<div>&nbsp;</div>\n<div><strong>Tourists</strong> can enjoy a <strong>variety of activities</strong> in the Summer Palace complex, from walking on the famous Long Corridor, to boating on Kunming Lake, to watching traditional performances in the ancient theater. The Summer Palace was designed to achieve harmony with nature. It harmonizes plants and architectural paths, water and earth, and emphasizes the philosophy of Chinese garden landscapes in general.</div>\n[gap]\n\n<h2>Hanging Temple, Datong</h2>\n<div>Address: Xian of Hunyuan, Datong</div>\n<div>&nbsp;</div>\n<div>Chinese name: 悬空寺</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"968\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Xuankongsi Hanging Temple, located about <strong>60 kilometers southeast of Datong</strong>, China, in Shanxi Province, is <strong>one of the forgotten wonders of the world</strong>. Apparently defying gravity, it hangs on a rock of the Hengshan Mountain and comprises 40 rooms connected by a dizzying maze of passages. This ancient <strong>Chinese monument</strong> is said to have been built by a monk named Liao Ran at the end of the Northern Wei dynasty (386-534) and restored in 1900.</div>\n<div>&nbsp;</div>\n<div>It was built by drilling holes in the side of the cliff in which the posts that support the temples are fixed. It is interesting to note that the <strong>temple</strong> is dedicated to the three religions: Confucianism, Taoism and Buddhism, and not to a single religion. All three religions are practiced in the temple and represented by 78 statues and sculptures throughout the temple. This combination of factors makes the Hanging Temple one of the most interesting religious and historical sites in the <strong>Middle Kingdom</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"966\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>Forbidden City, Beijing</h2>\n<div>Address: 4 Jingshan Front St, Dongcheng</div>\n<div>&nbsp;</div>\n<div>Chinese name : 紫禁城</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"964\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Forbidden City served as the palace of the Emperor of China for 500 years, from 1420 to 1912, and spans <strong>a vast complex of 13 hectares</strong>. Glorifying ancient Chinese architecture, this sprawling complex contains <strong>980 buildings</strong>. It is recognized as a UNESCO monument in China. This monument is named as such because it was forbidden to enter the complex without the permission of the emperor.</div>\n<div>&nbsp;</div>\n<div>Today, the <strong>Forbidden City houses</strong> <a href=\"https://en.dpm.org.cn/\">the Palace Museum</a>. It is divided into two parts: the outer courtyard, to the south, where the emperor exercised his authority over his subjects, and the inner courtyard, to the north, which was his residence. The whole complex, with its amazing architecture and buildings, is one of <strong>the main attractions in China</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"962\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>With over a million collectibles</strong> in bronze, ceramics, paintings, jade and wear and tear, the Palace Museum\'s collections are incredibly vast. You will start your visit at the Meridian Gate and exit either through the Divine Prowess Gate or the Eastern Prosperity Gate.</div>\n<div>&nbsp;</div>\n<div>This complex is obviously a must do when visiting <strong>Beijing</strong>, especially when you know that it is <strong>located in the center of the city</strong>. The monument is very large, so plan a good morning or afternoon to fully enjoy it. Do not hesitate to come with a guide so that he can explain all the secrets and details of the construction. Many guides are present on the spot but I advise you all the same to take it in advance to avoid the scams.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Kaifeng</h2>\n<div>Address: Kaifeng, Henan, China</div>\n<div>&nbsp;</div>\n<div>Chinese name: 开封</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"960\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng was the most important metropolis not only in China but in the world at the peak of its glory. It is famous for being <strong>one of the most important ancient capitals</strong> in China. Kaifeng is located about <strong>72 km from Zhengzhou</strong>, in the east of Henan Province, covering an area of 6,444 km². It is located just south of the Yellow River, facing the Huanghuai Plain to the south. There are many attractions to explore in Kaifeng, including :</div>\n<div>&nbsp;</div>\n<div>In this city, there are not one but several monuments you can discover:</div>\n<ul>\n<li><strong>Kaifeng Iron Tower</strong>, a 13-story, 56-meter tower, which is known as the world\'s first iron tower (built in 1049).</li>\n<li><strong>Qingming River Scenery Garden</strong>, a large garden from the Northern Song Dynasty (960-1127).</li>\n<li><strong>Xiangguo Grand Temple</strong>, a Buddhist temple from the Northern Qi Dynasty (550-577).</li>\n</ul>\n[gap height=\"50px\"]\n\n[ux_image id=\"958\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng is also famous for its <strong>chrysanthemums</strong>, and the chrysanthemum fair is famous since the 900s. The chrysanthemum flower fair is still held every year in October/November and features thousands of different types of chrysanthemums.</div>\n<div>&nbsp;</div>\n<div>The city is also <strong>the birthplace of Chinese calligraphy</strong> and Henan opera, home to four famous calligraphy schools.</div>\n[gap]\n\n<h2>10,000 Buddhas Monastery, Hong Kong</h2>\n<div>Address: 220, Pai Tau Village Sha Tin</div>\n<div>&nbsp;</div>\n<div>Chinese name : 萬佛寺</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"956\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Ten Thousand Buddhas Monastery, located on Po Fook Hill in Pai Tau Village, Sha Tin, New Territories, is one of <strong>the most famous Buddhist temples in Hong Kong</strong> and one of the most popular tourist attractions. The temple was founded in 1949 by Reverend Yuet Kai and completed in 1957. The monastery is not residential and is run by lay people.</div>\n<div>&nbsp;</div>\n<div>The <strong>monastery</strong> was extensively decorated in 1968, some of the pavilions were rebuilt and all the statues were painted or covered with pure gold. The monastery is built on two levels on a hillside, on a <strong>bamboo forest</strong> overlooking Sha Tin, and occupies an area of over eight hectares. It has five temples, four pavilions, a veranda and a pagoda. It is reached by a steep concrete path of 431 steps.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"954\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>There are many beautiful temples in <strong>Hong Kong</strong>, but this one is particularly original thanks to its <strong>12800 Buddha statues</strong>. This temple could well offer you a stroll that you will keep forever in your memory.</p>\n[gap]\n\n<h2>Great Buddha of Tian Tan</h2>\n<div>Address: Ngong Ping, Lantau Island, Hong Kong</div>\n<div>&nbsp;</div>\n<div>Chinese name: 天壇大佛</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"952\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>To stay in the vicinity of Hong Kong, you will find another monument that is clearly worth a visit: <strong>the great Buddha of Tian Tan</strong>. This one is located on Lantau Island, dominating the Ngong Ping hill.</div>\n<div>&nbsp;</div>\n<div>This <strong>34 meters high statue</strong> is made from <strong>250 tons of bronze</strong>. It was <strong>built between 1990 and 1993</strong> and stands on a lotus-shaped pedestal. This work of art represents China\'s pride in its Buddhist tradition.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"950\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>As this statue is near <strong>Po Lin monastery</strong>, you will have something to occupy a good part of your day with a zen and relaxing atmosphere.</p>\n[gap]\n\n<h2>White Horse Temple</h2>\n<div>Address: No. 6, Luoyang Road, Luolong District, Luoyang</div>\n<div>&nbsp;</div>\n<div>Chinese name: 白马寺</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"948\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>This temple is one of the most important in Asia as it is said to be <strong>the oldest temple in China</strong>. Built in the year 68, this temple built near Luoyang has its own rich history.</div>\n<div>&nbsp;</div>\n<div>According to <a href=\"http://en.chinaculture.org/library/2008-02/15/content_34384.htm\">the most popular legend</a>, two Indian monks, Kasyapamatanga and Dharmaratna, arrived in Luoyang with <strong>white horses</strong>. They carried with them many Buddhist statues and scriptures. They would be the ones who translated the Buddhist Sutras into Chinese for the first time. <strong>The first Buddhist temple in China</strong> and <strong>the first Chinese Buddhist scriptures</strong> were born.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"946\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>The temple is obviously composed of many rooms filled with ancient statues and other Buddhist relics. There are also beautiful gardens in the temple made up of multitudes of small foreign temples (Indian, Thai, Burmese...) and especially <strong>the oldest pagoda in China</strong>.</p>\n[gap]\n\n<h2>Potala Palace</h2>\n<div>Address: 35 Central Beijing Road, Lhasa, Tibet, China</div>\n<div>&nbsp;</div>\n<div>Chinese name: 布达拉宫</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"944\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>Potala Palace</strong> is <strong>a huge religious and administrative complex located in Lhasa</strong>, in the south of the Tibet Autonomous Region. The monument is located at the top of Mar-po-ri (Red Mountain), 130 meters above the Lhasa River valley, and rises dramatically from its rocky base.</div>\n<div>&nbsp;</div>\n<div>The Potrang Karpo, or White Palace, <strong>was once the seat of the Tibetan government and the main residence of the Dalai Lama</strong>. From the middle of the 18th century, it was used as a winter palace. The Potrang Marpo, or Red Palace, houses several chapels, sacred statues and the tombs of eight Dalai Lamas and remains an important place of pilgrimage for <strong>Tibetan Buddhists</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"942\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Among the more than 1,000 rooms of the Potala, the most sacred are the Chogyal Drubphuk and the Phakpa Lhakhang, the remains of the original palace of Srong-brtsan-sgam-po. The latter houses a sacred statue named Arya Lokeshvara. In the sacred complex, you will find <strong>more than 200,000 statues and 10,000 altars</strong>.</div>\n<div>&nbsp;</div>\n<div>Its value has been recognized by the China Cultural Relics Commission, and the palace was spared during the Cultural Revolution. The Potala <strong>was designated a UNESCO World Heritage Site</strong> in 1994.</div>\n[gap]\n\n<h2>The Bund, Shanghai</h2>\n<div>Address: Zhongshan East 1st Rd, Wai Tan, Huangpu, Shanghai</div>\n<div>&nbsp;</div>\n<div>Chinese name: 外灘</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"940\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>It is impossible to visit Shanghai without passing by <strong>the famous Bund</strong>. The name bund in Chinese means \"the bank of foreigners. This is mainly due to the fact that all along the Bund you will find beautiful European style buildings as well as banks and <strong>other colonial buildings</strong> dating from the 1930s. Today, many of these buildings are embassies.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"938\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>All the interest of the <a href=\"https://www.travelchinaguide.com/attraction/shanghai/bund.htm\">bund</a> is not in the old foreign concession buildings along the shore, but in <strong>the view it offers on the new business district</strong> of Lujiazui. By day and by night, you can admire the Oriental Pearl, the Shanghai Tower, the Jin Mao Tower, the <strong>Shanghai</strong> World Financial Center and the Shanghai IFC Towers</p>\n[gap]\n\n<h2>China and its countless monuments</h2>\n<p>We have just presented the 8 Chinese monuments that we find inescapable, but there are actually many others!</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"936\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Temple of Heaven and the Bird\'s Nest in Beijing, the walls of Xian, Tiananmen Square, the Yonghe Lamasery, the Jade Buddha <strong>Temple in Shanghai</strong> or the Crescent Moon Oasis in DunHaung are as exciting as the monuments mentioned above.</div>\n<div>&nbsp;</div>\n<div>China has many monuments, ancient and modern. It\'s up to you if you prefer to travel in a modern or <strong>traditional China</strong>, even if we obviously advise you a mix of both!</div>\n<div>&nbsp;</div>\n<div>If you are interested in <strong>Chinese culture</strong>, you will find many products related to the Chinese world in our store, the link is on the image below!</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"39\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:29:\"11 Must-see Chinese Monuments\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:29:\"11-must-see-chinese-monuments\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:13:39\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:13:39\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=840\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:985;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 16:46:53\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 22:46:53\";s:12:\"post_content\";s:7995:\"<!-- wp:flatsome/uxbuilder -->\n<p>For thousands of years, <strong>Chinese chopsticks</strong> have been the utensil of choice in China and other East Asian countries because of their simplicity and versatility.</p>\n<p>However, in the rest of the world few people are able to handle them with dexterity.</p>\n<p>If you are used to using a <strong>fork</strong> and knife to handle your food, you may have a hard time getting used to <strong>chopsticks</strong> at first, but once you understand how to hold them, it will be much easier to master the mechanics!</p>\n<p>We explain everything in this article!</p>\n[gap]\n\n<h2>Correct positioning of the chopsticks</h2>\n[gap]\n\n<h3>Step 1: Grab the first stick</h3>\n<div>On a standard table, your chopsticks will be placed <strong>side by side in front of you</strong>, horizontally.</div>\n<div>&nbsp;</div>\n<div>It is usually easier to pick up your chopsticks using your first 2 or 3 fingers and your thumb.</div>\n<div>&nbsp;</div>\n<div>Make sure that the chopsticks <strong>do not clatter loudly</strong> when you pick them up. This could be considered rude in quiet restaurants and more formal settings.</div>\n<div>&nbsp;</div>\n<div>Use your dominant hand loosely. People who squeeze their chopsticks usually end up throwing their food around.</div>\n<div>&nbsp;</div>\n<div>Grab the first chopstick and place it in the hollow <strong>between your index finger and thumb</strong>. Balance it on your <strong>ring finger</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"1018\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Step 2: Grab the second stick and adjust them</h3>\n<div>Place the second chopstick in the hollow between your index finger and thumb, <strong>just like the first chopstick</strong>, but place it on your middle finger instead of your ring finger.</div>\n<div>&nbsp;</div>\n<div>Make sure the narrow ends of the chopsticks <strong>are even with each other</strong> so they don\'t cross or \"pinch\" the food.</div>\n<div>&nbsp;</div>\n<div><strong>To even them out</strong>, you can touch them to the table. Uneven chopsticks will be very difficult to use.</div>\n<div>&nbsp;</div>\n<div>Use your thumb, forefinger and middle finger to grip the second chopstick <strong>a little more firmly</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"1016\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Step 3: The wand mechanism</h3>\n<p>Now practice <strong>opening and closing the chopsticks</strong>. Make sure the wide ends of the chopsticks do not form an \"X\" as this will make it difficult to pick up food.</p>\n<p>If only the second chopstick is moving, well done! You are on the right track.<br>If it helps, move your hand up and down on the chopsticks, but <strong>keep the same position</strong>, experimenting with grip levels.</p>\n<p>Some find it easier to maneuver closer to the base, others higher.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1014\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Step 4: Start grabbing food</h3>\n<p><strong>Start grabbing food</strong>! For now, tilting the chopsticks 45 degrees may be easiest. Once the food is stable, lift it up. If it seems unstable, put it down and try again.</p>\n<p>Once you have mastered one type of food, move on to different sizes and textures. When you start to feel really confident, <strong>practice with noodles</strong>!</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1012\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>But <strong>to handle chopsticks</strong> properly, the first thing you really need to do is to get <strong>a proper</strong> pair of Chinese Chopsticks!</div>\n<div>&nbsp;</div>\n<div>In our Teng Shop, we offer<strong> a complete collection</strong> of chopsticks that can be used over and over again, ranging from <strong>varnished wooden</strong> chopsticks to very sophisticated <strong>stainless steel</strong> versions, some of which are decorated with elegant patterns, and <strong>learning chopsticks</strong>, which are ideal for children and adults who don\'t want to be bothered.</div>\n<div>&nbsp;</div>\n<div><strong>Will you be tempted by one of these?</strong></div>\n[gap height=\"50px\"]\n\n[featured_products]\n\n[gap height=\"50px\"]\n\n<h2>Different rules when using chopsticks</h2>\n<p>Chopsticks are <strong>symbolically and culturally important to China</strong> and other neighboring Asian countries. Like everywhere else in the world, the Chinese are strict about how you use chopsticks.</p>\n<p>A wrong use of their favorite utensil could offend them, which you obviously do not want. We therefore propose a list of <strong>8 basic rules</strong> that you must follow in China and elsewhere:</p>\n[gap]\n\n<h3>1 - When sharing food</h3>\n<div>Often, being at Asian tables (whether at home or in a restaurant), means <strong>sharing large plates of food</strong>. It\'s not appropriate to dive into the communal meal with chopsticks you\'ve just used.</div>\n<div>&nbsp;</div>\n<div><strong>You have two options:</strong></div>\n<ul>\n<li>Use a pair of <strong>public chopsticks</strong> that never touch your plate (or anyone else\'s)</li>\n<li>Choose <strong>with the other</strong> (non-eating) end of your chopsticks. This is the big end that hopefully you don\'t chew!</li>\n</ul>\n[gap]\n\n<h3>2 - Do not use your chopsticks to serve yourself</h3>\n<p>To serve food. If someone invites you for lunch or dinner, <strong>use your hands</strong> to pass the serving bowls instead of using your chopsticks. Never receive food <strong>with your chopsticks</strong> because it reminds the Chinese of a funeral rite they practice where the cremated bones of a loved one are passed behind family members with chopsticks.</p>\n[gap]\n\n<h3>3 - Don\'t prick the food</h3>\n<p>Don\'t poke your food <strong>with the ends</strong> of your chopsticks. If all else fails, this may seem like a good alternative, but it\'s considered rude.</p>\n[gap]\n\n<h3>4 - Never stick chopsticks in your food</h3>\n<p>Never put your chopsticks <strong>directly into a bowl of rice</strong>. This may seem like a harmless way to make them stay in place, but it is a cardinal sin in chopstick use. The position is similar to the incense sticks that the Chinese stick in rice to honor their dead.</p>\n[gap]\n\n<h3>5 - Do not cross your chopsticks</h3>\n<p>Do not cross your chopsticks. If you are done eating, put them <strong>on the side of your plate</strong> on the left.</p>\n<p><strong>Do not point your chopsticks at people</strong>. Pointing, in general, is a no-no in Asian cultures and the same is true with chopsticks.</p>\n[gap]\n\n<h3>6 - Keeping chopsticks together</h3>\n<p><strong>When placing the chopsticks</strong>, keep them on the side of your bowl or plate in their designated area. You will get a small block to rest them on, but if not, you should place the chopsticks with the ends meeting. <strong>Never keep them crossed on the plate</strong> as this is a sign of denial, meaning you don\'t like the host and are denying their kindness.</p>\n[gap]\n\n<h3>7 - Don\'t play with your sticks</h3>\n<p>Don\'t use them to drum, tap, spin or bang the chopsticks together. When you drum your plate with the chopsticks, it is associated with the act of begging.</p>\n[gap]\n\n<h3>8 - Always tilt your chopsticks</h3>\n<p>When you put the chopsticks down, make sure they never point directly at the person sitting across from you. This is considered a rude gesture, <strong>so tilt them slightly</strong>.</p>\n[gap]\n\n<h3>9 - When you eat rice</h3>\n<p>When you eat rice, <strong>be prepared to dig in</strong>. If a bowl of rice is placed in front of you and you only have two small bamboo poles, you may feel like you are in a stream without a paddle.</p>\n<p>But it\'s perfectly acceptable (pretty normal) <strong>to lift the rice bowl near your mouth</strong> and eat from there. You won\'t look silly, you\'ll look seasoned!</p>\n<p>Don\'t stick your bowl to your mouth either, but lift it close to you to keep the rice grains from accumulating around your dining area.</p>\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:31:\"How to Hold Chinese Chopsticks?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:30:\"how-to-hold-chinese-chopsticks\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:09:27\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:09:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=985\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1022;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 18:54:18\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 00:54:18\";s:12:\"post_content\";s:7226:\"<!-- wp:flatsome/uxbuilder -->\n<div>Food culture is deeply rooted in China\'s history. As a visitor or guest in a Chinese home or restaurant, you will find that <strong>table manners</strong> are essential and that courtesy will invariably contribute to your enjoyment of the meal and your good mood!</div>\n<div>&nbsp;</div>\n<div>It is truly an admirable custom to <strong>respect others at the table</strong>, including the elderly, teachers and guests, while taking good care of children.</div>\n<div>&nbsp;</div>\n<div>The Chinese always insist on filial piety. The practice of <strong>presenting the best dishes</strong> to the oldest family members first has been observed for countless generations. <strong>In ancient times</strong>, the common people led a poor life, but they still did their best to support the elder mother or father, who took it for granted.</div>\n<div>&nbsp;</div>\n<div>Although the hosts in China are all friendly and hospitable, you <strong>should also show them respect</strong>. Before you start eating, the host may say a few words of welcome to you. Guests should not start eating until the host says, \"Enjoy your meal\" or something like that, otherwise it suggests disrespect and causes displeasure.</div>\n<div>&nbsp;</div>\n<div>When the hosts arrange the dishes on the table, they <strong>place the main dishes in the center</strong> and the side dishes around them. When the main dishes are <strong>prepared in a decorative form</strong>, either by cutting or by other means, they will be placed in front of the main guests and the elderly at the table.</div>\n<div>&nbsp;</div>\n<div>Now, let\'s move on to the different traditional Chinese cuisines.&nbsp;Discover it now!</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"36\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>The best traditional cuisines of China</h2>\n<div><strong>Chinese cuisine</strong> is rich and diverse, varying in style and taste from region to region. Its history goes back thousands of years, evolving over time according to changes in the environment (such as climate) and local preferences. Chinese cuisine also varies by social class and ethnicity, and is often influenced by the cuisines of other <strong>cultures</strong>.</div>\n<div>&nbsp;</div>\n<div>All of these factors contribute to an unparalleled range of cooking techniques, ingredients, <strong>dishes</strong> and food styles that make up what is now known as Chinese cuisine.</div>\n<div>&nbsp;</div>\n<div>Of the various regional styles of Chinese cuisine, Guangdong Cantonese cuisine is the most widely recognized in the world. Many Western Chinese restaurants have adopted a <strong>Cantonese style</strong> of cooking due to the majority of Chinese emigrants from Guangdong who settled in the United States and Europe in the 1800s.</div>\n<div>&nbsp;</div>\n<div>Indeed, the Hakkasan menu is primarily Cantonese or Hakka dishes (hence the name Hakkasan), a cuisine developed by the Hakka people who lived in <strong>Guangdong</strong> province. However, there are a number of distinct styles from different regions that contribute to the overall Chinese cuisine.</div>\n[gap]\n\n<h3>Anhui (Hui)</h3>\n<p>Anhui cuisine is derived from the indigenous cooking styles of the inhabitants of the Huangshan Mountain region of <strong>China</strong>. Although it is similar to Jiangsu cuisine, it places less emphasis on seafood and more on a wide variety of locally grown herbs and vegetables, both from the land and the sea.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1062\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Fujian (Min)</h3>\n<p>Fujian cuisine is influenced by its coastal location and mountainous terrain. Ingredients such as wood mushrooms, <strong>bamboo</strong> shoots, fish, shellfish and turtles are regularly used. The cuisine of this region is known for its special emphasis on umami flavor; the dishes are notoriously light and flavorful.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1060\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Zhejiang (Zhe)</h3>\n<p>In general, <strong>Zhejiang</strong> food is fresh and light rather than fatty. It consists of at least four styles of cuisine: Hangzhou, characterized by the use of rich foods and bamboo shoots; Shaoxing, specializing in poultry and <strong>fish</strong>; Ningbo, specializing in seafood; and Shanghai, with xiao long bao.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1058\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Shandong (Lu)</h3>\n<p>Derived from the indigenous culinary styles of Shandong, a coastal province in northern China, Shandong cuisine consists of two predominant styles: Jiaodong, which is characterized by light <strong>seafood dishes</strong>, and Jinan, a style characterized by the use of soup in its dishes. Although less available in the West, Shandong cuisine is often considered one of the most influential cooking styles in <strong>Chinese culinary</strong> history.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1056\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Hunan (Xiang)</h3>\n<p>Like Szechuan cuisine, Hunan cuisine is known to be <strong>hot and spicy</strong>, with garlic, chilies and shallots used in abundance. However, unlike Sichuanese cuisine, it is known to be purely hot, as opposed to the hot and numbing heat of <strong>Sichuanese cuisine</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1054\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Cantonese (Yu)</h3>\n<p>Due to Guangdong\'s proximity to the <strong>South China Sea</strong>, residents of the region have access to an abundant supply of imported foods and fresh seafood. Cantonese cuisine incorporates almost all edible meats, including <strong>chicken feet</strong>, duck tongue, snakes and snails. However, due to their availability, lamb and goat are rarely eaten.</p>\n<p>Many <strong>cooking techniques</strong> are used, including wok hei (frying) and steaming. Spices are used sparingly and fresh herbs are rarely added to dishes. Dishes include dim sum, small pieces of <strong>food</strong> usually served for breakfast or lunch with tea; barbecued char siu, sticky and burnt red in color; and clear broths flavored with meat broth.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1051\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Jiangsu (Su)</h3>\n<p>Jiangsu cuisine consists of several different styles of Chinese cuisine, namely Huaiyang, Yangzhou, Nanjing, Suzhou and Zhenjiang. <strong>The food in Jiangsu cuisine is known to be soft</strong>, but not so soft that it falls apart: the meat is tender but does not fall off the bone when lifted.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1049\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Szechuan (Chuan)</h3>\n<p>Szechuan cuisine produces the most widespread cuisine in China. It is famous for its use of strong flavors. <strong>Szechuan chili</strong>, garlic and pepper are used extensively in dishes. Sichuan pepper has a unique taste: it is intensely fragrant, lemony and causes a numbing sensation in the mouth. Szechuan cuisine often contains foods that have been preserved through pickling, <strong>salting and drying</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1047\" image_size=\"original\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:65:\"Chinese Food Culture : The different types of dishes to discover!\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:20:\"chinese-food-culture\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:09:23\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:09:23\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1022\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:8;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1068;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 12:06:05\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 18:06:05\";s:12:\"post_content\";s:5242:\"<!-- wp:flatsome/uxbuilder -->\n<div>We happen to live in a place in time where we seem to keep running on the metaphorical treadmill to acquire more and more things.</div>\n<div>&nbsp;</div>\n<div><strong>Chinese Zen philosophy</strong>, inspired by Buddhism, however, is a study of contrasts. It teaches us to find comfort in emptiness, beauty in imperfection and elegance in simplicity.</div>\n<div>&nbsp;</div>\n<div>And when these principles are infused into the language of <strong>interior design</strong>, they can transform your home into a meditative retreat from the outside world.</div>\n<div>&nbsp;</div>\n<div>Here are a few ways to introduce Zen-inspired design into your home.</div>\n[gap]\n\n<h2>1) Letting in the Natural Light</h2>\n<p>Zen advocates openness in all aspects of life and a big part of that involves becoming one with <strong>nature</strong>, staying close to it. This living space is the perfect example of how to bring the outside in by letting in the light.</p>\n<p>The cynosure is the glass wall that bathes the room in natural light and allows for expansive green views of the outdoors. Create a similar atmosphere by exploring all the possibilities of natural light in your home.</p>\n[gap height=\"50px\"]\n\n[ux_products cat=\"42\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>2) Use Muted Earthy Colors</h2>\n<div>&nbsp;</div>\n<div>Zen-inspired spaces instill <strong>a sense of calm in the environment</strong>. Bright colors, even pastel tones, are considered to have a very energetic character. Muted, neutral and earthy colors bring a sense of calm and serenity.</div>\n<div>&nbsp;</div>\n<div>The goal is <strong>to keep all distractions, large and small</strong>, at bay. Solid neutral colors are an easy and economical way to achieve this. You can also opt for furniture with muted tones.</div>\n[gap]\n\n<h2>3) Putting on a Platform Bed</h2>\n<div>Stillness in <strong>Zen culture</strong> is about cultivating inner peace that enhances self-awareness and a sense of equanimity. This principle is manifested in interior design through permanent fixtures, such as platform beds.</div>\n<div>&nbsp;</div>\n<div>Platform beds are a common feature of <strong>Japanese-inspired Zen designs</strong>. They consist of a wooden platform placed very low to the ground. A mattress is simply placed on top and there is a deliberate absence of any other elements to preserve the stillness of the space.</div>\n[gap]\n\n<h2>4) Install a Water Feature</h2>\n<p><strong>Zen spaces</strong> evoke tranquility and calm, both inside and out. The sound of water flowing inside the home creates soothing, harmonious music that elevates energy and calms the mind.</p>\n<p>If it\'s not possible to create a central water feature like the one in the image, consider bringing in one of the plug-and-play indoor water fountains that are readily available locally.</p>\n<p>Place them in the dining room, living room or a courtyard - better yet, in a place where the gentle sound of running water can somehow be amplified.</p>\n[gap]\n\n<h2>5) Bringing Minimalism and Simplicity</h2>\n<div><strong>Simple living</strong> is part of the Zen genetic code. Everything unnecessary is eliminated, so that the negative space created ends up being part of the design itself. The result is a captivating naked aesthetic.</div>\n<div>&nbsp;</div>\n<div>The first step in moving toward minimalism is to get rid of anything that clutters the house. Unused items can be donated and the rest can be neatly hidden away in storage units. When it comes to furniture, opt for pieces that are sleek, contemporary, light and unadorned. Create a sense of lightness by choosing items with <strong>simple designs</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"45\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>6) Reorganize the Presentation</h2>\n<div>In addition to removing unwanted things and objects from our environment, Zen urges us to find balance and harmony with the things that remain.</div>\n<div>&nbsp;</div>\n<div>You can do this by <strong>rearranging furniture</strong>, creating perpendicular angles in their placement and removing anything that disrupts the flow and harmony of a space. You can also use subtle colors and complement textures and lighting to create that balance.</div>\n<div>&nbsp;</div>\n<div>This room combines a simple, clean layout with a neutral, two-tone color theme to create the most <strong>serene atmosphere</strong>.</div>\n[gap]\n\n<h2>7) Opt for Green</h2>\n<div>Embracing nature as a part of our being and vice versa is an essential principle of <strong>Zen philosophy</strong>. To create a soothing space, bring in nature. Use potted plants or even bring a tree or two inside the house.</div>\n<div>&nbsp;</div>\n<div>Sand, stones and rocks can be used to enhance the nature of the living space with <strong>wood and bamboo</strong>. You can also for example opt for a handmade Incense-Holder, which will make your home very healthy.</div>\n<div>&nbsp;</div>\n<div>You can also create a green corner in your kitchen or on a windowsill and grow plants and herbs. If you are not good with a green thumb, just place some <strong>bonsai</strong> plants around the house.</div>\n[gap height=\"50px\"]\n\n[ux_product_categories]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:40:\"How to make your home Zen &amp; Chinese?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:33:\"how-to-make-your-home-zen-chinese\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:08:02\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:08:02\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1068\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:9;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1085;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 12:35:00\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 18:35:00\";s:12:\"post_content\";s:6009:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>Chinese weddings</strong>, like Western weddings, are all unique in their own way. Some weddings tend to be more traditional with parades and wedding ceremonies, while others include more contemporary and Western customs.</div>\n<div>&nbsp;</div>\n<div>While Chinese weddings are bound to be a bit more complicated for us to understand than traditional Western weddings, it\'s still easy to navigate, even if it\'s your first time!</div>\n<div>&nbsp;</div>\n<div>As a guest, what you wear to a Chinese wedding can be important.</div>\n<div>&nbsp;</div>\n<div>That\'s why we\'re going to answer the question in this article : How to dress for a Chinese wedding? Through 9 recommendations to be in the dress code of a <strong>traditional Chinese wedding</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"47\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>1. Do not wear red</h2>\n<p><strong>Chinese brides usually wear red on their wedding day</strong>, so wearing it as a guest will be considered rude. It\'s kind of like in the West, where it\'s rude to dress in white when you\'re a guest. After all, you don\'t want to look like you\'re trying to upstage the bride! Choose a different, more subtle color for your dress, or your shirt if you\'re a man.</p>\n[gap]\n\n<h2>2. Wear warm colors</h2>\n<p>Purple, pink and peach color all symbolize new life and happiness in <strong>Chinese culture</strong>. So wearing these <a href=\"https://www.thatsmandarin.com/guest-blogs-media/the-meaning-of-different-colors-in-chinese-culture/\">colors</a> indicates that you want the best for the new union and also helps bring luck and happiness to the new couple. They are also good color choices because they tend to look flattering on many different skin tones and hair colors, and can work during all seasons. Wearing yellow or orange is also considered acceptable.</p>\n[gap]\n\n<h2>3. Avoid wearing too much black or white</h2>\n<p>Both white and black symbolize mourning and death in Chinese culture. Wearing these colors to a <strong>wedding</strong> could bring bad luck to the couple, and is simply considered rude, so avoid them. However, you can get away with wearing touches of black or white on your dress, especially if the couple is modern.</p>\n[gap]\n\n<h2>4. You can include festive accents and accessories</h2>\n<p>Small touches of gold, which is a popular color in Chinese culture, can really spice up your look without breaking the dress code. You can also include small touches inspired by Chinese culture in your outfit, such as a <strong>Mandarin collar</strong> on your dress.</p>\n<p>You can also add accessories from Chinese culture such as a <a href=\"https://www.nl.ecom-expansion.com/collections/chinese-umbrellas/\">Chinese Umbrella</a> or a <strong>traditional fan</strong>. However, if you overload your outfit with Oriental accents, you may come across as overdoing it.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1106\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n[gap]\n\n<h2>5. The length of the dress depends on the wedding</h2>\n<p>Although some aspects of the <strong>Chinese</strong> wedding are very traditional, brides still like to keep control of the party. In general, you should check with the couple, if you can, how formal they want it to be before buying your dress or suit.</p>\n<p>Unless the invitation specifically states that it is a very formal event, it is best to choose an above-the-knee skirt length. If the wedding is very <strong>traditional</strong>, you will need to check with the bridal party for specific guidelines.</p>\n[gap]\n\n<h2>6. Stay elegant</h2>\n<p>While short dresses may be appropriate, they should always remain elegant. <strong>Dresses</strong> that are too flashy or sexy can be considered inappropriate, just as they would be at most weddings around the world, not just in Chinese culture.</p>\n<p>And even if the wedding is not particularly formal, you should make an effort to be <strong>elegant and well-dressed</strong>, whether you are a man or a woman!</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1104\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>7. Wear something that represents you well</h2>\n<p>Especially if you\'re attending a wedding where you don\'t know many people, you should really think about what your outfit says about you. In <strong>traditional Chinese culture</strong>, how you present yourself can impact your family\'s honor.</p>\n<p>Even though many families are more flexible today, you will still need to think about how to best represent yourself.</p>\n<p>This means avoiding flashy colors, overly sexy silhouettes, or details that could be perceived as vulgar. <strong>Chinese tradition</strong> is still considered rather conservative.</p>\n[gap]\n\n<h2>8. Outfits are just as acceptable as dresses</h2>\n<p>Some Chinese weddings are not nearly as formal as Western weddings, and it\'s usually perfectly appropriate to wear a skirt and blouse instead of a <strong>qipao</strong>, especially if you think you\'ll be more comfortable there.</p>\n<p>At some Chinese weddings, you\'ll get a bit of a stink if you dress too formally. Of course, this varies from wedding to wedding. So it\'s best to check with the bride and groom or someone closer to the <strong>party</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_products cat=\"49\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>9. Make sure your dress stretches</h2>\n<div>Chinese weddings are known for their <strong>endless buffets</strong>, and you\'ll want to at least try on every course. If you wear something too tight in the middle, you may regret it at the end of the night! Draped fabrics are a great choice, because not only are they stylish, but they cover problem areas without restricting your movement.</div>\n<div>&nbsp;</div>\n<div>Now you know what to wear to your next Chinese wedding. You can find on our store an array of traditional clothes that will fit you perfectly to be at the top for your <strong>future Chinese wedding</strong>.</div>\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:35:\"How to dress for a Chinese wedding?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:32:\"how-to-dress-for-chinese-wedding\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:06:16\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:06:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1085\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:10:\"post_count\";i:10;s:12:\"current_post\";i:-1;s:11:\"before_loop\";b:1;s:11:\"in_the_loop\";b:0;s:4:\"post\";r:110;s:8:\"comments\";N;s:13:\"comment_count\";i:0;s:15:\"current_comment\";i:-1;s:7:\"comment\";N;s:11:\"found_posts\";i:28;s:13:\"max_num_pages\";d:3;s:21:\"max_num_comment_pages\";i:0;s:9:\"is_single\";b:0;s:10:\"is_preview\";b:0;s:7:\"is_page\";b:0;s:10:\"is_archive\";b:0;s:7:\"is_date\";b:0;s:7:\"is_year\";b:0;s:8:\"is_month\";b:0;s:6:\"is_day\";b:0;s:7:\"is_time\";b:0;s:9:\"is_author\";b:0;s:11:\"is_category\";b:0;s:6:\"is_tag\";b:0;s:6:\"is_tax\";b:0;s:9:\"is_search\";b:0;s:7:\"is_feed\";b:0;s:15:\"is_comment_feed\";b:0;s:12:\"is_trackback\";b:0;s:7:\"is_home\";b:0;s:17:\"is_privacy_policy\";b:0;s:6:\"is_404\";b:0;s:8:\"is_embed\";b:0;s:8:\"is_paged\";b:0;s:8:\"is_admin\";b:1;s:13:\"is_attachment\";b:0;s:11:\"is_singular\";b:0;s:9:\"is_robots\";b:0;s:10:\"is_favicon\";b:0;s:13:\"is_posts_page\";b:0;s:20:\"is_post_type_archive\";b:0;s:25:\"\0WP_Query\0query_vars_hash\";s:32:\"c82e1a097ca23bb8fe6ecedff22080a1\";s:28:\"\0WP_Query\0query_vars_changed\";b:0;s:17:\"thumbnails_cached\";b:0;s:37:\"\0*\0allow_query_attachment_by_filename\";b:0;s:19:\"\0WP_Query\0stopwords\";N;s:23:\"\0WP_Query\0compat_fields\";a:2:{i:0;s:15:\"query_vars_hash\";i:1;s:18:\"query_vars_changed\";}s:24:\"\0WP_Query\0compat_methods\";a:2:{i:0;s:16:\"init_query_flags\";i:1;s:15:\"parse_tax_query\";}}s:11:\"export_type\";s:8:\"specific\";s:21:\"filter_rules_hierarhy\";s:2:\"[]\";s:21:\"product_matching_mode\";s:6:\"strict\";s:17:\"wp_query_selector\";s:8:\"wp_query\";s:18:\"taxonomy_to_export\";s:0:\"\";s:23:\"sub_post_type_to_export\";s:0:\"\";s:18:\"created_at_version\";s:5:\"1.8.3\";s:3:\"ids\";a:42:{i:0;i:1;i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;i:32;i:1;i:33;i:1;i:34;i:1;i:35;i:1;i:36;i:1;i:37;i:1;i:38;i:1;i:39;i:1;i:40;i:1;i:41;i:1;}s:8:\"cc_label\";a:42:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:3:\"url\";i:8;s:5:\"title\";i:9;s:7:\"caption\";i:10;s:11:\"description\";i:11;s:3:\"alt\";i:12;s:8:\"featured\";i:13;s:3:\"url\";i:14;s:8:\"category\";i:15;s:8:\"post_tag\";i:16;s:13:\"_thumbnail_id\";i:17;s:20:\"_yoast_wpseo_focuskw\";i:18;s:18:\"_yoast_wpseo_title\";i:19;s:21:\"_yoast_wpseo_metadesc\";i:20;s:20:\"_yoast_wpseo_linkdex\";i:21;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:22;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:23;s:26:\"_yoast_wpseo_content_score\";i:24;s:7:\"_pingme\";i:25;s:10:\"_encloseme\";i:26;s:29:\"_yoast_wpseo_primary_category\";i:27;s:6:\"status\";i:28;s:6:\"author\";i:29;s:15:\"author_username\";i:30;s:12:\"author_email\";i:31;s:17:\"author_first_name\";i:32;s:16:\"author_last_name\";i:33;s:4:\"slug\";i:34;s:6:\"format\";i:35;s:8:\"template\";i:36;s:6:\"parent\";i:37;s:11:\"parent_slug\";i:38;s:5:\"order\";i:39;s:14:\"comment_status\";i:40;s:11:\"ping_status\";i:41;s:13:\"post_modified\";}s:6:\"cc_php\";a:42:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;i:0;i:6;i:0;i:7;i:0;i:8;i:0;i:9;i:0;i:10;i:0;i:11;i:0;i:12;i:0;i:13;i:0;i:14;i:0;i:15;i:0;i:16;i:0;i:17;i:0;i:18;i:0;i:19;i:0;i:20;i:0;i:21;i:0;i:22;i:0;i:23;i:0;i:24;i:0;i:25;i:0;i:26;i:0;i:27;i:0;i:28;i:0;i:29;i:0;i:30;i:0;i:31;i:0;i:32;i:0;i:33;i:0;i:34;i:0;i:35;i:0;i:36;i:0;i:37;i:0;i:38;i:0;i:39;i:0;i:40;i:0;i:41;i:0;}s:7:\"cc_code\";a:42:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";i:41;s:0:\"\";}s:6:\"cc_sql\";a:42:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";i:41;s:0:\"\";}s:7:\"cc_type\";a:42:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:9:\"image_url\";i:8;s:11:\"image_title\";i:9;s:13:\"image_caption\";i:10;s:17:\"image_description\";i:11;s:9:\"image_alt\";i:12;s:14:\"image_featured\";i:13;s:14:\"attachment_url\";i:14;s:4:\"cats\";i:15;s:4:\"cats\";i:16;s:2:\"cf\";i:17;s:2:\"cf\";i:18;s:2:\"cf\";i:19;s:2:\"cf\";i:20;s:2:\"cf\";i:21;s:2:\"cf\";i:22;s:2:\"cf\";i:23;s:2:\"cf\";i:24;s:2:\"cf\";i:25;s:2:\"cf\";i:26;s:2:\"cf\";i:27;s:6:\"status\";i:28;s:6:\"author\";i:29;s:15:\"author_username\";i:30;s:12:\"author_email\";i:31;s:17:\"author_first_name\";i:32;s:16:\"author_last_name\";i:33;s:4:\"slug\";i:34;s:6:\"format\";i:35;s:8:\"template\";i:36;s:6:\"parent\";i:37;s:11:\"parent_slug\";i:38;s:5:\"order\";i:39;s:14:\"comment_status\";i:40;s:11:\"ping_status\";i:41;s:13:\"post_modified\";}s:10:\"cc_options\";a:42:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:8;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:9;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:10;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:11;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:12;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:13;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";i:41;s:0:\"\";}s:8:\"cc_value\";a:42:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:3:\"url\";i:8;s:5:\"title\";i:9;s:7:\"caption\";i:10;s:11:\"description\";i:11;s:3:\"alt\";i:12;s:8:\"featured\";i:13;s:3:\"url\";i:14;s:8:\"category\";i:15;s:8:\"post_tag\";i:16;s:13:\"_thumbnail_id\";i:17;s:20:\"_yoast_wpseo_focuskw\";i:18;s:18:\"_yoast_wpseo_title\";i:19;s:21:\"_yoast_wpseo_metadesc\";i:20;s:20:\"_yoast_wpseo_linkdex\";i:21;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:22;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:23;s:26:\"_yoast_wpseo_content_score\";i:24;s:7:\"_pingme\";i:25;s:10:\"_encloseme\";i:26;s:29:\"_yoast_wpseo_primary_category\";i:27;s:6:\"status\";i:28;s:6:\"author\";i:29;s:15:\"author_username\";i:30;s:12:\"author_email\";i:31;s:17:\"author_first_name\";i:32;s:16:\"author_last_name\";i:33;s:4:\"slug\";i:34;s:6:\"format\";i:35;s:8:\"template\";i:36;s:6:\"parent\";i:37;s:11:\"parent_slug\";i:38;s:5:\"order\";i:39;s:14:\"comment_status\";i:40;s:11:\"ping_status\";i:41;s:13:\"post_modified\";}s:7:\"cc_name\";a:42:{i:0;s:2:\"ID\";i:1;s:5:\"Title\";i:2;s:7:\"Content\";i:3;s:7:\"Excerpt\";i:4;s:4:\"Date\";i:5;s:9:\"Post Type\";i:6;s:9:\"Permalink\";i:7;s:9:\"Image URL\";i:8;s:11:\"Image Title\";i:9;s:13:\"Image Caption\";i:10;s:17:\"Image Description\";i:11;s:14:\"Image Alt Text\";i:12;s:14:\"Image Featured\";i:13;s:14:\"Attachment URL\";i:14;s:11:\"Catégories\";i:15;s:11:\"Étiquettes\";i:16;s:13:\"_thumbnail_id\";i:17;s:20:\"_yoast_wpseo_focuskw\";i:18;s:18:\"_yoast_wpseo_title\";i:19;s:21:\"_yoast_wpseo_metadesc\";i:20;s:20:\"_yoast_wpseo_linkdex\";i:21;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:22;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:23;s:26:\"_yoast_wpseo_content_score\";i:24;s:7:\"_pingme\";i:25;s:10:\"_encloseme\";i:26;s:29:\"_yoast_wpseo_primary_category\";i:27;s:6:\"Status\";i:28;s:9:\"Author ID\";i:29;s:15:\"Author Username\";i:30;s:12:\"Author Email\";i:31;s:17:\"Author First Name\";i:32;s:16:\"Author Last Name\";i:33;s:4:\"Slug\";i:34;s:6:\"Format\";i:35;s:8:\"Template\";i:36;s:6:\"Parent\";i:37;s:11:\"Parent Slug\";i:38;s:5:\"Order\";i:39;s:14:\"Comment Status\";i:40;s:11:\"Ping Status\";i:41;s:18:\"Post Modified Date\";}s:11:\"cc_settings\";a:42:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";i:41;s:0:\"\";}s:15:\"update_previous\";i:2;s:13:\"friendly_name\";s:36:\"Articles Export - 2023 July 22 23:43\";s:18:\"order_item_per_row\";i:1;s:29:\"order_item_fill_empty_columns\";i:1;s:8:\"filepath\";s:91:\"/wpallexport/exports/a92fbe52e1f3206c8af062e8fee3e18a/Articles-Export-2023-July-22-2343.csv\";s:16:\"current_filepath\";s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wpallexport/exports/a92fbe52e1f3206c8af062e8fee3e18a/current-Articles-Export-2023-July-22-2343.csv\";s:10:\"bundlepath\";s:91:\"/wpallexport/exports/a92fbe52e1f3206c8af062e8fee3e18a/Articles-Export-2023-July-22-2343.zip\";s:8:\"wp_query\";s:0:\"\";s:9:\"export_to\";s:3:\"csv\";s:15:\"export_to_sheet\";s:3:\"csv\";s:9:\"delimiter\";s:1:\",\";s:8:\"encoding\";s:5:\"UTF-8\";s:21:\"is_generate_templates\";i:1;s:18:\"is_generate_import\";i:1;s:9:\"import_id\";s:1:\"2\";s:13:\"template_name\";s:36:\"Articles Export - 2023 July 22 23:43\";s:12:\"is_scheduled\";i:0;s:16:\"scheduled_period\";s:0:\"\";s:15:\"scheduled_email\";s:0:\"\";s:26:\"cc_combine_multiple_fields\";a:0:{}s:32:\"cc_combine_multiple_fields_value\";a:0:{}s:6:\"fields\";a:4:{i:0;s:7:\"default\";i:1;s:5:\"other\";i:2;s:2:\"cf\";i:3;s:4:\"cats\";}s:5:\"rules\";a:0:{}s:21:\"records_per_iteration\";s:2:\"50\";s:11:\"include_bom\";s:1:\"0\";s:17:\"include_functions\";i:1;s:19:\"split_large_exports\";s:1:\"0\";s:25:\"split_large_exports_count\";s:5:\"10000\";s:16:\"split_files_list\";a:0:{}s:12:\"main_xml_tag\";s:4:\"data\";s:14:\"record_xml_tag\";s:4:\"post\";s:16:\"save_template_as\";i:0;s:4:\"name\";s:0:\"\";s:21:\"export_only_new_stuff\";s:1:\"0\";s:26:\"export_only_modified_stuff\";s:1:\"0\";s:24:\"creata_a_new_export_file\";s:1:\"0\";s:15:\"attachment_list\";a:1:{i:0;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wpallexport/exports/a92fbe52e1f3206c8af062e8fee3e18a/Articles-Export-2023-July-22-2343.xml\";}s:21:\"order_include_poducts\";i:0;s:25:\"order_include_all_poducts\";i:0;s:21:\"order_include_coupons\";i:0;s:25:\"order_include_all_coupons\";i:0;s:23:\"order_include_customers\";i:0;s:27:\"order_include_all_customers\";i:0;s:9:\"migration\";s:0:\"\";s:17:\"xml_template_type\";s:6:\"simple\";s:19:\"custom_xml_template\";s:0:\"\";s:26:\"custom_xml_template_header\";s:0:\"\";s:24:\"custom_xml_template_loop\";s:0:\"\";s:26:\"custom_xml_template_footer\";s:0:\"\";s:27:\"custom_xml_template_options\";a:0:{}s:22:\"custom_xml_cdata_logic\";s:4:\"auto\";s:21:\"show_cdata_in_preview\";i:0;s:17:\"export_variations\";s:1:\"3\";s:23:\"export_variations_title\";i:1;s:41:\"export_only_customers_that_made_purchases\";i:0;s:18:\"include_header_row\";i:1;s:9:\"wpml_lang\";s:3:\"all\";s:24:\"enable_export_scheduling\";s:5:\"false\";s:17:\"scheduling_enable\";s:1:\"0\";s:22:\"scheduling_weekly_days\";s:0:\"\";s:17:\"scheduling_run_on\";s:6:\"weekly\";s:22:\"scheduling_monthly_day\";s:0:\"\";s:16:\"scheduling_times\";a:1:{i:0;s:0:\"\";}s:19:\"scheduling_timezone\";s:17:\"America/Matamoros\";s:17:\"allow_client_mode\";s:1:\"0\";s:24:\"enable_real_time_exports\";s:1:\"0\";s:32:\"enable_real_time_exports_running\";i:0;s:35:\"do_not_generate_file_on_new_records\";s:1:\"0\";s:14:\"security_token\";s:0:\"\";s:4:\"file\";s:0:\"\";s:8:\"tpl_data\";a:5:{s:4:\"name\";s:36:\"Articles Export - 2023 July 22 23:43\";s:18:\"is_keep_linebreaks\";i:1;s:13:\"is_leave_html\";i:0;s:14:\"fix_characters\";i:0;s:7:\"options\";a:92:{s:4:\"type\";s:4:\"post\";s:11:\"wizard_type\";s:3:\"new\";s:8:\"deligate\";s:11:\"wpallexport\";s:11:\"custom_type\";s:4:\"post\";s:6:\"status\";s:5:\"xpath\";s:23:\"is_multiple_page_parent\";s:2:\"no\";s:10:\"unique_key\";s:7:\"{id[1]}\";s:3:\"acf\";a:0:{}s:6:\"fields\";a:0:{}s:23:\"is_multiple_field_value\";a:0:{}s:14:\"multiple_value\";a:0:{}s:16:\"fields_delimiter\";a:0:{}s:15:\"update_all_data\";s:3:\"yes\";s:16:\"is_update_status\";i:1;s:15:\"is_update_title\";i:1;s:16:\"is_update_author\";i:1;s:14:\"is_update_slug\";i:1;s:17:\"is_update_content\";i:1;s:17:\"is_update_excerpt\";i:1;s:15:\"is_update_dates\";i:1;s:20:\"is_update_menu_order\";i:1;s:16:\"is_update_parent\";i:1;s:21:\"is_update_attachments\";i:1;s:13:\"is_update_acf\";i:1;s:24:\"is_update_comment_status\";i:1;s:25:\"is_update_comment_post_id\";i:0;s:24:\"is_update_comment_author\";i:0;s:30:\"is_update_comment_author_email\";i:0;s:28:\"is_update_comment_author_url\";i:0;s:27:\"is_update_comment_author_IP\";i:0;s:23:\"is_update_comment_karma\";i:0;s:26:\"is_update_comment_approved\";i:0;s:26:\"is_update_comment_verified\";i:0;s:24:\"is_update_comment_rating\";i:0;s:23:\"is_update_comment_agent\";i:0;s:25:\"is_update_comment_user_id\";i:0;s:22:\"is_update_comment_type\";i:0;s:15:\"import_img_tags\";i:1;s:16:\"update_acf_logic\";s:11:\"full_update\";s:8:\"acf_list\";s:0:\"\";s:22:\"is_update_product_type\";i:1;s:20:\"is_update_attributes\";i:1;s:23:\"update_attributes_logic\";s:11:\"full_update\";s:15:\"attributes_list\";s:0:\"\";s:16:\"is_update_images\";i:1;s:23:\"is_update_custom_fields\";i:1;s:26:\"update_custom_fields_logic\";s:11:\"full_update\";s:18:\"custom_fields_list\";s:0:\"\";s:20:\"is_update_categories\";i:1;s:23:\"update_categories_logic\";s:11:\"full_update\";s:15:\"taxonomies_list\";s:0:\"\";s:9:\"export_id\";s:1:\"2\";s:14:\"tmp_unique_key\";s:7:\"{id[1]}\";s:17:\"single_product_id\";s:7:\"{id[1]}\";s:5:\"title\";s:10:\"{title[1]}\";s:36:\"single_product_id_first_is_variation\";s:10:\"{title[1]}\";s:7:\"content\";s:12:\"{content[1]}\";s:12:\"post_excerpt\";s:12:\"{excerpt[1]}\";s:4:\"date\";s:9:\"{date[1]}\";s:19:\"update_images_logic\";s:7:\"add_new\";s:23:\"download_featured_delim\";s:1:\"|\";s:23:\"download_featured_image\";s:13:\"{imageurl[1]}\";s:11:\"is_featured\";i:1;s:17:\"is_featured_xpath\";s:18:\"{imagefeatured[1]}\";s:10:\"atch_delim\";s:1:\"|\";s:11:\"attachments\";s:18:\"{attachmenturl[1]}\";s:10:\"tax_assing\";a:2:{s:8:\"category\";i:1;s:8:\"post_tag\";i:1;}s:9:\"tax_logic\";a:2:{s:8:\"category\";s:12:\"hierarchical\";s:8:\"post_tag\";s:8:\"multiple\";}s:29:\"tax_hierarchical_logic_entire\";a:1:{s:8:\"category\";i:1;}s:20:\"multiple_term_assing\";a:2:{s:8:\"category\";i:1;s:8:\"post_tag\";i:1;}s:22:\"tax_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:31:\"is_tax_hierarchical_group_delim\";a:1:{s:8:\"category\";i:1;}s:28:\"tax_hierarchical_group_delim\";a:1:{s:8:\"category\";s:1:\"|\";}s:22:\"tax_hierarchical_xpath\";a:1:{s:8:\"category\";a:1:{i:0;s:14:\"{catgories[1]}\";}}s:18:\"tax_multiple_xpath\";a:1:{s:8:\"post_tag\";s:14:\"{tiquettes[1]}\";}s:18:\"tax_multiple_delim\";a:1:{s:8:\"post_tag\";s:1:\"|\";}s:11:\"custom_name\";a:10:{i:0;s:20:\"_yoast_wpseo_focuskw\";i:1;s:18:\"_yoast_wpseo_title\";i:2;s:21:\"_yoast_wpseo_metadesc\";i:3;s:20:\"_yoast_wpseo_linkdex\";i:4;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:5;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:6;s:26:\"_yoast_wpseo_content_score\";i:7;s:7:\"_pingme\";i:8;s:10:\"_encloseme\";i:9;s:29:\"_yoast_wpseo_primary_category\";}s:12:\"custom_value\";a:10:{i:0;s:25:\"{_yoast_wpseo_focuskw[1]}\";i:1;s:23:\"{_yoast_wpseo_title[1]}\";i:2;s:26:\"{_yoast_wpseo_metadesc[1]}\";i:3;s:25:\"{_yoast_wpseo_linkdex[1]}\";i:4;s:45:\"{_yoast_wpseo_estimatedreadingtimeminutes[1]}\";i:5;s:37:\"{_yoast_wpseo_wordproof_timestamp[1]}\";i:6;s:31:\"{_yoast_wpseo_content_score[1]}\";i:7;s:12:\"{_pingme[1]}\";i:8;s:15:\"{_encloseme[1]}\";i:9;s:34:\"{_yoast_wpseo_primary_category[1]}\";}s:13:\"custom_format\";a:10:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;i:0;i:6;i:0;i:7;i:0;i:8;i:0;i:9;i:0;}s:12:\"status_xpath\";s:11:\"{status[1]}\";s:6:\"author\";s:13:\"{authorid[1]}\";s:9:\"post_slug\";s:9:\"{slug[1]}\";s:24:\"single_product_parent_id\";s:11:\"{parent[1]}\";s:36:\"single_product_id_first_is_parent_id\";s:11:\"{parent[1]}\";s:18:\"single_page_parent\";s:15:\"{parentslug[1]}\";s:5:\"order\";s:10:\"{order[1]}\";s:25:\"single_product_menu_order\";s:10:\"{order[1]}\";s:25:\"is_product_enable_reviews\";s:5:\"xpath\";s:29:\"single_product_enable_reviews\";s:46:\"[str_replace(\"open\",\"yes\",{commentstatus[1]})]\";s:16:\"required_add_ons\";a:0:{}s:9:\"delimiter\";s:1:\",\";s:12:\"root_element\";s:4:\"node\";}}}','','2023-07-22 23:43:55','Articles Export - 2023 July 22 23:43',28,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','2023-07-22 23:43:55',0,0,0,1,'',0,'2023-07-23 03:43:37','2023-07-22 23:43:37',''),(3,0,0,'a:97:{s:14:\"is_user_export\";b:0;s:22:\"is_woo_customer_export\";b:0;s:17:\"is_comment_export\";b:0;s:18:\"is_taxonomy_export\";b:0;s:20:\"is_woo_review_export\";b:0;s:3:\"cpt\";a:1:{i:0;s:4:\"post\";}s:11:\"whereclause\";s:0:\"\";s:10:\"joinclause\";a:0:{}s:11:\"exportquery\";O:8:\"WP_Query\":57:{s:5:\"query\";a:5:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;}s:10:\"query_vars\";a:67:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:5:\"embed\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:14:\"search_columns\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:16:\"suppress_filters\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_menu_item_cache\";b:0;s:19:\"lazy_load_term_meta\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:0;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:0:{}s:8:\"relation\";s:3:\"AND\";s:16:\"\0*\0table_aliases\";a:0:{}s:13:\"queried_terms\";a:0:{}s:13:\"primary_table\";s:9:\"qdx_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:14:\"queried_object\";N;s:17:\"queried_object_id\";N;s:7:\"request\";s:243:\"\n			SELECT SQL_CALC_FOUND_ROWS  qdx_posts.*\n			FROM qdx_posts \n			WHERE 1=1  AND qdx_posts.post_type = \'post\' AND ((qdx_posts.post_status <> \'trash\' AND qdx_posts.post_status <> \'auto-draft\'))\n			\n			ORDER BY qdx_posts.ID ASC\n			LIMIT 0, 10\n		\";s:5:\"posts\";a:10:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:152;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-11-30 21:32:18\";s:13:\"post_date_gmt\";s:19:\"2022-11-30 20:32:18\";s:12:\"post_content\";s:7559:\"<!-- wp:flatsome/uxbuilder -->\n[ux_text text_align=\"left\"]\n\n<div>Chinese lanterns perfectly embody the culture of China, discover through this article their history and their meaning, but also the different types of lanterns and their uses.</div>\n[/ux_text]\n[gap]\n\n<h2>History of Chinese Lanterns</h2>\n<p>Chinese lanterns first appeared during the Han Dynasty, and more precisely during the Eastern Hans Dynasty (25-220). Historians believe that they were mainly used as lamps, long before the invention of electricity or the use of gas. To make them, several <strong>craft techniques</strong> were used, such as painting, paper cutting or sewing. The materials used varied and included bamboo, wood, wheat straw, or metal. However, the most common materials used were paper and silk.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"568\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<div>Then, the monks began to light lanterns <strong>to worship Buddha</strong>, especially on the twelfth day of the first month of the lunar calendar. During the Eastern Hans Dynasty, Emperor Liu Zhuang, who was a Buddhist, ordered the Chinese to use lanterns to imitate the monks, and thus popularized the Chinese lanterns.</div>\n<div>&nbsp;</div>\n<div>Later, during the Tang Dynasty (618-907), the Chinese made and lit lanterns to show their <strong>gratitude</strong> for the happy life they led. These illuminations symbolized the strength, power and prosperity of China.</div>\n<div>&nbsp;</div>\n<div>Finally, historians have also concluded that Chinese lanterns were used during <strong>wars</strong>, as a means of communication to transmit secret messages or to signal an intruder.</div>\n[gap]\n\n<h2>Ancient Types of Chinese Lanterns</h2>\n<p>In ancient times, the types of lanterns were quite varied. One of them was the royal lanterns, which, as the name suggests, were generally used for lighting purposes in castles and palaces. They are known to evoke a very <strong>delicate Chinese craftsmanship</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"572\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<p>Lanterns were also used to cast shadows, usually for entertainment purposes. These <strong>lanterns</strong> had the same shape as the royal lanterns, except that they were covered with not one, but two layers of paper or silk.</p>\n<p>Then, additional paper cuts were glued into the inner layer to <strong>create shadows</strong> when lit. The heat caused the paper to rotate, causing the shadows to spin and move across the walls.</p>\n[gap]\n\n<h2>Modern Chinese Lanterns</h2>\n<p>Nowadays, more and more types of lanterns are available. There is still a wide variety of lanterns in a traditional style: paper lanterns, candle lanterns, gauze lanterns, tissue paper lanterns, rice paper lanterns... But technology is sometimes also used, and the traditional candles are sometimes replaced by LED bulbs.</p>\n<p>So we find electric lanterns, sometimes with a multicolored light, and even musical lanterns. The shape of Chinese lanterns has evolved and diversified. Thus, we find in the shape of animals, cartoon characters, signs of the Chinese zodiac or flowers such as the sacred lotus.</p>\n<p>In addition, lanterns are evolving with the times, and we find more and more lanterns that are entirely biodegradable, with a vegetable wax burner, or other celestial lanterns designed to go down gently when the burner is extinguished.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"574\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<h2>Use of Chinese Lanterns</h2>\n<div>Generally speaking, Chinese people use lanterns in three ways: the most common is to hang the lantern. In remote areas, one can even find <strong>hanging lanterns</strong> adorning street lamps. These hanging lanterns, often decorated with tassels, are not always bright and are often hung in front of stalls as good luck charms, or decoratively in front of houses.</div>\n<div>&nbsp;</div>\n<div>Flying lanterns, also called sky lanterns, are particularly popular during the Spring Festival, celebrated during the first full moon of the Chinese calendar. They are then released into the sky by thousands, propelled by hot air, like balloons.&nbsp; This <strong>Asian lantern</strong> is not only the apparat of China, and there is also a wide variety of Thai flying lanterns.</div>\n<div>&nbsp;</div>\n<div>Finally, the <a href=\"https://www.nightlightsevent.com/\">floating lanterns</a>, equipped with waterproof burners, are especially used during the Dragon Boat Festival, where they are placed on rivers and lakes during the celebrations. Each one creates a light reflection on the water, for a totally fairy-like atmosphere.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"576\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<div>Very festive, the Chinese lantern is generally used during celebrations and holidays. Chinese families like to light them during the Chinese New Year or any other celebration where everyone goes for a lantern release (Discover the festivals and celebrations in China).</div>\n<div>&nbsp;</div>\n<div>The <strong>Chinese New Year</strong> ends on the fifteenth day of the first lunar month with the Spring Festival, also called the Lantern Festival. On this day, thousands of paper lanterns are released all over the country for a very romantic and poetic air show. Families light up hundreds of lanterns, often with calligraphy riddles for the children to solve.</div>\n<div>&nbsp;</div>\n<div>If they succeed, they are rewarded with small gifts or sweets. It is also customary for uncles to buy lanterns for their nephews, if they are under twelve, before the <strong>festival</strong>. This shows that they wish their nephew the best, especially that they are in excellent health for the coming year.</div>\n<div>&nbsp;</div>\n<div>In China, apart from national celebrations, lanterns are also common at weddings, birth ceremonies, or any other event to which one wishes to bring <strong>good fortune</strong>. It is then customary to hang lanterns in front of one\'s house or in the wedding hall, as decorations and good luck charms.</div>\n<div>&nbsp;</div>\n<div>In the West, the Asian lanterns have conquered by their festive and decorative side. The <strong>celestial lantern</strong>, in particular, is very popular for a wedding or a birthday party and will impress the guests. Lanterns garlands or lights, then in the shape of balls more round than traditional lanterns, are also very common in Western homes.</div>\n[gap]\n\n<h2>Meaning of Chinese Lanterns</h2>\n<p>Generally speaking, Chinese lanterns symbolize <strong>vitality</strong>, <strong>social status</strong>, and especially <strong>good fortune</strong>. They are found in a multitude of colors. Red lanterns are the most popular, because in China, the color red is a sign of good luck and happiness. In Chinese culture, red is also a symbol of vitality and energy.</p>\n<p>On the other hand, using a blue lantern means that a family member is sick, because in <strong>Chinese culture</strong>, blue is a symbol of illness and low energy. White lanterns, on the other hand, represent death and mourning.</p>\n<p>A white lantern at the entrance of a house will show that a death has occurred in the family, and announce a mourning. Finally, purple will tend to bring bad luck, and is a rather rare lantern color. The material is not important, whether you use a <strong>paper or silk lantern</strong> depends on your taste.</p>\n[ux_products cat=\"42\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:40:\"Kinesiska lyktors historia och betydelse\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:38:\"historia-betydelse-kinesiska-lanternor\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-23 18:20:28\";s:17:\"post_modified_gmt\";s:19:\"2023-07-23 16:20:28\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=152\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:598;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 05:52:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 04:52:28\";s:12:\"post_content\";s:11802:\"<!-- wp:flatsome/uxbuilder -->\n<p>The Chinese character \"箸\" is translated as \"chopsticks\", which are unique eating utensils invented by the ancient Chinese civilizations during the Neolithic Age, 7,000 to 6,000 BC. The ancient chopsticks were mainly made of animal bones. Today, among the various tableware available, chopsticks perfectly embody Chinese cultural characteristics, becoming an important symbol of Chinese tradition.</p>\n[gap]\n\n<h2>Meaning of Chinese Chopsticks</h2>\n<div>Chopsticks originated in China. Although simple, they are a great invention in human history. \"Chopsticks, although they are only two pieces of wood, represent the theory of leverage in physics,\" said Dr. Li Zhengdao, a famous Chinese physicist.</div>\n<div>&nbsp;</div>\n<div>According to modern science, long-time use of chopsticks makes the fingers flexible, which is beneficial to physical and mental health. Chopsticks are available in all kinds. So, among the various kitchen utensils available today, chopsticks with a lucky charm are very popular with the Chinese.</div>\n<div>&nbsp;</div>\n<div>Chopsticks symbolize the centuries-old Chinese civilization and embody the 5,000-year history of China. Whether Chinese people live in China or abroad, they cherish their connection with chopsticks.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<div>\"One chopstick can be easily broken, ten pairs of chopsticks stand firmly together.\" People are familiar with this beautiful and enlightened song by Fu Disheng, a well-known singer in China.</div>\n<div>&nbsp;</div>\n<div>Indeed, a chopstick is so delicate that it can be easily broken. However, ten pairs of chopsticks possess a strength that is indestructible under any circumstances. This symbol of chopsticks reflects a spirit of unity, perseverance and power, which are strong values in China. This spirit that lives in the chopsticks will always influence, inspire and encourage people.</div>\n<div>&nbsp;</div>\n<div>In a word, chopsticks are part of the Chinese gastronomic culture, rich of many centuries.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h2>The history of Chinese chopsticks</h2>\n<p>One of the main features of China\'s culinary custom is the use of chopsticks. Chopsticks, also called \"zhu\" (箸) in ancient times, have a long history in China. In fact, the Book of Rites advocated, \"You cannot have a meal without chopsticks\". These objects, rich in several centuries of history appeared during the Sang Dynasty.</p>\n[gap]\n\n<h3>The Origin of Chinese Chopsticks</h3>\n<p>Lan Xiang, the curator of the Folk Chopsticks Pavilion, said that historical records date the ivory chopsticks to 3,100 years ago. As it is written in the records, \"Zhou\" (the emperor at the end of the Sang Dynasty) used the ivory chopsticks while Ji Zi, Zhou\'s uncle, worried \"because it was too luxurious\".</p>\n<p>After the emperor killed the elephant to impose his power, he sawed the ivory to make chopsticks that are known as the first chopsticks in history. However, historically they were not the first chopsticks but the first ones made of ivory in China. That is why Chinese ivory chopsticks have a strong symbolism.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<div>The existence of Chinese chopsticks dates back to almost 1,000 years before the existence of ivory chopsticks. The first chopsticks were made of bamboo because China was then covered with primeval forests.</div>\n<div>&nbsp;</div>\n<div>Branches were broken to cook food in a pot. It was impossible to grasp the food by hand because the food was very hot. So the Chinese found a way to use the bamboo branches to pick up the food. We suppose that the ancient chopsticks had a different size from each other.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Since the Sang Dynasty, the chopsticks are the same length and size.</div>\n<div>&nbsp;</div>\n<div>In ancient times, chopsticks were made from local materials such as branches, sticks, animal bones and horns. Chopsticks were mainly made of wood and bamboo in primitive society.</div>\n<div>&nbsp;</div>\n<div>Ivory and jade chopsticks appeared in Xiang and Sang dynasties, while copper and iron chopsticks appeared in spring and autumn and warring states (from 770 to 221 BC), flaming lacquer chopsticks, delicate silver and gold chopsticks in Han-Wei and six dynasties (the kingdom of Wu, Jing, Song, Qi, Liang, Chen). Today, there are chopsticks made of various materials, including ivory, rhinoceros horn, golden ebony and assorted jades.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h3>Legends about Chinese chopsticks</h3>\n<p>People who use chopsticks, including the Chinese, admire the invention, but nobody knows who invented it. There is no precise data as to the creator of this invention that has made significant contributions to human civilization.</p>\n<p>Some believe that the increase in illiteracy, among other reasons, explains this lack of information. There are, however, myths surrounding the birth of chopsticks. Here is a summary of two legends, centered on the origin of chopsticks:</p>\n[gap]\n\n<h4>The legend of Jiang Ziya</h4>\n<div>The legend has spread to areas such as Sichuan province. It was said that Jiang Ziya was capable of nothing but fishing. He was so poor that his wife could not bear to live with him and planned to kill him to marry another man.</div>\n<div>&nbsp;</div>\n<div>One day, Jiang returned home empty-handed after fishing. His wife said, \"You must be hungry. I made some meat for you. Come and eat!\" He was hungry, so he reached out his hands to take the meat. Suddenly, a bird on window pecked his hand. The pain made him scream. In his pain, Jiang tried to chase the bird away from the window but the bird pecked him a second time.</div>\n<div>&nbsp;</div>\n<div>Jiang was so confused, he didn\'t understand why the bird kept pecking him. To understand, he tried to pick up the meat but the same thing happened. He understood that it was because the bird was a divine bird and he chased it to a hill so that no one could see it.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Standing on a bamboo branch, the divine bird sang, \"Jiang Ziya, don\'t eat the meat with your bare hands, use what is under my feet.\" Hearing this, Jiang took two small sticks from the bamboo and went home. Then he took the meat with the two sticks. After doing this, smoke came out of the bamboo. Jiang understood that the sticks were reacting to the poison that his wife had poured into his food.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Jiang Ziya knew that the magic bamboo given by the divine bird could detect the poison. So he ate all his meals with them. After the incident, his wife did not dare to poison his food and his neighbors learned to eat with a bamboo branch. Later, more and more people followed this habit, so the custom of eating with chopsticks was passed on from generation to generation.</p>\n[gap]\n\n<h4>The legend of Da Yu</h4>\n<p>This legend has spread throughout northeast China. It is said that Yao and Shun, mythical rulers of ancient China, ordered Da Yu to control a flood. After receiving the order, Yu vowed to eliminate the flood disaster. He did his best to fight the flood day and night, to the point of not eating and sleeping, let alone resting.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Yu went to an island by boat where he was so hungry that he used an earthen pot to cook the meat. Once the meat was well cooked in the boiling water, he couldn\'t take it by hand and didn\'t want to waste time waiting for it to cool, so he took two branches to pick up the meat from the soup.</p>\n<p>He kept this habit to the point of becoming skilled at picking up food with small sticks, which was imitated by his subordinates who understood that this way of eating could allow them to avoid touching the hot and greasy food with their hands. Thus, the first types of chopsticks were born.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Although these legends are not historically accurate, they show the way people thought in the past.</p>\n[gap]\n\n<h2>How to use chopsticks?</h2>\n<p>The correct use of chopsticks can be described as follows: the right hand holds the chopsticks with the thumb and forefinger pinching the upper end of the chopsticks and the other three fingers naturally hold the chopsticks, so the two ends of the chopsticks should remain aligned. Before the meal, the chopsticks are carefully placed on the right side of the bowl and after the meal, in the middle of the bowl, in a vertical direction.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h2>Taboos on Chopsticks</h2>\n<p>Chinese chopsticks have their share of good, but also bad manners that you should not do at the risk of bringing you bad luck:</p>\n<ul>\n<li><strong>Unexpected bad luck</strong>: Arranging chopsticks of unequal lengths on the table is considered an omen of bad luck.</li>\n<li><strong>Immortal guidance</strong>: If the chopsticks are pinched by the thumb, middle finger, ring finger and little finger while the index finger reaches out, this is considered bad luck.</li>\n<li><strong>Sucking on chopsticks with a sound</strong>: Having a piece of chopstick in your mouth and repeatedly sucking on it with a sound is rude behavior.</li>\n<li><strong>Hitting the cup</strong>: Hitting plates and bowls is considered disrespectful and is looked down upon by others.</li>\n<li><strong>Shaking to make choices</strong>: Taking chopsticks to \"dig\" into plates is a bad way to \"dig the grave\".</li>\n<li><strong>Sinking food</strong>: Dropping soup on other dishes or on the table when picking up food with chopsticks is considered disrespectful.</li>\n<li><strong>Upside down heaven and earth</strong>: Using chopsticks upside down means you are a beggar.</li>\n<li><strong>Key ring</strong>: Using a chopstick to stick food on plates is seen as humiliating to others at the table.</li>\n<li><strong>Burning incense in public</strong>: Chopsticks should not be left upright in a bowl of rice, as this is similar to the incense ritual that symbolizes \"feeding\" the dead.</li>\n<li><strong>Cross</strong>: During the meal, chopsticks should not be crossed on a table as this is perceived negatively.</li>\n<li><strong>Falling chopsticks disturbs the immortal</strong>: During a meal, it is discourteous for chopsticks to accidentally fall on the floor, as falling chopsticks represent a disturbance of the buried ancestors.</li>\n</ul>\n[gap]\n\n<h2>The materials of Chinese chopsticks</h2>\n<div>Chopsticks seem simple and flexible, but they vary in type and composition. There are more than 100 types in Chinese history, the most common being wood, bamboo and melamine.</div>\n<div>&nbsp;</div>\n<div>Lan Xiang has divided Chinese chopsticks into five types based on his collection and research. They are: bamboo chopsticks, metal chopsticks, ivory and bone chopsticks, jade chopsticks and chemical chopsticks.</div>\n<div>&nbsp;</div>\n<div>The earliest and most primitive chopsticks, the wooden and bamboo chopsticks, remain popular today (Discover our Chinese Bamboo Chopsticks and our Wooden Chopsticks).</div>\n<div>&nbsp;</div>\n<div>Bamboo chopsticks are made from different types of bamboo including nandina bamboo, spotted bamboo and phyllostachys pubescens, among others. Bamboo is considered a symbol of traditional Chinese values. It is an example of the harmony between nature and human beings. There are many accessories made of bamboo, especially at Bambou Calme with its collection of bags.</div>\n[gap]\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<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:42:\"Kinesiska ätpinnar: Ursprung och historia\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:28:\"kinapinnar-ursprung-historia\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-23 18:20:28\";s:17:\"post_modified_gmt\";s:19:\"2023-07-23 16:20:28\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=598\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:666;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 19:59:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 18:59:28\";s:12:\"post_content\";s:14843:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>China</strong>, as well as many other Eastern cultures, is deeply rooted in Eastern philosophy, with symbolism playing a very large role in today\'s Chinese culture especially in the form of Feng Shui.</div>\n<div>&nbsp;</div>\n<div>An important feature of Feng Shui is the use of <strong>Chinese good luck charms</strong> and decorations to enhance the harmony of your home with its surroundings, improving positive energy while protecting it from bad luck.</div>\n<div>&nbsp;</div>\n<div><strong>As we will see through the 15 most popular good luck charms in Chinese culture, Chinese good luck symbols take many forms. These good luck symbols can also be used with specific elements to enhance various Feng Shui applications.</strong></div>\n<div>&nbsp;</div>\n<h2>1) Dzi Beads</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"725\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Dzi beads are actually not from China but from <strong>Tibet</strong>. The Tibetan word Dzi translates to \"brilliance\" or \"shine\" and in China, Dzi beads are also known as 天珠, literally translated as \"pearl of heaven\".</div>\n<div>&nbsp;</div>\n<div>Usually made of agate carved in unique patterns, Dzi beads are also popular in Chinese Feng Shui practices as good luck charms. Dzi stones are believed to be effective not only in repelling negative energy but also in storing positive energy for the owner\'s good fortune.</div>\n<div>&nbsp;</div>\n<div><strong>Dzi stones</strong> can come in different shapes and patterns: circles, stripes, wave patterns, etc. They are commonly worn as bracelets, or necklaces.</div>\n<div>&nbsp;</div>\n<h2>2) Chinese Lucky Coins</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"723\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>You can easily distinguish the ancient <strong>Chinese coins</strong> with their square hole in the middle. The round shape of the coin symbolizes the sky, while the square hole represents the earth.</div>\n<div>&nbsp;</div>\n<div>The faces of the coins are usually inscribed with four characters around the four sides of the square hole. This is the yang side of the coin. On the other side, the yin side, there are up to two characters.</div>\n<div>&nbsp;</div>\n<div>There are different ways to use these coins as a good luck charm, usually by tying three coins with a string or ribbon in red, which is a <strong>lucky color</strong> in China. It is believed that coin necklaces attract financial luck.</div>\n<div>&nbsp;</div>\n<h2>3) Laughing Buddha</h2>\n[gap height=\"50px\"]\n\n[ux_products cat=\"45\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<div>One of the most common good luck charms in Chinese Feng Shui is the Laughing <strong>Buddha</strong> or Buddha of Happiness. This lucky charm symbolizes good fortune, prosperity, fertility, health and wealth.</div>\n<div>&nbsp;</div>\n<div>The Laughing Buddha is based on the story of a Buddhist monk who lived in 10th century China. This monk was rather eccentric and did not fit the typical characteristics of serenity and peace of a <strong>Buddhist monk</strong>, but he was always happy with a loving heart, so he was loved by many. This monk was then considered the reincarnation of <a href=\"https://tricycle.org/magazine/who-was-the-buddha/\">Gautama Buddha</a>, and is now believed to symbolize joy, laughter and happiness.</div>\n<div>&nbsp;</div>\n<div>As a good luck charm, the <strong>Laughing Buddha</strong> can be placed anywhere in the house except in the bathroom or toilet. However, it is usually placed in the living room or any other place in your home or business where there is money.</div>\n<div>&nbsp;</div>\n<h2>4) Chinese Luck Cat</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"720\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>lucky cat</strong> is based on the Japanese <strong>Maneki-Neko</strong>. It is a very common lucky charm in Feng Shui. The different colors of the cat can symbolize different things, and the fact that the cat raises its paw to the left or right also changes the symbolism.</div>\n<div>&nbsp;</div>\n<div>If the <strong>cat raises its left paw</strong>, it usually symbolizes a male cat that attracts wealth, fortune and professional success in business. So you can place it in your office or in the area where you usually work to enhance your success.</div>\n<div>&nbsp;</div>\n<div>If, on the other hand, the cat raises its right paw, then it is a female cat that symbolizes prosperity, fertility and family happiness, as well as <strong>good health</strong>.</div>\n<div>&nbsp;</div>\n<h2>5) Great Chinese Ship of Fortune</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"729\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The ship of fortune is also a very important good luck charm in Chinese Feng Shui. As the name suggests, it is a ship-shaped decoration of various shapes and sizes. They usually carry gems and mini treasures to <strong>symbolize</strong> wealth and are very popular placed in homes and businesses.</div>\n<div>&nbsp;</div>\n<div>The fortune ship is believed to attract wealth and good fortune. For proper Feng Shui, the boat usually has sails that fully catch the wind to symbolize moving towards a better future.</div>\n<div>&nbsp;</div>\n<div>There are fortune ships built entirely of precious stones and even gold, and others that are constructed of real wood and <strong>silk fabric</strong>, like a genuine ship.</div>\n<div>&nbsp;</div>\n<h2>6) Three-legged Frog</h2>\n[gap height=\"50px\"]\n\n[products ids=\"6000\" columns=\"1\"]\n\n[gap height=\"50px\"]\n\n<div>The three-legged lucky frog, also called Jin Chanou or Chan Chu is also a very popular and powerful <strong>Chinese Feng Shui lucky charm</strong>. It is believed to attract and protect your fortune, while protecting you and your family from bad luck.</div>\n<div>&nbsp;</div>\n<div>The three-legged frog symbolizes the flow of money, and Feng Shui dictates that this statue should not be placed facing your main door. It should also not be placed in your kitchen and toilet or bathroom.</div>\n<div>&nbsp;</div>\n<div>The common practice is to place the three-legged frog statue in the main entrance, while another <strong>statue</strong> next to it has its back to the entrance. This configuration is meant to protect the flow of money coming and going outside the home or business.</div>\n<div>&nbsp;</div>\n<h2>7) Amethyst Crystal Tree</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"715\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>In <strong>Chinese</strong> Feng Shui, crystals are believed to contain positive healing energy, and many people use them as objects of concentration in their meditation practice.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In this case, amethyst crystals are arranged like a tree (with a resin or plastic tree branch) and are believed to have healing properties to calm the mind. They are also considered a good luck charm for wealth and prosperity. The amethyst crystal tree is said to improve memory while maintaining calm and can also help with insomnia. It has the same functions as <a href=\"http://www.dream-catchers.org/\">dream catchers</a> to chase away evil spirits and help you sleep better.</div>\n<div>&nbsp;</div>\n<div>There are also crystal trees made from other materials like agate, citrine, rose quartz, and others.</div>\n<div>&nbsp;</div>\n<h2>8. Dragon Turtle</h2>\n[gap height=\"50px\"]\n\n[ux_products ids=\"5994\"]\n\n[gap height=\"50px\"]\n\n<div>The dragon and the <strong>turtle</strong> are symbols of protection, wisdom and nobility in Chinese culture. They are two of the four heavenly animals (dragon, tiger, phoenix and turtle).</div>\n<div>&nbsp;</div>\n<div>The dragon turtle, as its name suggests, has the body of a turtle but the head of a dragon, and is believed to symbolize good health, longevity, power, courage and <strong>success</strong>. A dragon turtle statue is believed to protect its owner from betrayal in business and promote healthy harmony at home and in the workplace.</div>\n<div>&nbsp;</div>\n<div>There are several types of dragon turtle statues used as good luck charms, including three of the most important:</div>\n<div>&nbsp;</div>\n<div>Turtle dragon carrying a pagoda (the Wen Chang Pagoda) on its back. It is a good luck charm for <strong>academic success</strong></div>\n<div>Turtle dragon with a baby (or a couple of babies) sitting 